StandardWebTestValidationRulesContent

data class StandardWebTestValidationRulesContent(val contentMatch: String, val ignoreCase: Boolean? = null, val passIfTextFound: Boolean? = null)

Constructors

Link copied to clipboard
constructor(contentMatch: String, ignoreCase: Boolean? = null, passIfTextFound: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A string value containing the content to match on.

Link copied to clipboard
val ignoreCase: Boolean? = null

Ignore the casing in the content_match value.

Link copied to clipboard

If the content of content_match is found, pass the test. If set to false, the WebTest is failing if the content of content_match is found.