当我执行我的测试项目时,我得到以下错误
node:70468) [DEP0022] DeprecationWarning: os.tmpDir() is deprecated. Use
os.tmpdir() instead.
[15:07:12] I/launcher - Running 1 instances of WebDriver
[15:07:12] I/local - Starting selenium standalone server...
[15:07:46] E/launcher - Error: Error: Timed out waiting for the WebDriver server at http://172.25.144.1:56412/wd/hub
at onError (C:\Users\xxxx\Documents\workspace\xxx\Automation\xxx-automation\web\node_modules\selenium-webdriver\http\util.js:102:16)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
[15:07:46] E/launcher - Process exited with error code 100
量角器版本:5.1.2和 Selenium Standalone服务器3.12.0
答案 0 :(得分:0)
问题是selenium独立服务器自动从他们的商店设置随机主机以启动selinum web驱动程序。 在这种情况下,连接的服务器没有响应客户端。 然后我连接到一个不同的网络,并重新构建它的selenium服务器主机。
Selenium standalone server started at http://10.0.75.1:64132/wd/hub
它解决了这个问题..
感谢您的支持......