Integrate window tester with eclipse for testing UI

前端 未结 2 648
遇见更好的自我
遇见更好的自我 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条回答
  •  萌比男神i
    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.

提交回复
热议问题