① 使用python和Splinter打開了chrome沒有動態提示是怎麼回事
a.看chrome版本。
b.看版本對應的驅動:http://blog.csdn.net/huilan_same/article/details/51896672
c.下載驅動(國內鏡像):http://npm.taobao.org/mirrors/chromedriver/
d.配置chromedriver地址到環境變數。或者把chromedriver.exe放到python下的Scripts文件夾下。
e.重啟python交互窗口,重新執行代碼。
② 如何用python實現自動化輸入
若是WEB-UI,或許可以考慮使用 splinter 或直接使用 selenium
而假如是WIN-UI,那麼就通過獲取目標句柄後設置相應數據;或者直接模擬系統的鍵盤輸入。
③ win7下如何安裝測試工具splinter
Splinter安裝:
1 安裝Python 2.7,注意3.0不支持 http://www.python.org。
2 安裝Pip。
3 安裝Splinter 。
$ sudo pip install splinter 。
另一種以源代碼方式安裝splinter 。
$git clone git://github.com/cobrateam/splinter.git 。
$ cd splinter 。
$ sudo python setup.py install。
④ python和splinter怎麼關聯起來
你要是單獨下載的話,應該裡面有setup.py文件,你需要用一條命令:
python或者python3setup.pyinstall
當然安裝python第三方庫時,不建議這么搞,麻煩。最好用pip方式來安裝,比如:
pipinstallsplinter
或者
pip3installsplinter
以上兩種方式分別對應python2和python3來說的。