403:访问禁止的硒

发布于 2024-11-28 05:01:53 字数 417 浏览 0 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

潜移默化 2024-12-05 05:01:53

使用 selenium-server-standalone 运行 Selenium WebDriver 时,我不断收到此错误。

HTTP ERROR: 403
Forbidden for Proxy
RequestURI=/session

事实证明,这是因为我需要使用 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.

HTTP ERROR: 403
Forbidden for Proxy
RequestURI=/session

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文