有多个iframe时如何在量角器中切换iframe
How to switch iframe in protractor when there are multiple iframes
我的应用程序中有两个 iframe,但我需要使用量角器脚本切换到第二个 iframe。
你必须使用 switchTo
方法来对焦到一帧。
// Switch to iframe. Don't forget to provide your iframe's selector
await browser.switchTo().frame(YOUR_IFRAME_SELECTOR);
我的应用程序中有两个 iframe,但我需要使用量角器脚本切换到第二个 iframe。
你必须使用 switchTo
方法来对焦到一帧。
// Switch to iframe. Don't forget to provide your iframe's selector
await browser.switchTo().frame(YOUR_IFRAME_SELECTOR);