Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to start using Jemmy 3?

I would like to use Jemmy v3 for GUI testing but I can't find any manual or user guide or even an examples of using it. I've found documentation only for Jemmy v2 and it looks like the library was completely rewritten and redesigned.

In Jemmy v2 I used:

new ClassReference(...).startApplication()

How can a similiar invocation can be done with Jemmy v3?

like image 320
MaXal Avatar asked Jul 14 '11 15:07

MaXal


1 Answers

That depends on what UI library you are using it for.

App execution logic may be and is different for different libraries: AWT, FX, SWT.

For JavaFX you would do it like this: AppExecutor.executeNoBlock(TestApp.class);

like image 190
Shura Avatar answered Nov 11 '22 08:11

Shura