# jemmy-v2 **Repository Path**: mirrors_openjdk/jemmy-v2 ## Basic Information - **Project Name**: jemmy-v2 - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2023-12-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Jemmy Swing UI test automation library Jemmy is a Java library which provides API to simulate user actions on Swing/AWT UI. Base concept of the library design is "Operator" class proxies. A code could look something like this: ``` var window = new JFrameOperator("My application"); new JMenuBarOperator(window).pushMenu("Help/About"); var dialog = new JDialogOperator("About my application"); new JLabelOperator(dialog, "My application is very good!"); new JButtonOperator(dialog, "OK").push(); ``` See tutorial for more usage examples.