assertj / assertj-swing

Fluent assertions for Swing apps
Other
109 stars 52 forks source link

Agent support for automating UI Testing #262

Open gayanper opened 3 years ago

gayanper commented 3 years ago

The support assertJ-swing is great. When trying to use the library to automate some application level tests like running the application and run tests against it, I found the few problems.

We could overcome these problems, if we keep test execution and assertions on the testing jvm and application on its own jvm. To do that we would need a small agent which could perform low level operations that are required by the assertion library and return the results to the testing jvm. This will make sure the testing and assertion has minimal impact on the application jvm.

Do you think this is a good idea to implement ? or the scope of this library is just to test components only ?