1. 程式人生 > >Selenium驅動Chrome瀏覽器

Selenium驅動Chrome瀏覽器

post 百度一 source 用戶 新的 版本 百度一下 googl selenium

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

public class Chrome {
public static void main(String[] args) throws InterruptedException {
System.setProperty("webdriver.chrome.driver", "src/main/resources/chromedriver.exe");
String baiduHomePage;
baiduHomePage = "https://www.baidu.com/";
//百度首頁的地址

WebDriver driver;
//聲明一個WebDriver
ChromeOptions options = new ChromeOptions();
options.addArguments("disable-infobars");
//消除“Chrome正受到自動測試軟件的控制”提示
options.addArguments
("--user-data-dir=C:\\Users\\Administrator\\AppData\\Local\\Google\\Chrome\\User Data\\Default");
//消除“不安全”提示,啟用用戶默認的數據目錄
driver =new ChromeDriver(options);
driver.manage().window().maximize();
//使瀏覽器窗口最大化
driver.get(baiduHomePage);
//打開百度
Thread.sleep(2000);
//強制線程等待2秒鐘
assert driver.getTitle().equals("百度一下,你就知道");
//斷言頁面標題

driver.findElement(By.xpath(".//*[@id=‘kw‘]")).sendKeys("Selenium");
//在百度搜索輸入框輸入“Selenium”
driver.findElement(By.xpath(".//*[@id=‘su‘]")).click();
//點擊搜索按鈕
Thread.sleep(2000);
assert driver.getTitle().equals("Selenium_百度搜索");

driver.close();
//關閉瀏覽器窗口
driver.quit();
//結束dirver
}
}

需要註意的是,
Chrome瀏覽器可以是官網上最新的版本,
驅動的版本是:
chromedriver_win32

Selenium驅動Chrome瀏覽器