https://github.com/simplicitesoftware/testui-module-demo
Example of UI testing of a Simplicité module ("Demo")
https://github.com/simplicitesoftware/testui-module-demo
Last synced: 6 months ago
JSON representation
Example of UI testing of a Simplicité module ("Demo")
- Host: GitHub
- URL: https://github.com/simplicitesoftware/testui-module-demo
- Owner: simplicitesoftware
- Created: 2021-11-23T15:38:03.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-31T15:38:28.000Z (over 4 years ago)
- Last Synced: 2024-12-29T10:44:52.072Z (over 1 year ago)
- Language: Java
- Size: 69.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simplicité UI tests
## How to run
Run the test like a maven suite with `mvn test` and the options of your choice. The URL of the target instance is required.
| Option | Default | Possible values |
|----------------------------|------------|-----------------|
| -Dselenide.browser | chrome | chrome, firefox |
| -Dselenide.browserSize | 2500x2000 | |
| -Dselenide.headless | true | true, false |
| -Dselenide.savePageSource | false | |
| -Dselenide.pageLoadTimeout | 30000 | |
| -Dselenide.pollingInterval | 1000 | |
| -Dsimplicite.url | `null` | **Mandatory** |
| -Dsimplicite.user | designer | |
| -Dsimplicite.password | simplicite | |
Example:
```
mvn test -Dselenide.browser=firefox -Dselenide.headless=false -Dsimplicite.url=https://my.instance.com -Dsimplicite.password=myownpassword
```