package test;
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:域名注冊(cè)、雅安服務(wù)器托管、營(yíng)銷軟件、網(wǎng)站建設(shè)、東勝網(wǎng)站維護(hù)、網(wǎng)站推廣。
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.Test;
public class OpenCloseBrowser {
@Test
public void test() throws InterruptedException{
//Firefox
/*System.setProperty("webdriver.firefox.bin", "D:/Firefox/firefox.exe");
WebDriver wd = new FirefoxDriver();*/
//chrome
System.setProperty("webdriver.chrome.driver", "D:/01 Learn WebDriver/chromedriver.exe");
WebDriver wd = new ChromeDriver();
Thread.sleep(5000);
//ie
/*System.setProperty("webdriver.ie.driver", "D:/01 Learn WebDriver/IEDriverServer.exe");
WebDriver wd = new InternetExplorerDriver();*/
//wd.close();
wd.quit();
}
}
close方法是關(guān)閉瀏覽器窗口;
quit方法是退出整個(gè)webdriver;
也就是說(shuō),close以后,wd仍可以進(jìn)行其他操作;
建議使用quit方法,退出更完整,更安全。
文章題目:Se(1)---打開(kāi)、關(guān)閉瀏覽器
文章起源:http://www.rwnh.cn/article14/gdgsge.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站排名、網(wǎng)站收錄、網(wǎng)站導(dǎo)航、商城網(wǎng)站、自適應(yīng)網(wǎng)站、標(biāo)簽優(yōu)化
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)