Showing posts with label scroll web element in selenium. Show all posts
Showing posts with label scroll web element in selenium. Show all posts

Tuesday 7 January 2014

How to scroll web element

    How to scroll web element?--not browser—

FirefoxProfile profile=new FirefoxProfile();
profile.setEnableNativeEvents(true);
WebDriver driver=new FirefoxDriver(profile);
driver.navigate("http://jqueryui.com/draggable/");
Thread.sleep(6000L);
WebElement element=driver.findElement(By.xpath("//div[@id='draggable']"));
Actions actn=new Actions(driver);
actn.dragAndDropBy(element, 50, 50).build().perform();
}