How to start using Jemmy 3?

I would like to use Jemmy v3 to test the GUI, but I canโ€™t find a manual or user guide or even examples of its use. I found the documentation only for Jemmy v2, and it looks like the library has been completely rewritten and redesigned.

In Jemmy v2, I used:

new ClassReference(...).startApplication() 

How can I make a similar call using Jemmy v3?

+6
source share
1 answer

It depends on which library you use it for.

The logic of application execution can be different for different libraries: AWT, FX, SWT.

For JavaFX, you will do it this way: AppExecutor.executeNoBlock(TestApp.class);

+2
source

Source: https://habr.com/ru/post/892766/


All Articles