您好,登錄后才能下訂單哦!
#encoding=utf-8
import unittest
from selenium import webdriver
import time
from selenium.webdriver.chrome.options import Options
class TestDemo(unittest.TestCase):
def setUp(self):
# 創(chuàng)建Chrome瀏覽器的一個(gè)Options實(shí)例對(duì)象
chrome_options = Options()
# 向Options實(shí)例中添加禁用擴(kuò)展插件的設(shè)置參數(shù)項(xiàng)
chrome_options.add_argument("--disable-extensions")
# 添加屏蔽--ignore-certificate-errors提示信息的設(shè)置參數(shù)項(xiàng)
chrome_options.add_experimental_option(\
"excludeSwitches",["ignore-certificate-errors"])
# 添加瀏覽器最大化的設(shè)置參數(shù)項(xiàng),一啟動(dòng)就最大化
chrome_options.add_argument("--start-maximized")
# 啟動(dòng)帶有自定義設(shè)置的Chrome瀏覽器
self.driver = webdriver.Chrome(executable_path = "d:\\chromedriver",\
chrome_options = chrome_options)
def test_downloadFileByChrome(self):
self.driver.get("http://www.baidu.com")
time.sleep(3)
self.driver.find_element_by_id("kw").send_keys("光榮之路")
time.sleep(5)
def tearDwon(self):
self.driver.quit()
if __name__ == "__main__":
unittest.main()
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。