@Deprecated public class DOM extends Selenide
defaultWaitingTimeout, navigator| Constructor and Description |
|---|
DOM()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static ShouldableWebElement |
assertChecked(org.openqa.selenium.By criteria)
Deprecated.
Use $(criteria).shouldBe(selected)
|
static ShouldableWebElement |
assertDisabled(org.openqa.selenium.By selector)
Deprecated.
Use $(selector).shouldBe(disabled)
|
static ShouldableWebElement |
assertElement(org.openqa.selenium.By selector,
Condition condition)
Deprecated.
Use $(selector).shouldBe(condition);
|
static ShouldableWebElement |
assertElement(org.openqa.selenium.WebElement element,
Condition condition)
Deprecated.
Use $(selector).shouldBe(condition);
|
static ShouldableWebElement |
assertEnabled(org.openqa.selenium.By selector)
Deprecated.
Use $(selector).shouldBe(enabled)
|
static ShouldableWebElement |
assertHidden(org.openqa.selenium.By selector)
Deprecated.
Use $(selector).shouldBe(hidden);
|
static ShouldableWebElement |
assertNotChecked(org.openqa.selenium.By criteria)
Deprecated.
Use $(criteria).shouldNotBe(selected)
|
static ShouldableWebElement |
assertNotSelected(org.openqa.selenium.By selector)
Deprecated.
Use $(selector).shouldNotBe(selected)
|
static ShouldableWebElement |
assertSelected(org.openqa.selenium.By selector)
Deprecated.
Use $(selector).shouldBe(selected)
|
static ShouldableWebElement |
assertVisible(org.openqa.selenium.By selector)
Deprecated.
Use $(selector).shouldBe(visible);
|
static void |
callOnClick(org.openqa.selenium.By by)
Deprecated.
Use JQuery.callOnClick
|
static void |
click(org.openqa.selenium.By by)
Deprecated.
Use $(by).click()
|
static void |
click(org.openqa.selenium.By by,
int index)
Deprecated.
Use $(by, index).click()
Click the Nth matched element on the page.
|
static java.lang.String |
describeElement(org.openqa.selenium.WebElement element)
Deprecated.
Use $("selector").toString()
|
static boolean |
existsAndVisible(org.openqa.selenium.By selector)
Deprecated.
Use $(selector).isDisplayed()
|
static void |
followLink(org.openqa.selenium.By selector)
Deprecated.
Use $(selector).followLink();
|
static java.lang.String |
getSelectedText(org.openqa.selenium.By selectField)
Deprecated.
Use $(selectField).getSelectedText();
|
static java.lang.String |
getSelectedValue(org.openqa.selenium.By selectField)
Deprecated.
Use $(selectField).getSelectedValue();
|
static boolean |
isJQueryAvailable()
Deprecated.
Use JQuery.isJQueryAvailable
|
static boolean |
isVisible(org.openqa.selenium.By selector)
Deprecated.
Use $(selector).isDisplayed()
|
static void |
scrollTo(org.openqa.selenium.By element)
Deprecated.
Use JQuery.scrollTo
|
static org.openqa.selenium.support.ui.Select |
select(org.openqa.selenium.By selectField)
Deprecated.
|
static void |
selectOption(org.openqa.selenium.By selectField,
java.lang.String value)
Deprecated.
Use $(selectField).selectOptionByValue(String)
|
static void |
selectOptionByText(org.openqa.selenium.By selectField,
java.lang.String text)
Deprecated.
Use $(selectField).selectOption(String)
|
static void |
setValue(org.openqa.selenium.By by,
int index,
java.lang.String value)
Deprecated.
Use $(by, index).setValue(value)
|
static void |
setValue(org.openqa.selenium.By by,
java.lang.String value)
Deprecated.
Use $(by).setValue(value)
|
static void |
setValue(org.openqa.selenium.WebElement element,
java.lang.String value)
Deprecated.
Use $(element).setValue(value)
or $(element).val(value)
|
static void |
triggerChangeEvent(org.openqa.selenium.By by)
Deprecated.
Use JQuery.triggerChangeEvent
|
static void |
triggerChangeEvent(org.openqa.selenium.By by,
int index)
Deprecated.
Use JQuery.triggerChangeEvent
|
static ShouldableWebElement |
waitFor(org.openqa.selenium.By elementSelector)
Deprecated.
Use $(elementSelector).shouldBe(visible) or $(elementSelector).should(appear)
|
static ShouldableWebElement |
waitFor(org.openqa.selenium.By elementSelector,
Condition condition)
Deprecated.
Use $(elementSelector).shouldBe(condition)
|
static ShouldableWebElement |
waitFor(org.openqa.selenium.By elementSelector,
Condition condition,
long timeoutMs)
Deprecated.
Use $(elementSelector).waitUntil(condition, timeoutMs);
|
static ShouldableWebElement |
waitFor(org.openqa.selenium.By elementSelector,
int index,
Condition condition,
long timeoutMs)
Deprecated.
Use $(elementSelector, index).waitUntil(condition, timeoutMs);
|
static ShouldableWebElement |
waitFor(java.lang.String cssSelector)
Deprecated.
Use $(cssSelector).shouldBe(visible) or $(cssSelector).should(appear)
|
static ShouldableWebElement |
waitUntil(org.openqa.selenium.By elementSelector,
Condition condition)
Deprecated.
Use $(elementSelector).shouldBe(condition);
|
static ShouldableWebElement |
waitUntil(org.openqa.selenium.By elementSelector,
Condition condition,
long timeoutMs)
Deprecated.
Use $(elementSelector).waitUntil(condition, timeoutMs);
|
static ShouldableWebElement |
waitUntil(org.openqa.selenium.By elementSelector,
int index,
Condition condition)
Deprecated.
Use $(elementSelector, index).shouldBe(condition);
|
static ShouldableWebElement |
waitUntil(org.openqa.selenium.By elementSelector,
int index,
Condition condition,
long timeoutMs)
Deprecated.
Use $(elementSelector, index).waitUntil(condition, timeoutMs);
|
static ShouldableWebElement |
waitUntil(java.lang.String cssSelector,
Condition condition)
Deprecated.
Use $(cssSelector).shouldBe(condition);
|
static ShouldableWebElement |
waitUntil(java.lang.String cssSelector,
Condition condition,
long timeoutMs)
Deprecated.
Use $(cssSelector).waitUntil(condition, timeoutMs);
|
static ShouldableWebElement |
waitUntil(java.lang.String cssSelector,
int index,
Condition condition)
Deprecated.
Use $(cssSelector, index).shouldBe(condition);
|
static ShouldableWebElement |
waitUntil(java.lang.String cssSelector,
int index,
Condition condition,
long timeoutMs)
Deprecated.
Use $(cssSelector, index).waitUntil(condition, timeoutMs);
|
static ShouldableWebElement |
waitUntil(org.openqa.selenium.WebElement parent,
org.openqa.selenium.By elementSelector,
int index,
Condition condition)
Deprecated.
Use $(parent, elementSelector, index).shouldBe(condition);
|
static ShouldableWebElement |
waitUntil(org.openqa.selenium.WebElement parent,
org.openqa.selenium.By elementSelector,
int index,
Condition condition,
long timeoutMs)
Deprecated.
Use $(parent, elementSelector, index).shouldBe(condition);
|
$, $, $, $, $, $, $, $, $$, $$, $$, $$, confirm, dismiss, executeJavaScript, getElement, getElement, getElements, getFocusedElement, getSelectedRadio, open, open, page, page, refresh, selectRadio, sleep, switchTo, title@Deprecated
public static void setValue(org.openqa.selenium.By by,
java.lang.String value)
@Deprecated
public static void setValue(org.openqa.selenium.By by,
int index,
java.lang.String value)
@Deprecated
public static void setValue(org.openqa.selenium.WebElement element,
java.lang.String value)
@Deprecated public static boolean isJQueryAvailable()
@Deprecated public static void click(org.openqa.selenium.By by)
@Deprecated public static void callOnClick(org.openqa.selenium.By by)
@Deprecated
public static void click(org.openqa.selenium.By by,
int index)
by - selector to match elementindex - 0..Njava.lang.IllegalArgumentException - if index is bigger than number of matched elements.@Deprecated public static void triggerChangeEvent(org.openqa.selenium.By by)
@Deprecated
public static void triggerChangeEvent(org.openqa.selenium.By by,
int index)
@Deprecated public static void scrollTo(org.openqa.selenium.By element)
@Deprecated public static java.lang.String getSelectedValue(org.openqa.selenium.By selectField)
@Deprecated public static java.lang.String getSelectedText(org.openqa.selenium.By selectField)
public static org.openqa.selenium.support.ui.Select select(org.openqa.selenium.By selectField)
@Deprecated
public static void selectOption(org.openqa.selenium.By selectField,
java.lang.String value)
@Deprecated
public static void selectOptionByText(org.openqa.selenium.By selectField,
java.lang.String text)
@Deprecated public static boolean existsAndVisible(org.openqa.selenium.By selector)
@Deprecated public static void followLink(org.openqa.selenium.By selector)
@Deprecated public static ShouldableWebElement assertChecked(org.openqa.selenium.By criteria)
@Deprecated public static ShouldableWebElement assertNotChecked(org.openqa.selenium.By criteria)
@Deprecated public static ShouldableWebElement assertDisabled(org.openqa.selenium.By selector)
@Deprecated public static ShouldableWebElement assertEnabled(org.openqa.selenium.By selector)
@Deprecated public static ShouldableWebElement assertSelected(org.openqa.selenium.By selector)
@Deprecated public static ShouldableWebElement assertNotSelected(org.openqa.selenium.By selector)
@Deprecated public static boolean isVisible(org.openqa.selenium.By selector)
@Deprecated public static ShouldableWebElement assertVisible(org.openqa.selenium.By selector)
@Deprecated public static ShouldableWebElement assertHidden(org.openqa.selenium.By selector)
@Deprecated public static ShouldableWebElement assertElement(org.openqa.selenium.By selector, Condition condition)
@Deprecated public static ShouldableWebElement assertElement(org.openqa.selenium.WebElement element, Condition condition)
@Deprecated public static ShouldableWebElement waitFor(org.openqa.selenium.By elementSelector)
@Deprecated public static ShouldableWebElement waitFor(java.lang.String cssSelector)
@Deprecated public static ShouldableWebElement waitFor(org.openqa.selenium.By elementSelector, Condition condition)
@Deprecated public static ShouldableWebElement waitUntil(org.openqa.selenium.By elementSelector, Condition condition)
@Deprecated public static ShouldableWebElement waitUntil(java.lang.String cssSelector, Condition condition)
@Deprecated public static ShouldableWebElement waitUntil(org.openqa.selenium.By elementSelector, int index, Condition condition)
@Deprecated public static ShouldableWebElement waitUntil(java.lang.String cssSelector, int index, Condition condition)
@Deprecated public static ShouldableWebElement waitFor(org.openqa.selenium.By elementSelector, Condition condition, long timeoutMs)
@Deprecated public static ShouldableWebElement waitUntil(org.openqa.selenium.By elementSelector, Condition condition, long timeoutMs)
@Deprecated public static ShouldableWebElement waitUntil(java.lang.String cssSelector, Condition condition, long timeoutMs)
@Deprecated public static ShouldableWebElement waitFor(org.openqa.selenium.By elementSelector, int index, Condition condition, long timeoutMs)
@Deprecated public static ShouldableWebElement waitUntil(java.lang.String cssSelector, int index, Condition condition, long timeoutMs)
@Deprecated public static ShouldableWebElement waitUntil(org.openqa.selenium.By elementSelector, int index, Condition condition, long timeoutMs)
@Deprecated public static ShouldableWebElement waitUntil(org.openqa.selenium.WebElement parent, org.openqa.selenium.By elementSelector, int index, Condition condition)
@Deprecated public static ShouldableWebElement waitUntil(org.openqa.selenium.WebElement parent, org.openqa.selenium.By elementSelector, int index, Condition condition, long timeoutMs)
@Deprecated public static java.lang.String describeElement(org.openqa.selenium.WebElement element)