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

me.saro.selenium.model.AppProps.kt Maven / Gradle / Ivy

There is a newer version: 4.26.0.0
Show newest version
package me.saro.selenium.model

import java.util.*

class AppProps {
    companion object {
        val seleniumVersion: String
        val chromeVersion: String
        val chromeDownloadUri: String

        init {
            val props: Properties = Properties().apply { {}.javaClass.getResourceAsStream("/application.properties").use { load(it) } }
            seleniumVersion = props.getProperty("selenium.version")
            chromeDownloadUri = props.getProperty("chrome.download.uri")
            chromeVersion = props.getProperty("chrome.version")
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy