Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从 Python 脚本中启动 Selenium 脚本,但它卡在“11:16:32.144 INFO - Launching Firefox ...”
Selenium 服务器运行良好,我也尝试了 Selenium IDE,它可以工作。我正在使用 Ubuntu lynx、Firefox 3.6.23、Selenium 服务器 2.11.0
你认为它可能是什么?
非常感谢。
问候。
可能是 Selenium 无法以某种方式找到 Firefox?
进程结束了吗?还是只是挂着?
尝试手动启动 selenium runner,比如从 ipython 开始,例如:
from selenium import selenium sr = selenium(host, port, "*firefox*", url) sr.start()
看看你有没有例外?