Skip to main content

How can I scroll inside a popup using Selenium webdriver?

enter image description here

I need to scroll a popup. I know only driver.execute_script("window.scrollTo(0, 2080)") - doesn't work.

i've tryed driver.execute_script("window.scrollTo(0, 2080)"), but this command scrolls all window, not a popup.



source https://stackoverflow.com/questions/75557224/how-can-i-scroll-inside-a-popup-using-selenium-webdriver

Comments