Package

Source Code of SendKeys

import java.io.File;

import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;


public class SendKeys {

  public static void main(String[] args) throws InterruptedException {
    WebDriver dr = new ChromeDriver();
   
    File file = new File("src/send_keys.html");
    String filePath = "file:///" + file.getAbsolutePath();
    System.out.printf("now accesss %s \n", filePath);
   
    dr.get(filePath);
    Thread.sleep(1000);
   
//    copy content of A
    dr.findElement(By.id("A")).sendKeys(Keys.chord(Keys.CONTROL + "a"));
    Thread.sleep(1000);
    dr.findElement(By.id("A")).sendKeys(Keys.chord(Keys.CONTROL + "x"));
   
//    paste to B
    dr.findElement(By.id("B")).sendKeys(Keys.chord(Keys.CONTROL + "v"));
   
//    SendKeys to A
    dr.findElement(By.id("A")).sendKeys(Keys.chord("watir webdriver is better than selenium webdriver"));
   
    Thread.sleep(1000);
    System.out.println("browser will be close");
    dr.quit()
  }

}
TOP

Related Classes of SendKeys

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.