| 29 | import org.aeonbits.owner.Config.LoadType; |
| 30 | |
| 31 | @LoadPolicy(LoadType.MERGE) |
| 32 | @Config.Sources({ |
| 33 | "system:properties", |
| 34 | "classpath:local.properties", |
| 35 | "classpath:app.properties", |
| 36 | "classpath:grid.properties", |
| 37 | "classpath:report.properties"}) |
| 38 | public interface Configuration extends Config { |
| 39 | |
| 40 | @Key("target") |
| 41 | String target(); |
| 42 | |
| 43 | @Key("browser") |
| 44 | String browser(); |
| 45 | |
| 46 | @Key("headless") |
| 47 | Boolean headless(); |
| 48 | |
| 49 | @Key("url.api") |
| 50 | String apiUrl(); |
| 51 | |
| 52 | @Key("url.base") |
| 53 | String baseUrl(); |
| 54 | |
| 55 | @Key("client.id") |
| 56 | String clientId(); |
| 57 | |
| 58 | @Key("client.secret") |
| 59 | String clientSecret(); |
| 60 | |
| 61 | @Key("url.oauth") |
| 62 | String oauthUrl(); |
| 63 | |
| 64 | @Key("timeout") |
| 65 | int timeout(); |
| 66 | |
| 67 | @Key("grid.url") |
| 68 | String gridUrl(); |
| 69 | |
| 70 | @Key("grid.port") |
| 71 | String gridPort(); |
| 72 | |
| 73 | @Key("faker.locale") |
| 74 | String faker(); |
| 75 | |
| 76 | @Key("auto.login") |
| 77 | boolean autoLogin(); |
| 78 | |
| 79 | @Key("enable.tracing") |
| 80 | boolean enableTracing(); |
| 81 | |
| 82 | @Key("action.delay") |
| 83 | double slowMotion(); |
| 84 | |
| 85 | @Key("pause.low") |
| 86 | long pauseLow(); |
| 87 | |
| 88 | @Key("pause.medium") |
no outgoing calls
no test coverage detected