All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.alkemy.config.ReportConfig.kt Maven / Gradle / Ivy

Go to download

A browser automation framework written in Kotlin and based on Selenium and Kotest

There is a newer version: 1.0.4
Show newest version
package io.alkemy.config

object ReportConfig {
    val enabled: Boolean = System.getProperty("alkemy.report.enabled", "true").toBoolean()
    val screenshotDir: String = System.getProperty("alkemy.report.screenshotDir", "build/reports/screenshots")
    val htmlReportFile: String = System.getProperty("alkemy.report.htmlReport", "build/reports/extent-report.html")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy