Selenium: horizontal scroll using Actions class
问题 I have tried various to access this custom scroll bar on my web page through Selenium actions as well as Javascript Executor. The scroll bar scrolls through only 500 pixels when in fact I want it to scroll throughout the complete width. Any help is appreciated. Below is my current code snippet: WebElement slider = element("slider_div"); WebElement scrollbar = element("scrollbar"); int w = slider.getSize().getWidth(); Actions move = new Actions(driver); move.dragAndDropBy(e, offset, 0).build()