Unable to scroll down in filpkart site for specified element | Selenium Forum
M
Posted on 03/12/2016
WebDriver driver1 = new FirefoxDriver();
driver1.manage().window().maximize();
driver1.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
JavascriptExecutor jse = (JavascriptExecutor) driver1;
jse.executeScript("window.location='http://www.flipkart.com'");
WebElement flipkart_Ele = driver1.findElement(By.xpath(".//*[@id='container']/div/div[2]/div[2]/div[3]/div/div/div[1]/div[2]/div/div[1]/div/div[2]/a/div[2]"));
jse.executeScript("arguments[0].scrollIntoView();",flipkart_Ele);

M
Replied on 09/12/2016

Take the coordinates of element from e.getLocation() function and then use window.ScrollTo js function