gpt4 book ai didi

selenium - 在 Selenium Grid 中为 IE6(和多个浏览器)设置

转载 作者:行者123 更新时间:2023-12-01 10:14:54 26 4
gpt4 key购买 nike

我很难理解有关 selenium Grid/RC 的一些概念。我需要的是为测试提供特定的环境(ie6-on-xp、ie7-on-xp 等)。对于我一直在阅读的内容,grid_configuration.yml 中的浏览器行没有提及我的 MSIEFirefox 版本我正在运行。所以我想不出我可以用哪种形式告诉 Grid/RC 我想要一些特定的浏览器和运行它们的路径(RC 如何知道要运行哪个 exe?)

其次,我想运行这些浏览器的便携版本。我只看到在测试中指定,而不是在 RC 的命令行中运行它们。根据测试,这是做到这一点的方法吗?

最佳答案

我会分解你需要的信息来回答你的问题

What I need is to provide specific environments (ie6-on-xp, ie7-on-xp, etc) to the tests.

既然你不能在同一台机器上有多个 IE 实例,我知道有一些应用程序允许你这样做,但根据我的经验,它们导致的问题多于解决它们的问题。理想情况下,您希望不同的机器运行测试。通过这样做,您还为您的开发人员设置了一个 selenium 农场,因为他们可以针对特定实例进行测试。因此,将网格设置为基础设施是一个很好的步骤。

For what I've been reading, the browser line in grid_configuration.yml do not make any reference of what version of MSIE or Firefox I'm running. So I can't get my head around in which form I can tell Grid/RC that I want some specific browsers and the path to run them (how RC knows which exe to run?)

YAML 只是让您知道网格可以处理什么。启动网格时,您需要确保传入类似的配置。将 Se:GRID 想象成 Se:RC,只是你不关心 RC 服务器在哪里,因为你与一个中心位置对话,它会为你解决其余的问题。

如果您需要它针对特定项目运行测试,那么您需要在测试设置中处理它。有一个普遍的误解,认为所有测试在每个浏览器中都将以相同的方式运行。如果您在测试中从不依赖 XPath 或 CSS 选择器,就会发生这种情况,因为浏览器处理此问题的方式总是略有不同,而细微的差异会导致不稳定的测试,这应该始终避免。

指定用于测试的浏览器的一种方法是拥有一个中央配置文件。在 C# 中,这将使用具有每个浏览器集合的 app.config 并执行

配置

<Firefox>
<addKey browserVersion='3.5.6' OS='WindowsXP'>
</Firefox>

中央配置类查看 1 个元素

 public class BoothElement : ConfigurationElement
{
[ConfigurationProperty("browserVersion", DefaultValue = "", IsKey = true, IsRequired = true)]
public string browserVersion
{
get
{
return ((string)(base["browserVersion"]));
}
set
{
base["browserVersion"] = value;

}
}

测试

selenium = new DefaultSelenium(HubPort, HubPort, browserVersion, SUTServer);
selenium.Open("/test.htm");
//Rest of the test

在 python 中,您可以在包含在所有测试中的模块中创建一个数组

include.py

hubServer = 'hub'
hubPort = 5555
sut = 'http://serverUnderTest'
firefox = [hubServer,hubPort,"\*chrome",sut]
iexplore = [hubServer,hubPort,"\*iehta",sut]

测试.py

sel = selenium(firefox)
sel.open("/test.html")
#rest of the test

在使用 Selenium Grid 时,请尝试将其更多地视为测试基础架构帮助框架,希望它能为您提供更多帮助。

Second, I'd like to run portable versions of those browsers. I've only seen that specified in the tests, and not in the RC's command line to run them. That is the way to do it, per test?

我从来没有尝试让 Selenium 在移动浏览器上工作,我认为它不会很好地工作,但是对于目前处于 alpha 阶段的 Selenium 2,Android 支持测试应用程序。

根据评论编辑

   - name:    "Firefox on OS X"
browser: "*firefox"
- name: "Firefox on Linux"
browser: "*firefox"
- name: "IE on Windows"
browser: "*iehta"
- name: "Safari on OS X"
browser: "*safari"

假设我们有上述设置,根据 YAML 文件我们有许多不同的 *firefox 实例。所以要在我们的测试中调用那些不同的,我们的浏览器设置命令看起来像

selenium.Start(hubHost, hubPort, "Linux 上的 Firefox", "http://serverUnderTest");selenium.Start(hubHost, hubPort, "Firefox on OS X", "http://serverUnderTest");

集线器将为您将其转换为 *firefox。我更喜欢为我的环境使用非常精细的名称,而不是通常的 *firefox,这样如果出现故障,它更容易发现它在哪里以及在哪个特定浏览器上。

关于selenium - 在 Selenium Grid 中为 IE6(和多个浏览器)设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1944209/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com