Integrate window tester with eclipse for testing UI

前端 未结 2 624
遇见更好的自我
遇见更好的自我 2021-01-23 07:27

We are planning to automate testing of my eclipse application GUI using window tester. Version of eclipse is oxygen.

Please inform me how to integrate window tester wit

相关标签:
2条回答
  • 2021-01-23 08:04

    I have personally used first two types of the frameworks:

    1. SWTBot
    2. RCPTT
    3. Jubula
    4. RedDeer

    RCPTT is focused on creating and running UI/System test for RCP/SWT applications. It is an alternative or addition to the open source projects SWTBot or Jubula. All of them have their specific advantages and disadvantages, RCPTT uses a very different approach than that of SWTBot or Jubula.

    SWTBot is a Java API to consume while writing tests (can be JUnit, TestNG...), which makes it very easy to use for Java developers.

    Jubula has its own XML-based languages to write tests. Аlso uses an embedded database and thus differs internally most from the others.

    RCPTT using Eclipse Command Language to write tests.

    Thanks to @howlger for help.

    0 讨论(0)
  • 2021-01-23 08:22

    Jubula test can be written either with a UI, which can be used without any programming experience or with an API for Java.

    I would have written this in the comments for @MBaev but i was not able due to low reputation

    0 讨论(0)
提交回复
热议问题