美文网首页
Mac+Python+selenium+Firefox+PyCh

Mac+Python+selenium+Firefox+PyCh

作者: 许为祢 | 来源:发表于2019-04-27 16:57 被阅读0次

环境:

        python         2.7

        selenium     3.141.0

            Firefox         最新

1、python使用默认2.7

2、安装selenium,命令:pip install selenium

        如果提示权限不足则使用:sudo easy_install selenium

3、下载最新火狐浏览器,在pycharm执行python脚本

       from selenium import webdriver

       import time

       driver = webdriver.Firefox()

       driver.get("http://www.baidu.com”)

       time.sleep(3)

       driver.quit()

会有一个错误提示:WebDriverException:Message:'geckodriver'executable needstobeinPATH.

4、下载对应的驱动

    火狐:https://github.com/mozilla/geckodriver/releases

解压后,将geckodrive文件放在 /usr/local/bin目录下,重新运行脚本

相关文章

网友评论

      本文标题:Mac+Python+selenium+Firefox+PyCh

      本文链接:https://www.haomeiwen.com/subject/tebknqtx.html