I have a scenario, I need to switch to muliple frames
Using selenium I can do in this way
driver.switchTo().frame(2).switchTo().frame(1).switchTo().frame(0);
How can I do this in katalon?
I have a scenario, I need to switch to muliple frames
Using selenium I can do in this way
driver.switchTo().frame(2).switchTo().frame(1).switchTo().frame(0);
How can I do this in katalon?
Hi Hari,
You can use parent object settings in the test object. In your case, please set parent object accordingly for each test object you want to http://prntscr.com/fex66f
When executing in our test script, it will automatically switch to frames side by side.
Katalon Team, would you care to answer this?
is it working?
Vinh Nguyen said:
Hi Hari,
You can use parent object settings in the test object. In your case, please set parent object accordingly for each test object you want to http://prntscr.com/fex66f
When executing in our test script, it will automatically switch to frames side by side.
Hi, I’ve tried to use the parent object for the object inside iFrame, but it still didn’t work. do you have any solution to get/define/get through to the specific iFrame?