Parama Sivam
Parama Sivam

Reputation: 117

How to switch iframe in protractor when there are multiple iframes

I have two iframes in my application whereas I need to switch to second iframe using protractor scripting.

NEED to switch to the highlighted iframe

Upvotes: 0

Views: 56

Answers (1)

Yevhen Laichenkov
Yevhen Laichenkov

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

Related Questions