2
我學習Python和我遇到了一個問題連接到Google使用python留空白
from selenium import webdriver
driver = webdriver.Firefox()
driver.get('http://www.google.com')
我的Firefox的推出,但喜歡它應該是,而是停留,因爲它在google.com上不走一個空白頁。
我學習Python和我遇到了一個問題連接到Google使用python留空白
from selenium import webdriver
driver = webdriver.Firefox()
driver.get('http://www.google.com')
我的Firefox的推出,但喜歡它應該是,而是停留,因爲它在google.com上不走一個空白頁。
我會建議使用chrome,因爲您的腳本確實有效。 so ... http://chromedriver.storage.googleapis.com/2.9/chromedriver_win32.zip下載並將其解壓到位於C:\\
驅動器根目錄中的python27/scripts
文件夾,然後運行此腳本。
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('http://www.facebook.com')
它應該連接你到facebook.com希望我幫助。 :)
你使用的是什麼firefox和硒版本?聽起來像我們經常看到的不兼容問題之一。 – alecxe
我使用的是火狐48.0,我不知道如何檢查硒版本 –
我相信你的問題是Firefox的啓動頁面.http://stackoverflow.com/questions/34069224/firefoxdriver-always-starting-on- firstrun頁破,所有測試的腳本 – thesonyman101