Reputation: 117
I have two iframes in my application whereas I need to switch to second iframe using protractor scripting.
Upvotes: 0
Views: 56
Reputation: 8672
You have to use switchTo
method to focus to a frame.
// Switch to iframe. Don't forget to provide your iframe's selector
await browser.switchTo().frame(YOUR_IFRAME_SELECTOR);
Upvotes: 1