| Field and Description |
|---|
| com.codeborne.selenide.Condition.notPresent
Use method $.shouldNot(exist) or $.shouldNotBe(present).
|
| com.codeborne.selenide.Condition.options
Not needed anymore. Use methods $.selectOption() or $.selectOptionByValue().
|
| Method and Description |
|---|
| com.codeborne.selenide.Condition.hasNotClass(String)
Use method $.shouldNotHave(cssClass("abc"))
|
| com.codeborne.selenide.Condition.hasOptions() |
| com.codeborne.selenide.JQuery.scrollTo(By)
Use method
$(...).scrollTo() instead - it's jquery-agnostic.
This method works only if jQuery "scroll" plugin is included in page being tested |
| com.codeborne.selenide.WebDriverRunner.takeScreenShot(String)
Use com.codeborne.selenide.Screenshots#takeScreenShot(java.lang.String)
|
| com.codeborne.selenide.WebDriverRunner.takeScreenShot(String, String)
Use com.codeborne.selenide.Screenshots#takeScreenShot(java.lang.String, java.lang.String)
|