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

selenium_steps_support.service.text_match.matchers.CaseInsensitiveTextMatcher.kt Maven / Gradle / Ivy

The newest version!
package selenium_steps_support.service.text_match.matchers

object CaseInsensitiveTextMatcher : TextMatcher {

    override fun matches(expectedText: String, actualText: String): Boolean {
        return expectedText.equals(actualText, ignoreCase = true)
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy