如何在Mac OS上安装Selenium WebDriver


92

如何在支持Chrome,Firefox和safari的Mac OS X 10.7.5上安装Selenium WebDriver?我必须设置什么,在哪里安装。


3
目前,该帖子是Google搜索“安装Selenium mac”的热门话题,因此,这里有一个更新的链接(上面的链接似乎已损坏):selenium-python.readthedocs.io/installation.html
Jaime

Answers:


199

安装

如果您使用自制软件(我建议这样做),则可以使用以下命令安装硒:

brew install selenium-server-standalone

跑步

更新-port port_number

要运行硒,请执行以下操作: selenium-server -port 4444

有关更多选项: selenium-server -help


2
自动启动硒:brew services start selenium-server-standalone
Jimothy

2
迄今为止最好的答案
Pulkit

如何使用此格式指定chromedriver路径?
黎泰(LêThái)PhúcQuang

35

Mac已经有了Python和一个名为的软件包管理器easy_install,因此请打开Terminal并输入

sudo easy_install selenium

4
这可行,但是假设您要使用Python运行Selenium。如果您要这样做,请参阅damien.co/resources/…通常,我认为人们正在寻找的是如何从命令行运行Selenium Standalone Server,以便其他脚本可以使用它。
chrowe

1
如果您需要卸载python版本的selenium,请执行以下操作:1. sudo easy_install -m selenium 2. sudo rm -rf /Library/Python/2.7/site-packages/selenium-3.11.0-py2.7.egg(文件名可能是视版本而定)
Red Rooster


1

首先,您需要从http://www.seleniumhq.org/download/下载Selenium jar文件。然后,您需要一个IDE,例如IntelliJ或Eclipse。然后,您必须将jar文件映射到这些IDE。然后,根据选择的语言/框架,您必须下载相关的库文件,例如,如果使用的是JUnit,则必须下载Junit 4.11 jar文件。最后,不要忘记下载Chrome和Safari驱动程序(Selenium标配了firefox驱动程序)。完成后,您可以使用所选的浏览器开始编码和测试代码。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.