Thursday 4 February 2016

How to perform control shift s operations in selenium webdriver

How to perform control +shift+ s operations in selenium web driver:
==================================================

We can perform control+shift+s operations by using chord() method available in Keys enums class using Actions class sendKeys() method.(Using Advanced User Interactions API)

Below is the sample example:
======================
Using chord() method:

-------------------------------

package blog;

import java.util.concurrent.TimeUnit;

import org.openqa.selenium.By;
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 IeDemo {

WebDriver webDriver;
Actions actions;

@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();

  actions = new Actions(webDriver);
  actions.sendKeys(Keys.chord(Keys.CONTROL,Keys.SHIFT,"s")).build().perform();
  Thread.sleep(10000);

}

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

}


}

No comments:

Post a Comment