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

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

There is a newer version: 5.3.5
Show newest version
package selenium_steps_support.service.text_match.matchers

object ContainsCaseInsensitiveTextMatcher : TextMatcher {

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy