io.alkemy.config.ReportConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alkemy Show documentation
Show all versions of alkemy Show documentation
A browser automation framework written in Kotlin and based on Selenium and Kotest
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")
}