omkarcloud / botasaurus

The All in One Framework to build Awesome Scrapers.
https://www.omkar.cloud/botasaurus/
MIT License
1.32k stars 121 forks source link

Cannot select iframe inside of an iframe #167

Open MakeFish-dev opened 1 month ago

MakeFish-dev commented 1 month ago

To reproduce: outer_iframe = driver.select_iframe("#outer-iframe", wait=Wait.LONG) inner_iframe = outer_iframe.select_iframe("iframe", wait=Wait.LONG)

I cannot select an iframe inside of an iframe. It gives the error below: botasaurus_driver.exceptions.IframeNotFoundException: 9C0E4B0E77536D8A8161DEA46763A3B1

FayzulSaimun commented 1 month ago

You have to move to the first iframe first. Then you can select the first iframe. Follow this: https://stackoverflow.com/questions/44834358/switch-to-an-iframe-through-selenium-and-python