Robot Framework進行web ui自動化測試,瀏覽器配置說明
阿新 • • 發佈:2017-11-14
org .html open fire img row sele title cnblogs
轉載請註明出處,謝謝;
chrome瀏覽器:
1、從如下地址下載與本地瀏覽器版本號一致的chromedriver.exe驅動文件;
http://chromedriver.storage.googleapis.com/index.html
2、將驅動文件放置在python根路徑下即可,例如D:\Python27;
ie瀏覽器:
1、從如下地址下載和本地selenium版本號及操作系統一致的iedriver;
http://selenium-release.storage.googleapis.com/index.html
2、將驅動文件放置在python根路徑下即可,例如D:\Python27;
3、將頁面縮放設置為100%;
4、勾選上ie瀏覽器所有區域安全模式的“啟動保護模式”;
firefox瀏覽器:
1、如果本地使用selenium 2.X版本,下載對應版本的firefox瀏覽器;
下載地址:http://ftp.mozilla.org/pub/firefox/releases/
如果使用selenium3.0,需確保下載有geckodriver且路徑在path中。目前selenium3.0支持火狐45及以上的版本。
2、關閉firefox網絡的代理;
3、在open browser時添加ff_profile_dir參數,該參數的值為selenium2Library的源碼裏resources目錄裏firefoxprofile的路徑值;
Robot Framework進行web ui自動化測試,瀏覽器配置說明