如何在 Internet Explorer 中运行 selenium rc 测试用例

发布于 2024-10-13 22:04:52 字数 83 浏览 3 评论 0原文

我的 selenium RC java 代码在 Firefox 上成功运行。谁能告诉我如何在 Internet Explorer 上运行相同的测试用例?

My selenium RC java code is running successfully on firefox. Can anyone tell me how to run the same test case on internet explorer?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

生死何惧 2024-10-20 22:04:52

更改传递给 DefaultSelenium 工厂的浏览器启动命令字符串。它将是 *iehta 或 *iexplore,具体取决于您的 selenium 版本。

new DefaultSelenium("localhost", 4444, "*iexplore", "http://www.google.com/");

查看文档以获取更多信息。

——赛

Change the browser start command string you pass to DefaultSelenium factory. It will be *iehta or *iexplore depending on your selenium version.

new DefaultSelenium("localhost", 4444, "*iexplore", "http://www.google.com/");

Check out the docs for more info.

--Sai

女中豪杰 2024-10-20 22:04:52

只需将 *firefox 替换为 *iexplore 即可。确切的代码将根据您编写测试所用的语言或您实际启动浏览器的方式而有所不同。

请参阅: http://seleniumhq.org/docs/05_selenium_rc.html #from-selenese-to-a-program 并单击您的特定语言的按钮。

Just replace *firefox with *iexplore. The exact code will vary depending on what language you're writing your test in or how you're actually launching the browser.

see: http://seleniumhq.org/docs/05_selenium_rc.html#from-selenese-to-a-program and click the button for your particular language.

半山落雨半山空 2024-10-20 22:04:52

如果您在使用 selenium RC 在 IE 上运行测试时遇到脚本错误,可能是因为没有以管理员权限运行 selenium 服务器。我遇到了类似的问题,可以通过以管理员身份运行 selenium 服务器来运行它

If you hit the Script error while running tests on IE with selenium RC, it might be because of not running the selenium server with Administrator privileges. I had the similar issue and could get it running with by running the selenium server as an Administrator

暖阳 2024-10-20 22:04:52

非常简单:使用“*iexplore”而不是“*firefox”

Very simple: Use "*iexplore" instead of "*firefox"

再见回来 2024-10-20 22:04:52

为了在 IE 上运行脚本,请执行以下步骤

1.导航到“工具”→“Internet 选项”→“安全”→“受信任的站点

” 2.单击“站点”按钮,然后在“将此网站添加到”中添加您正在测试的应用程序的 URL区域:”,然后单击“添加”按钮。

3.导航至工具Internet选项安全并禁用“启用保护模式(需要重新启动Internet Explorer)”复选框,然后单击“应用”,然后单击“确定”。

  1. a.导航至“工具”→“Internet 选项”→“安全”
    b.在“允许的网站地址”中添加您的应用程序的所有 URL,然后单击“添加”按钮。

  2. 导航至“工具”→“Internet 选项”→“高级选项”。向下滚动到“安全”部分,然后选择“允许活动内容在我的计算机上的文件中运行”。这将摆脱讨厌的工具栏警报,并允许 JavaScript 自动运行。

In order to work the scripts on IE do the following steps

1.Navigate to ToolsInternet OptionsSecurityTrusted Sites

2.Click on “Sites” button and add the Urls of the application you are testing in “Add this website to the zone:” and clicking on “Add” button.

3.Navigate to ToolsInternet OptionsSecurity and disable the checkbox “Enable Protected Mode (requires restarting Internet Explorer)” and click on “Apply” and click “Ok”.

  1. a. Navigate to ToolsInternet OptionsSecurity
    b. Add all the URL’s of your application in the “Address of websites to allow” and click on “Add” button.

  2. Navigate to ToolsInternet OptionsAdvanced options. Scroll down to the Security section, and select Allow active content to run in files on my computer. This will get rid of the pesky toolbar alert, and allow JavaScript to run automatically.

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