码迷,mamicode.com
首页 > 编程语言 > 详细

java-selenium 框架例子

时间:2019-10-23 14:04:19      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:ack   例子   import   drive   ext   oid   public   out   rom   

技术图片

 

 

package mavenweb2;

import org.openqa.selenium.By;

import org.openqa.selenium.WebDriver; 

import org.openqa.selenium.WebElement; 

import org.openqa.selenium.firefox.*;

import org.openqa.selenium.chrome.*;

 

public class Ruuu {

  public static void main(String[] args) {

  // System.setProperty("webdriver.firefox.bin", "/Applications/Firefox.app/Contents/MacOS/firefox-bin");//浏览器路径

  // System.setProperty("webdriver.gecko.driver","/Users/lucax/Downloads/geckodriver");//浏览器驱动路径

  // WebDriver driver = new FirefoxDriver(); 

 

  WebDriver driver = new ChromeDriver();

  driver.get("http://www.baidu.com/");

  // WebElement txtbox=driver.findElement(By.id("kw")); 

  // txtbox.sendKeys("selenium java");

  // WebElement btn=driver.findElement(By.id("su")); 

  // btn.click();

  // driver.close(); 

  // System.out.println("end selenium");

  driver.findElement(By.id("kw")).sendKeys("selenium java");

 

}

}

 

java-selenium 框架例子

标签:ack   例子   import   drive   ext   oid   public   out   rom   

原文地址:https://www.cnblogs.com/kaibindirver/p/11725473.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!