com.codeborne.selenide.TextCheck Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenide-core Show documentation
Show all versions of selenide-core Show documentation
Selenide = concise API for Selenium WebDriver
package com.codeborne.selenide;
/**
* @since 6.7.0
*/
public enum TextCheck {
/**
* Match the full text.
*
* It's a new default behaviour of {@code $.shouldHave(text)} since Selenide 6.5.0
*
*/
FULL_TEXT,
/**
* Match the partial text
*
* It was the default behaviour of {@code $.shouldHave(text)} until Selenide 6.4.0.
*
* Left here for compatibility:
* use it if you have you too many failing tests after upgrading to Selenide 6.5.0.
*
*/
PARTIAL_TEXT
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy