Selenium远程WebDriver

问题描述 投票:0回答:1

对于一个项目,我需要使用Selenium Webdriver在服务器上运行我的测试用例。我见过documentation,但我不知道如何在我的代码中实现它以及如何使用它。

我已经测试了:

driver = webdriver.Remote(command_executor='http://ip_address:4444/wd/hub/static/resource/hub.html',desired_capabilities=DesiredCapabilities.FIREFOX)

但它不起作用。

PS:我使用Python进行测试,Linux是我服务器的操作系统。

python linux selenium selenium-webdriver
1个回答
1
投票

尝试

driver = webdriver.Remote(command_executor='http://ip_address:4444/wd/hub/',desired_capabilities=DesiredCapabilities.FIREFOX)`  

您在代码中使用的URL看起来很糟糕: - /

© www.soinside.com 2019 - 2024. All rights reserved.