Thursday 4 February 2016

How to perform scrolling vertical bar operations in selenium webdriver

Performing vertical scroll bar operations in selenium web driver:
==================================================

We can perform scroll operations by using JavascriptExecutor interface.

see the below example.
-----------------------------

package blog;

import java.util.concurrent.TimeUnit;

import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
import org.openqa.selenium.interactions.Actions;
import org.testng.annotations.AfterSuite;
import org.testng.annotations.BeforeSuite;
import org.testng.annotations.Test;

public class ScrollingVertical {

WebDriver webDriver;
JavascriptExecutor js;

@BeforeSuite
public void launchingIEBrowser() {

System.setProperty("webdriver.chrome.driver", "D:\\Ramesh\\ChromeDriver.exe");
   webDriver = new InternetExplorerDriver();
//webDriver=new FirefoxDriver();
webDriver.manage().window().maximize();
webDriver.manage().deleteAllCookies();
webDriver.manage().timeouts().implicitlyWait(45, TimeUnit.SECONDS);

}

@Test
public void testScript() throws InterruptedException {
webDriver.get("https://google.com");
webDriver.findElement(By.name("q")).sendKeys("selenium by ramesh");
webDriver.findElement(By.name("btnG")).click();
Thread.sleep(3000);
webDriver.findElement(By.linkText("Selenium By Ramesh Anapati")).click();

//scrolling vertical down
   js = (JavascriptExecutor) webDriver;
js.executeScript("scroll(0, 750)");

Thread.sleep(3000);

//scrolling vertical down
   js = (JavascriptExecutor) webDriver;
js.executeScript("scroll(150, 0)");
  

}

@AfterSuite
public void closeBrowser() {
webDriver.quit();

}


}

1 comment: