2017-06-05 84 views
0

我想用Python Selenium安裝Chrome擴展。 當我點擊添加到Chrome按鈕時,彈出一個彈出窗口(不知道它是否是一個java腳本),詢問:「添加擴展名」,「取消」。我想點擊「添加擴展名」,但我收到以下錯誤:通過Python安裝Chrome擴展時出錯 - 硒

selenium.common.exceptions.NoAlertPresentException: Message: no alert open

我的代碼:

from selenium import webdriver 
import time 

driver=webdriver.Chrome() 
driver.implicitly_wait(30) 
driver.get("https://chrome.google.com/webstore/detail/buyhatke/jaehkpjddfdgiiefcnhahapilbejohhj?hl=en") 
time.sleep(15) 
element=driver.find_element_by_css_selector("body > div.F-ia-k.S-ph.S-Rc-qa > div.h-F-f-k.F-f-k > div > div > div.e-f-o > div.h-e-f-Ra-c.e-f-oh-Md-zb-k > 
div.dd-Va.g-c-wb.g-eg-ua-Uc-c-za.g-c-Oc-td-jb-oa.g-c") 
element.click() 
alert = driver.switch_to.alert 
alert.accept() 

幫我安裝它。

更新代碼:

from selenium import webdriver 
from selenium.webdriver.chrome.options import Options 
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities 
import os 

executable_path = "C:\\Users\\SACHIN\\AppData\\Local\\Programs\\Python\\Python36\\chromedriver" 
os.environ["webdriver.chrome.driver"] = executable_path 

chrome_options = Options() 
chrome_options.add_extension("C:\\Users\\SACHIN\\AppData\\Local\\Google\\chrome\\User Data\\Default\\Extensions\\jaehkpjddfdgiiefcnhahapilbejohhj\\ 
3.4.143_0") 

driver = webdriver.Chrome(executable_path=executable_path,chrome_options=chrome_options) 
driver.get("http://stackoverflow.com") 
driver.quit() 

回答

0

這是因爲下載選項彈出您嘗試使用switch_to.alert選擇並不是一個真正的JS警報彈出。您無法選擇使用Selenium的switch_to方法。您需要使用DesiredCapabilities類來選擇此選項,然後在代碼中使用它。

作爲每ChromeDriver文檔,給出here,請使用包裝(具有.crx擴展)或解壓後的擴展文件(包含擴展,包括manifest.json file目錄),並使用DesiredCapabilities加載它。這可以通過使用

 from selenium.webdriver.chrome.options import Options 

    executable_path = "path_to_webdriver" 
    os.environ["webdriver.chrome.driver"] = executable_path 

    chrome_options = Options() 
    chrome_options.add_extension('path_to_extension') 

    driver = webdriver.Chrome(executable_path=executable_path,chrome_options=chrome_options) 
    driver.get("http://stackoverflow.com") 
    driver.quit() 
+0

能否請你幫我在哪裏可以找到路徑延伸 –

+0

路徑擴展,你會下載你的'.crx'文件的路徑來完成。假設你在一個Linux系統上,它可能是/用戶/下載或一些直接 – demouser123

+0

我正在使用Windows 10 –