https://github.com/tidal-code/wave
Selenium - Java Test Automation Framework
https://github.com/tidal-code/wave
java selenium
Last synced: 5 months ago
JSON representation
Selenium - Java Test Automation Framework
- Host: GitHub
- URL: https://github.com/tidal-code/wave
- Owner: tidal-code
- License: mit
- Created: 2022-10-04T02:06:04.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-08-25T21:33:38.000Z (10 months ago)
- Last Synced: 2025-08-25T23:29:06.596Z (10 months ago)
- Topics: java, selenium
- Language: Java
- Homepage: https://wave.tidalcode.dev
- Size: 2.97 MB
- Stars: 2
- Watchers: 2
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: License.txt
Awesome Lists containing this project
README
# Tidal Wave
Wave browser automation library is a Java based Selenium framework to automate complex UIs. The most impressive feature of this library is that you can forget about switching iFrames and handling spinners. The framework will do it automatically for you. It has got implicit auto-wait of 5 seconds and a lot of easy to use features that makes your life as an automation engineer very easy.
## Downloads
You can download the dependency from maven
For the latest version, refer to the link below:
[Tidal Wave New Version](https://wave.tidalcode.dev/docs/detailed-documentation/Versions/)
## Usage Example:
``` java
Browser.open("https:\\google.co.nz");
find("name:q").sendKeys("hello");
find("name:q").shouldHave(exactText("hello"));
Browser.close();
```
## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
## License
[MIT](https://choosealicense.com/licenses/mit/)