gpt4 book ai didi

java - 使用 Java 将 Firefox 的 Selenium IDE 转换为 Chrome 和 Internet Explorer

转载 作者:行者123 更新时间:2023-11-30 03:41:52 25 4
gpt4 key购买 nike

我可以使用selenium IDE对任何使用firefox的网站进行测试。我想使用为 selenium IDE firfox 创建的脚本来使用 chrome 测试同一网站。由于 IE 和 Chrome 没有可靠的 IDE,我想到使用下面的解决方法 -

1 - 创建一个 firefox selenium IDE 脚本/测试并将其转换为 Java(我很了解 java)。2 - 稍微修改Java代码以在任何浏览器而不是FF上运行。

我只需要一个粗略的解决方案。我不想详细学习 selenium Web 驱动程序 API,因为我不应该这样做。我在这里得到了 (1) 的答案 - How to convert commands recorded in selenium IDE to Java?

我该如何完成 (2) 部分?我的做法可以吗?我只想使用 selenium,因为有大量的文档和书籍。

最佳答案

您想使用selenese-runner-java (SRJ)。

功能

  • 运行使用 Selenium IDE 创建的测试用例或测试套件
  • 直接从 Java 代码运行测试
  • 从命令行运行测试
  • 支持最常见的驱动程序(firefox(默认)、chrome、ie、phantomjs ...)
  • 通过 WebDriverFactory 支持自定义驱动程序
  • 可以嵌入到 Maven 构建过程中(对于持续集成过程也很有用)
  • 自 1.7.0 起:使用 CommandFactory 的实现支持自定义命令

使用示例

首先使用 selenium IDE 创建测试(案例和/或套件)并将其保存在磁盘上。

1) 从命令行运行测试

java -jar selenese-runner.jar               \
--driver chrome \
--chromedriver path/to/chrome-driver \
path/to/my-test.html

2) 以编程方式运行测试

public static void main(String[] args) {
String[] myArgs = new String[] { //
//
"--driver chrome", //
"--chromedriver path/to/chrome-driver", //
"path/to/my-test.html"
};

jp.vmi.selenium.selenese.Main.main(myArgs);
}

3) 运行 selenium 测试作为 Maven 构建过程的一部分

Selenium 测试通常在集成测试阶段运行。此外,selenese-runner-java 必须是 pom.xml 依赖项的一部分。

...
<properties>
<exec.maven.plugin.version>1.3.2</exec.maven.plugin.version>
<selenese.runner.java.version>x.y.z</selenese.runner.java.version>
<speed>0</speed><!-- Tests speed in milliseconds (Fast: 0, Slow: 5000) -->
</properties>

...
<dependency>
<groupId>jp.vmi</groupId>
<artifactId>selenese-runner-java</artifactId>
<version>${selenese.runner.java.version}</version>
</dependency>

...
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${exec.maven.plugin.version}</version>
<executions>
<execution>
<id>Execution Tests Selenium</id>
<phase>integration-test</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>java</executable>
<includePluginDependencies>true</includePluginDependencies>
<includeProjectDependencies>true</includeProjectDependencies>
<classpathScope>test</classpathScope>
<longClasspath>true</longClasspath>
<commandlineArgs>
<!-- CDATA is crucial here... -->
<![CDATA[-cp selenese-runner-java-${selenese.runner.java.version}.jar jp.vmi.selenium.selenese.Main --driver chrome --chromedriver path/to/chrome-driver --baseurl http://localhost:8080 --set-speed ${speed} src/test/TestSuite.html --html-result target/selenium-reports]]>
</commandlineArgs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

关于java - 使用 Java 将 Firefox 的 Selenium IDE 转换为 Chrome 和 Internet Explorer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26681429/

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