I want to click web element inside the iframe and trying to switch to respective iframe before clicking to web element.
browser.switchToFrame(number)
- switch to iframe with number is working but unable switch to iframe with css selector.
I have tried below code.
await $('.framed_view').waitForDisplayed({ timeout: 5000 });
const iframe = $('.framed_view');
await browser.switchToFrame(iframe);