将 Selenium HTML 测试转换为 JUnit 的自动化方法?

发布于 2024-11-06 22:27:51 字数 181 浏览 0 评论 0原文

我在 Mac 10.6.6 上使用 Selenium IDE 1.0.10 for Firefox。我们的 QA 部门已经为 Selenium 创建了一些 HTML 测试,我需要将其转换为 Junit。在 IDE 中,我可以通过转到“文件”菜单并选择“导出”来完成此操作。完成相同任务的自动化/可编写脚本的方法是什么?

谢谢,-戴夫

I'm using Selenium IDE 1.0.10 for Firefox on Mac 10.6.6. Our QA department has created some HTML tests for Selenium that I need to convert to Junit. In the IDE, I can do that by going to the File menu and choosing export. What is an automated/scriptable way to do this same task?

Thanks, - Dave

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

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

发布评论

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

评论(4

寂寞清仓 2024-11-13 22:27:51

试试这个插件。我没有使用过它,但它的描述正是您需要的。 插件

Try this add in. I have not used it, but it is described just as you need it. Addin

随心而道 2024-11-13 22:27:51

试试这个插件,它将 Selenium HTML 脚本转换为 Java 。

Selenium4J

Try this addon which converts Selenium HTML scripts to Java .

Selenium4J

吻安 2024-11-13 22:27:51

查看 selenese4J-maven-plugin。类似于 selenium4j (https://github.com/RaphC/selenese4j-maven-plugin )。

提供许多功能:
Selenium 1/2 (WebDriver) 转换
测试套件生成
html 文件的国际化
可以在 html 文件中使用代码片段进行特定测试(例如:计算工作日、编写自定义值生成、处理动态值...)
使用标记化属性

Look at the selenese4J-maven-plugin. Similar to selenium4j (https://github.com/RaphC/selenese4j-maven-plugin).

Provides many features :
Selenium 1/2 (WebDriver) conversion
Test Suite generation
Internationalisation of your html file
Possibility to use snippet into your html file for specific test (e.g : computing working day, write custom generation of values, handle dynamic values ...)
Use of tokenized properties

枉心 2024-11-13 22:27:51

我拿了 selenium4j 项目并将其变成了一个 Maven 插件,供那些想要进行 html 测试的人使用案例并自动让它们与您的 Maven 测试阶段一起运行。您还可以使用 Surefire 的配置文件覆盖来分离测试。

自述文件在这里: https://github.com/willwarren/selenium-maven-plugin

自述文件的简短版本:

将此文件夹结构转换为:

./src/test/selenium
    |-signin
        |-TestLoginGoodPasswordSmoke.html
        |-TestLoginBadPasswordSmoke.html
        |-selenium4j.properties

./src/test/java
    |-signin
        |-firefox
            |-TestLoginGoodPasswordSmoke.java
            |-TestLoginBadPasswordSmoke.java

在使用 Firefox 和 Chrome 的 Windows 上进行了测试。
我无法让 IE 版本通过测试,但我是硒的新手,所以希望,如果你是硒大师,你可以通过这个。

I took the selenium4j project and turned it into a maven plugin for those who want to take the html test cases and automatically have them run with your maven test phase. You can also separate the tests out using a profile override with surefire.

Readme is here: https://github.com/willwarren/selenium-maven-plugin

The short version of the readme:

Converts this folder structure:

./src/test/selenium
    |-signin
        |-TestLoginGoodPasswordSmoke.html
        |-TestLoginBadPasswordSmoke.html
        |-selenium4j.properties

Into

./src/test/java
    |-signin
        |-firefox
            |-TestLoginGoodPasswordSmoke.java
            |-TestLoginBadPasswordSmoke.java

This is only tested on windows with Firefox and Chrome.
I couldn't get the IE version to pass a test, but I'm new to selenium so hopefully, if you're a selenium guru, you can get past this.

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