Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using FirefoxDriver webdriver. The page that loads in firefox window is a large page and I want to scroll that page using selenium.

I want to know how this can be done.

Thanks.

share|improve this question
You should focus to the desired item and the selenium 2 will take care of finding it. Look at this SO post stackoverflow.com/questions/3401343/… – Pangea Dec 8 '11 at 15:26
I am assuming you are wanting to use the Selenium API, Here's a link to scrolling a page using the Selenium API. Scroll Page – Reid Mac Dec 8 '11 at 15:26

2 Answers

If you want to scroll on the firefox window using selenium webdriver, one of the way is to use javaScript in the java code, The javeScript code to scroll down is as follows:

WebDriver driver = new FirefoxDriver();
JavascriptExecutor js = (JavascriptExecutor)driver;
js.executeScript("window.scrollTo(0,Math.max(document.documentElement.scrollHeight," + "document.body.scrollHeight,document.documentElement.clientHeight));");
share|improve this answer
page.driver.browser.mouse.move_to( find("element").native,100,100)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.