Scroll Automatically to the Bottom of the Page

后端 未结 24 2524
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-22 05:22

Consider I have a list of questions. When I click on the first question, it should automatically take me to the bottom of the page.

For a matter of fact, I do know

24条回答
  •  后悔当初
    2020-11-22 05:52

    For Scroll down in Selenium use below code:

    Till the bottom drop down, scroll till the height of the page. Use the below javascript code that would work fine in both, JavaScript and React.

    JavascriptExecutor jse = (JavascriptExecutor) driver; // (driver is your browser webdriver object) 
    jse.executeScript("window.scrollBy(0,document.body.scrollHeight || document.documentElement.scrollHeight)", "");
    

提交回复
热议问题