溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

屏蔽Chrome的--ignore-certificate-errors提示及禁用擴(kuò)展插件并實(shí)現(xiàn)窗口

發(fā)布時(shí)間:2020-07-01 06:50:07 來源:網(wǎng)絡(luò) 閱讀:1783 作者:qq5a16e6241946e 欄目:編程語言
#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()
向AI問一下細(xì)節(jié)

免責(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)容。

AI