I tried the code in here Scrolling page in RSelenium but it's not working as the web site that I'm working on will load more content as you scroll down. For example
webElem <- remDr$findElement("css", "body")
webElem$sendKeysToElement(list(key = "end"))
webElem$screenshot(display = TRUE)
This is the screenshot of part of the website.
Then I repeat the process again.
webElem$sendKeysToElement(list(key = "end"))
webElem$screenshot(display = TRUE)
The result is still the same.
I tried the code in here Scrolling page in RSelenium but it's not working as the web site that I'm working on will load more content as you scroll down. For example
webElem <- remDr$findElement("css", "body")
webElem$sendKeysToElement(list(key = "end"))
webElem$screenshot(display = TRUE)
This is the screenshot of part of the website.
Then I repeat the process again.
webElem$sendKeysToElement(list(key = "end"))
webElem$screenshot(display = TRUE)
The result is still the same.
Share Improve this question edited May 23, 2017 at 12:34 CommunityBot 11 silver badge asked Aug 7, 2016 at 18:36 Dunk ChawannutDunk Chawannut 1051 silver badge6 bronze badges 01 Answer
Reset to default 11If unfortunately your code does not work for scrolling down, try using executeScript()
as below :-
remDr$executeScript("window.scrollTo(0,document.body.scrollHeight);")