一、创建maven工程引入依赖

1)创建项目

Selenium:简单的尝试一下-LMLPHP创建一个简单的maven工程即可

Selenium:简单的尝试一下-LMLPHP这里我使用jar项目进行简单的演示

2)引入依赖

  <dependencies>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.4.0</version>
</dependency>
</dependencies>

Selenium:简单的尝试一下-LMLPHP  一大串jar包(44个),看看就好~

二、简单的演示打开一个页面

package cn.zytao.taosir.selenium;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver; public class SeleniumApplication {
public static void main(String[] args) {
//创建web驱动对象
WebDriver driver=new ChromeDriver();
//打开百度
driver.get("http://www.baidu.com");
driver.findElement(By.id("kw")).sendKeys("taosir博客园");
}
}
05-21 11:41