使用robotframework無法連接webdriver
阿新 • • 發佈:2017-07-19
rf無法連接webdriver驅動
在保證RF安裝環境都是正確安裝的前提,今天發現一個問題,就是無論我怎麽使用open browser都報錯,提示無法連接webdriver,網上有很多人都說是下載的webdriver版本不匹配,我也嘗試去下載了最新版本,還是無法解決,最後訪問了國外的一個網站,https://stackoverflow.com/
解決了這個問題
原因是本機127.0.0.1 與localhost 不匹配
你可以在命令行中輸入:drivers
點擊/etc/hosts/查看
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a ‘#‘ symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host
# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost
把註釋去掉保存
再去嘗試在RF中運行,查看能否打開瀏覽器
使用robotframework無法連接webdriver