- Selenium WebDriver 3 Practical Guide
- Unmesh Gundecha Satya Avasarala
- 89字
- 2021-08-13 16:08:15
Writing your first test script for the IE browser
Now you are all set to write test scripts that run on the Internet Explorer browser. The following is the code that instantiates InternetExplorerDriver:
public class SearchTest {
WebDriver driver;
@BeforeMethod
public void setup() {
System.setProperty("webdriver.ie.driver",
"./src/test/resources/drivers/IEDriverServer.exe");
driver = new InternetExplorerDriver();
driver.get("http://demo-store.seleniumacademy.com/");
}
@Test
public void searchProduct() {
// find search box and enter search string
WebElement searchBox = driver.findElement(By.name("q"));
searchBox.sendKeys("Phones");
WebElement searchButton =
driver.findElement(By.className("search-button"));
searchButton.click();
assertThat(driver.getTitle())
.isEqualTo("Search results for: 'Phones'");
}
@AfterMethod
public void tearDown() {
driver.quit();
}
}
推薦閱讀
- 物聯(lián)網(wǎng)智慧安監(jiān)技術(shù)
- 物聯(lián)網(wǎng)之魂:物聯(lián)網(wǎng)協(xié)議與物聯(lián)網(wǎng)操作系統(tǒng)
- 數(shù)字烏托邦
- 網(wǎng)絡(luò)故障現(xiàn)場處理實(shí)踐(第4版)
- 物聯(lián)網(wǎng)信息安全
- 信息通信網(wǎng)絡(luò)建設(shè)安全管理概要2
- 局域網(wǎng)組建、管理與維護(hù)項(xiàng)目教程(Windows Server 2003)
- SSL VPN : Understanding, evaluating and planning secure, web/based remote access
- VMware NSX網(wǎng)絡(luò)虛擬化入門
- 語音信號處理及Blackfin DSP實(shí)現(xiàn)
- TCP/IP基礎(chǔ)(第2版)
- 華為HCIA-Datacom認(rèn)證指南
- Guide to NoSQL with Azure Cosmos DB
- 小型局域網(wǎng)組建
- 物聯(lián)網(wǎng)