403:访问禁止的硒
我想在 testSuite.xml 文件中提到的参数的帮助下运行我的测试用例,并通过提及在我的测试用例中使用它们 @Parameters({ "selenium.host", "selenium.port", "selenium.browser", "selenium.url" })
在我的代码中。 虽然我使用 -trustAllSSLcertificates
启动了一个独立服务器,但系统给出了“403 访问禁止错误”。但是,如果我通过对端口、URL、主机和端口进行硬编码来单独运行测试用例。浏览器名称,它工作正常。
我哪里出错了?.....
顺便说一句,我使用 build.xml 文件运行我的测试用例。我还在启动服务器时添加了 -trustAllSSLcertificates 。但它仍然不起作用。
请帮忙。
I want to run my testcases with the help of parameters mentioned in the testSuite.xml file and use them in my test cases by mentioning@Parameters({ "selenium.host", "selenium.port", "selenium.browser", "selenium.url" })
in my code.
Though, I started a standalone server with -trustAllSSLcertificates
, the system is giving "403 access forbidden error". However, if I run the test cases individually, by hardcoding the port, URL, Host & browsername, it works fine.
Where am i going wrong?.....
BTW, I run my test cases using build.xml file. Here also i added the -trustAllSSLcertificates when starting the server. But still it does not work.
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
selenium-server-standalone
运行 Selenium WebDriver 时,我不断收到此错误。事实证明,这是因为我需要使用 url
http://localhost:4444/wd/hub
作为 RemoteWebDriver 客户端连接的 url。我确信有很多原因可能会导致
HTTP ERROR: 403
,但您可能需要仔细检查它是否解析为正确的基本 URL。When running Selenium WebDriver using
selenium-server-standalone
I kept getting this error.Turns out that it was because I needed to use the url
http://localhost:4444/wd/hub
as the url for the RemoteWebDriver client to connect to.I'm sure there are a number of things that could cause the
HTTP ERROR: 403
, but you may want to double-check that it's resolving to the correct base url.