Interface SelenideElement
-
- All Superinterfaces:
org.openqa.selenium.interactions.internal.Locatable,org.openqa.selenium.interactions.Locatable,org.openqa.selenium.SearchContext,org.openqa.selenium.TakesScreenshot,org.openqa.selenium.WebElement,org.openqa.selenium.WrapsDriver,org.openqa.selenium.internal.WrapsElement,org.openqa.selenium.WrapsElement
public interface SelenideElement extends org.openqa.selenium.WebElement, org.openqa.selenium.WrapsDriver, org.openqa.selenium.internal.WrapsElement, org.openqa.selenium.interactions.internal.Locatable, org.openqa.selenium.TakesScreenshotWrapper aroundWebElementwith additional methods likeshouldBe(Condition...)andshouldHave(Condition...)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SelenideElement$(java.lang.String cssSelector)ATTENTION! This method doesn't start any search yet! Same asfind(String)SelenideElement$(java.lang.String cssSelector, int index)ATTENTION! This method doesn't start any search yet! Same asfind(String, int)SelenideElement$(org.openqa.selenium.By selector)ATTENTION! This method doesn't start any search yet! Same asfind(String)SelenideElement$(org.openqa.selenium.By selector, int index)ATTENTION! This method doesn't start any search yet! Same asfind(String, int)ElementsCollection$$(java.lang.String cssSelector)ATTENTION! This method doesn't start any search yet! Same asfindAll(String)ElementsCollection$$(org.openqa.selenium.By selector)Same asfindAll(By)ElementsCollection$$x(java.lang.String xpath)Short form ofwebDriver.findElements(thisElement, By.xpath(xpath))SelenideElement$x(java.lang.String xpath)Locates the first matching element inside given element using xpath locatorSelenideElement$x(java.lang.String xpath, int index)Locates the Nth matching element inside given element using xpath locatorSelenideElementappend(java.lang.String text)Append given test to the text field and trigger "change" event.java.lang.Stringattr(java.lang.String attributeName)Get the attribute of the element.voidclick()Click the elementvoidclick(int offsetX, int offsetY)Click the element with a relative offset from the center of the elementSelenideElementclosest(java.lang.String tagOrClass)Locates closes ancestor element matching given criteria ATTENTION! This method doesn't start any search yet! For example, $("td").closest("table") could give some "table".SelenideElementcontextClick()Click with right mouse button on this elementjava.lang.Stringdata(java.lang.String dataAttributeName)Get value of attribute "data-dataAttributeName"SelenideElementdoubleClick()Double click the elementjava.io.Filedownload()Download file linked by "href" attribute of this elementjava.io.Filedownload(long timeout)Download file linked by "href" attribute of this element or any file to which this element redirects.SelenideElementdragAndDropTo(java.lang.String targetCssSelector)Drag and drop this element to the target Before dropping, waits until target element gets visible.SelenideElementdragAndDropTo(org.openqa.selenium.WebElement target)Drag and drop this element to the target Before dropping, waits until target element gets visible.SelenideElementexecute(Command<SelenideElement> command)Execute custom implemented commandbooleanexists()Checks if element exists true on the current page.SelenideElementfind(java.lang.String cssSelector)Locates the first matching element inside given elementSelenideElementfind(java.lang.String cssSelector, int index)Locates the Nth matching element inside given elementSelenideElementfind(org.openqa.selenium.By selector)ATTENTION! This method doesn't start any search yet! Same asfind(String)SelenideElementfind(org.openqa.selenium.By selector, int index)ATTENTION! This method doesn't start any search yet! Same asfind(String, int)ElementsCollectionfindAll(java.lang.String cssSelector)Short form ofwebDriver.findElements(thisElement, By.cssSelector(cssSelector))ElementsCollectionfindAll(org.openqa.selenium.By selector)Short form ofwebDriver.findElements(thisElement, selector)java.lang.StringgetSearchCriteria()Return criteria by which this element is locatedSelenideElementgetSelectedOption()Find (first) selected option from this select fieldElementsCollectiongetSelectedOptions()Find all selected options from this select fieldjava.lang.StringgetSelectedText()Get text of selected option in select fieldjava.lang.StringgetSelectedValue()Get value of selected option in select fieldjava.lang.StringgetText()Get the visible text of this element, including sub-elements without leading/trailing whitespace.java.lang.StringgetValue()Get the "value" attribute of the elementorg.openqa.selenium.WebElementgetWrappedElement()booleanhas(Condition condition)immediately returns true if element matches given condition Method doesn't wait! WARNING: This method can help implementing crooks, but it is not needed for typical ui tests.SelenideElementhover()Emulate "mouseOver" event.java.lang.StringinnerHtml()Get the HTML code of the element with children.java.lang.StringinnerText()Get the text code of the element with children.booleanis(Condition condition)immediately returns true if element matches given condition Method doesn't wait! WARNING: This method can help implementing crooks, but it is not needed for typical ui tests.booleanisDisplayed()Check if this element exists and visible.booleanisImage()Check if image is properly loaded.SelenideElementlastChild()Get last child element of this element ATTENTION! this method doesn't start any search yet! For example, $("tr").lastChild(); could give the last "td".java.lang.Stringname()Get the "name" attribute of the elementSelenideElementparent()Get parent element of this element ATTENTION! This method doesn't start any search yet! For example, $("td").parent() could give some "tr".SelenideElementpressEnter()Press ENTER.SelenideElementpressEscape()Press ESCAPE.SelenideElementpressTab()Press TAB.java.io.Filescreenshot()Take screenshot of this elementjava.awt.image.BufferedImagescreenshotAsImage()Take screenshot of this elementSelenideElementscrollIntoView(boolean alignToTop)Ask browser to scrolls the element on which it's called into the visible area of the browser window.SelenideElementscrollIntoView(java.lang.String scrollIntoViewOptions)Ask browser to scrolls the element on which it's called into the visible area of the browser window.SelenideElementscrollTo()Ask browser to scroll to this elementvoidselectOption(int... index)Select an option from dropdown list (by index)voidselectOption(java.lang.String... text)Select an option from dropdown list (by text)voidselectOptionByValue(java.lang.String... value)Select an option from dropdown list (by value)voidselectOptionContainingText(java.lang.String text)Select an option from dropdown list that contains given textSelenideElementselectRadio(java.lang.String value)Select radio buttonSelenideElementsetSelected(boolean selected)Set checkbox state to CHECKED or UNCHECKED.SelenideElementsetValue(java.lang.String text)Implementation details:SelenideElementshould(Condition... condition)Checks that given element meets all of given conditions.SelenideElementshouldBe(Condition... condition)Synonym for #should.SelenideElementshouldHave(Condition... condition)Synonym for #should.SelenideElementshouldNot(Condition... condition)Checks that given element does not meet given conditions.SelenideElementshouldNotBe(Condition... condition)Synonym for #shouldNot.SelenideElementshouldNotHave(Condition... condition)Synonym for #shouldNot.java.lang.Stringtext()Short form of getText()java.lang.StringtoString()Displays WebElement in human-readable format.org.openqa.selenium.WebElementtoWebElement()java.io.FileuploadFile(java.io.File... file)Upload file into file upload field.java.io.FileuploadFromClasspath(java.lang.String... fileName)Upload file into file upload field.java.lang.Stringval()Get the "value" attribute of the element Same as #getValue()SelenideElementval(java.lang.String text)Same as #setValue(java.lang.String)SelenideElementwaitUntil(Condition condition, long timeoutMilliseconds)Wait until given element meets given conditions.SelenideElementwaitUntil(Condition condition, long timeoutMilliseconds, long pollingIntervalMilliseconds)Wait until given element meets given conditions.SelenideElementwaitWhile(Condition condition, long timeoutMilliseconds)Wait until given element does not meet given conditions.SelenideElementwaitWhile(Condition condition, long timeoutMilliseconds, long pollingIntervalMilliseconds)Wait until given element does not meet given conditions.
-
-
-
Method Detail
-
setValue
SelenideElement setValue(java.lang.String text)
Implementation details:If Configuration.versatileSetValue is true, can work as 'selectOptionByValue', 'selectRadio'
If Configuration.fastSetValue is true, sets value by javascript instead of using Selenium built-in "sendKey" function and trigger "focus", "keydown", "keypress", "input", "keyup", "change" events.
In other case behavior will be:
1. WebElement.clear() 2. WebElement.sendKeys(text) 3. Trigger change event
- Parameters:
text- Any text to enter into the text field or set by value for select/radio.- See Also:
SetValue
-
val
SelenideElement val(java.lang.String text)
Same as #setValue(java.lang.String)- See Also:
Val
-
append
SelenideElement append(java.lang.String text)
Append given test to the text field and trigger "change" event.Implementation details: This is the same as
1. WebElement.sendKeys(text) 2. Trigger change event
- Parameters:
text- Any text to append into the text field.- See Also:
Append
-
pressEnter
SelenideElement pressEnter()
Press ENTER. Useful for input field and textareas:$("query").val("Aikido techniques").pressEnter();Implementation details: Check that element is displayed and executeWebElement.sendKeys(Keys.ENTER)
- See Also:
PressEnter
-
pressTab
SelenideElement pressTab()
Press TAB. Useful for input field and textareas:$("#to").val("stiven@seagal.com").pressTab();Implementation details: Check that element is displayed and executeWebElement.sendKeys(Keys.TAB)
- See Also:
PressTab
-
pressEscape
SelenideElement pressEscape()
Press ESCAPE. Useful for input field and textareas:$(".edit").click().pressEscape();Implementation details: Check that element is displayed and executeWebElement.sendKeys(Keys.ESCAPE)
- See Also:
PressEscape
-
getText
java.lang.String getText()
Get the visible text of this element, including sub-elements without leading/trailing whitespace. NB! For "select", returns text(s) of selected option(s).- Specified by:
getTextin interfaceorg.openqa.selenium.WebElement- Returns:
- The innerText of this element
- See Also:
GetText
-
text
java.lang.String text()
Short form of getText()- See Also:
WebElement.getText(),GetText
-
innerText
java.lang.String innerText()
Get the text code of the element with children. Short form of getAttribute("textContent") or getAttribute("innerText") depending on browser.- See Also:
GetInnerText
-
innerHtml
java.lang.String innerHtml()
Get the HTML code of the element with children. Short form of getAttribute("innerHTML")- See Also:
GetInnerHtml
-
attr
java.lang.String attr(java.lang.String attributeName)
Get the attribute of the element. Synonym for getAttribute(String).- Returns:
- null if attribute is missing
- See Also:
GetAttribute
-
name
java.lang.String name()
Get the "name" attribute of the element- Returns:
- attribute "name" value or null if attribute is missing
- See Also:
GetName
-
val
java.lang.String val()
Get the "value" attribute of the element Same as #getValue()- Returns:
- attribute "value" value or null if attribute is missing
- See Also:
Val
-
getValue
java.lang.String getValue()
Get the "value" attribute of the element- Returns:
- attribute "value" value or null if attribute is missing
- Since:
- 3.1
- See Also:
GetValue
-
selectRadio
SelenideElement selectRadio(java.lang.String value)
Select radio button- Parameters:
value- value of radio button to select- Returns:
- selected "input type=radio" element
- See Also:
SelectRadio
-
data
java.lang.String data(java.lang.String dataAttributeName)
Get value of attribute "data-dataAttributeName"- See Also:
GetDataAttribute
-
exists
boolean exists()
Checks if element exists true on the current page.- Returns:
- false if element is not found, browser is closed or any WebDriver exception happened
- See Also:
Exists
-
isDisplayed
boolean isDisplayed()
Check if this element exists and visible.- Specified by:
isDisplayedin interfaceorg.openqa.selenium.WebElement- Returns:
- false if element does not exists, is invisible, browser is closed or any WebDriver exception happened.
- See Also:
IsDisplayed
-
is
boolean is(Condition condition)
immediately returns true if element matches given condition Method doesn't wait! WARNING: This method can help implementing crooks, but it is not needed for typical ui tests.- See Also:
has(com.codeborne.selenide.Condition),Matches
-
has
boolean has(Condition condition)
immediately returns true if element matches given condition Method doesn't wait! WARNING: This method can help implementing crooks, but it is not needed for typical ui tests.- See Also:
is(com.codeborne.selenide.Condition),Matches
-
setSelected
SelenideElement setSelected(boolean selected)
Set checkbox state to CHECKED or UNCHECKED.- Parameters:
selected- true for checked and false for unchecked- See Also:
SetSelected
-
should
SelenideElement should(Condition... condition)
Checks that given element meets all of given conditions.
IMPORTANT: If element does not match then conditions immediately, waits up to 4 seconds until element meets the conditions. It's extremely useful for dynamic content.
Timeout is configurable via Configuration#timeout
For example:
$("#errorMessage").should(appear);- Returns:
- Given element, useful for chaining:
$("#errorMessage").should(appear).shouldBe(enabled); - See Also:
Configuration.timeout,Should
-
shouldHave
SelenideElement shouldHave(Condition... condition)
Synonym for #should. Useful for better readability.
For example:
$("#errorMessage").shouldHave(text("Hello"), text("World"));
-
shouldBe
SelenideElement shouldBe(Condition... condition)
Synonym for #should. Useful for better readability.
For example:
$("#errorMessage").shouldBe(visible, enabled);
-
shouldNot
SelenideElement shouldNot(Condition... condition)
Checks that given element does not meet given conditions.
IMPORTANT: If element does match the conditions, waits up to 4 seconds until element does not meet the conditions. It's extremely useful for dynamic content.
Timeout is configurable via Configuration#timeout
For example:
$("#errorMessage").should(exist);- See Also:
Configuration.timeout,ShouldNot
-
shouldNotHave
SelenideElement shouldNotHave(Condition... condition)
Synonym for #shouldNot. Useful for better readability.
For example:
$("#errorMessage").shouldNotHave(text("Exception"), text("Error"));
-
shouldNotBe
SelenideElement shouldNotBe(Condition... condition)
Synonym for #shouldNot. Useful for better readability.
For example:
$("#errorMessage").shouldNotBe(visible, enabled);
-
waitUntil
SelenideElement waitUntil(Condition condition, long timeoutMilliseconds)
Wait until given element meets given conditions.
IMPORTANT: in most cases you don't need this method because all should- methods wait too. You need to use #waitUntil or #waitWhile methods only if you need another timeout.
- Parameters:
condition- e.g. enabled, visible, text() and so ontimeoutMilliseconds- timeout in milliseconds.- See Also:
ShouldBe
-
waitUntil
SelenideElement waitUntil(Condition condition, long timeoutMilliseconds, long pollingIntervalMilliseconds)
Wait until given element meets given conditions.
IMPORTANT: in most cases you don't need this method because all should- methods wait too. You need to use #waitUntil or #waitWhile methods only if you need another timeout.
- Parameters:
condition- e.g. enabled, visible, text() and so ontimeoutMilliseconds- timeout in milliseconds.pollingIntervalMilliseconds- interval in milliseconds, when checking condition- See Also:
ShouldBe
-
waitWhile
SelenideElement waitWhile(Condition condition, long timeoutMilliseconds)
Wait until given element does not meet given conditions.
IMPORTANT: in most cases you don't need this method because all shouldNot- methods wait too. You need to use #waitUntil or #waitWhile methods only if you need another timeout.
- Parameters:
condition- e.g. enabled, visible, text() and so ontimeoutMilliseconds- timeout in milliseconds.- See Also:
ShouldNotBe
-
waitWhile
SelenideElement waitWhile(Condition condition, long timeoutMilliseconds, long pollingIntervalMilliseconds)
Wait until given element does not meet given conditions.
IMPORTANT: in most cases you don't need this method because all shouldNot- methods wait too. You need to use #waitUntil or #waitWhile methods only if you need another timeout.
- Parameters:
condition- e.g. enabled, visible, text() and so ontimeoutMilliseconds- timeout in milliseconds.pollingIntervalMilliseconds- interval in milliseconds, when checking condition- See Also:
ShouldNotBe
-
toString
java.lang.String toString()
Displays WebElement in human-readable format. Useful for logging and debugging. Not recommended to use for test verifications.- Overrides:
toStringin classjava.lang.Object- Returns:
- e.g. Order has been confirmed
- See Also:
ToString
-
parent
SelenideElement parent()
Get parent element of this element ATTENTION! This method doesn't start any search yet! For example, $("td").parent() could give some "tr".- Returns:
- Parent element
- See Also:
GetParent
-
lastChild
SelenideElement lastChild()
Get last child element of this element ATTENTION! this method doesn't start any search yet! For example, $("tr").lastChild(); could give the last "td".
-
closest
SelenideElement closest(java.lang.String tagOrClass)
Locates closes ancestor element matching given criteria ATTENTION! This method doesn't start any search yet! For example, $("td").closest("table") could give some "table".- Parameters:
tagOrClass- Either HTML tag or CSS class. E.g. "form" or ".active".- Returns:
- Matching ancestor element
- See Also:
GetClosest
-
find
SelenideElement find(java.lang.String cssSelector)
Locates the first matching element inside given element
ATTENTION! This method doesn't start any search yet!Short form of
webElement.findElement(By.cssSelector(cssSelector))- See Also:
Find
-
find
SelenideElement find(java.lang.String cssSelector, int index)
Locates the Nth matching element inside given element
ATTENTION! This method doesn't start any search yet!- See Also:
Find
-
find
SelenideElement find(org.openqa.selenium.By selector)
ATTENTION! This method doesn't start any search yet! Same asfind(String)- See Also:
Find
-
find
SelenideElement find(org.openqa.selenium.By selector, int index)
ATTENTION! This method doesn't start any search yet! Same asfind(String, int)- See Also:
Find
-
$
SelenideElement $(java.lang.String cssSelector)
ATTENTION! This method doesn't start any search yet! Same asfind(String)- See Also:
Find
-
$
SelenideElement $(java.lang.String cssSelector, int index)
ATTENTION! This method doesn't start any search yet! Same asfind(String, int)- See Also:
Find
-
$
SelenideElement $(org.openqa.selenium.By selector)
ATTENTION! This method doesn't start any search yet! Same asfind(String)- See Also:
Find
-
$
SelenideElement $(org.openqa.selenium.By selector, int index)
ATTENTION! This method doesn't start any search yet! Same asfind(String, int)- See Also:
Find
-
$x
SelenideElement $x(java.lang.String xpath)
Locates the first matching element inside given element using xpath locator
ATTENTION! This method doesn't start any search yet!Short form of
webElement.findElement(By.xpath(xpathLocator))- See Also:
FindByXpath
-
$x
SelenideElement $x(java.lang.String xpath, int index)
Locates the Nth matching element inside given element using xpath locator
ATTENTION! This method doesn't start any search yet!- See Also:
FindByXpath
-
findAll
ElementsCollection findAll(java.lang.String cssSelector)
Short form of
ATTENTION! This method doesn't start any search yet!webDriver.findElements(thisElement, By.cssSelector(cssSelector))For example,
$("#multirowTable").findAll("tr.active").shouldHave(size(2));- Returns:
- list of elements inside given element matching given CSS selector
- See Also:
FindAll
-
findAll
ElementsCollection findAll(org.openqa.selenium.By selector)
Short form of
ATTENTION! This method doesn't start any search yet!webDriver.findElements(thisElement, selector)For example,
$("#multirowTable").findAll(By.className("active")).shouldHave(size(2));- Returns:
- list of elements inside given element matching given criteria
- See Also:
FindAll
-
$$
ElementsCollection $$(java.lang.String cssSelector)
ATTENTION! This method doesn't start any search yet! Same asfindAll(String)
-
$$
ElementsCollection $$(org.openqa.selenium.By selector)
Same asfindAll(By)
-
$$x
ElementsCollection $$x(java.lang.String xpath)
Short form of
ATTENTION! This method doesn't start any search yet!webDriver.findElements(thisElement, By.xpath(xpath))For example,
$("#multirowTable").$$x("./input").shouldHave(size(2));- Returns:
- list of elements inside given element matching given xpath locator
- See Also:
FindAllByXpath
-
uploadFromClasspath
java.io.File uploadFromClasspath(java.lang.String... fileName)
Upload file into file upload field. File is searched from classpath.
Multiple file upload is also supported. Just pass as many file names as you wish.
- Parameters:
fileName- name of the file or the relative path in classpath e.g. "files/1.pfd"- Returns:
- the object of the first file uploaded
- Throws:
java.lang.IllegalArgumentException- if any of the files is not found- See Also:
UploadFileFromClasspath
-
uploadFile
java.io.File uploadFile(java.io.File... file)
Upload file into file upload field.
Multiple file upload is also supported. Just pass as many files as you wish.
- Parameters:
file- file object(s)- Returns:
- the object of the first file uploaded
- Throws:
java.lang.IllegalArgumentException- if any of the files is not found, or other errors- See Also:
UploadFile
-
selectOption
void selectOption(int... index)
Select an option from dropdown list (by index)- Parameters:
index- 0..N (0 means first option)- See Also:
SelectOptionByTextOrIndex
-
selectOption
void selectOption(java.lang.String... text)
Select an option from dropdown list (by text)- Parameters:
text- visible text of option- See Also:
SelectOptionByTextOrIndex
-
selectOptionContainingText
void selectOptionContainingText(java.lang.String text)
Select an option from dropdown list that contains given text- Parameters:
text- substring of visible text of option- See Also:
SelectOptionContainingText
-
selectOptionByValue
void selectOptionByValue(java.lang.String... value)
Select an option from dropdown list (by value)- Parameters:
value- "value" attribute of option- See Also:
SelectOptionByValue
-
getSelectedOption
SelenideElement getSelectedOption() throws org.openqa.selenium.NoSuchElementException
Find (first) selected option from this select field- Returns:
- WebElement for selected <option> element
- Throws:
org.openqa.selenium.NoSuchElementException- if no options are selected- See Also:
GetSelectedOption
-
getSelectedOptions
ElementsCollection getSelectedOptions()
Find all selected options from this select field- Returns:
- ElementsCollection for selected <option> elements (empty list if no options are selected)
- See Also:
GetSelectedOptions
-
getSelectedValue
java.lang.String getSelectedValue()
Get value of selected option in select field- See Also:
GetSelectedValue
-
getSelectedText
java.lang.String getSelectedText()
Get text of selected option in select field- See Also:
GetSelectedText
-
scrollTo
SelenideElement scrollTo()
Ask browser to scroll to this element- See Also:
ScrollTo
-
scrollIntoView
SelenideElement scrollIntoView(boolean alignToTop)
Ask browser to scrolls the element on which it's called into the visible area of the browser window.If alignToTop boolean value is true - the top of the element will be aligned to the top.
If alignToTop boolean value is false - the bottom of the element will be aligned to the bottom. Usage:
element.scrollIntoView(true); // Corresponds to scrollIntoViewOptions: {block: "start", inline: "nearest"} element.scrollIntoView(false); // Corresponds to scrollIntoViewOptions: {block: "end", inline: "nearest"}- Parameters:
alignToTop- boolean value that indicate how element will be aligned to the visible area of the scrollable ancestor.- See Also:
ScrollIntoView, Web API reference
-
scrollIntoView
SelenideElement scrollIntoView(java.lang.String scrollIntoViewOptions)
Ask browser to scrolls the element on which it's called into the visible area of the browser window.scrollIntoViewOptions: * behavior (optional) - Defines the transition animation 1. auto (default) 2. instant 3. smooth * block (optional) 1. start 2. center (default) 3. end 4. nearest * inline 1. start 2. center 3. end 4. nearest (default)Usage:
element.scrollIntoView("{block: \"end\"}"); element.scrollIntoView("{behavior: \"instant\", block: \"end\", inline: \"nearest\"}");- Parameters:
scrollIntoViewOptions- is an object with the align properties: behavior, block and inline.- See Also:
ScrollIntoView, Web API reference
-
download
java.io.File download() throws java.io.FileNotFoundExceptionDownload file linked by "href" attribute of this element- Throws:
java.lang.RuntimeException- if 50x status code was returned from serverjava.io.FileNotFoundException- if 40x status code was returned from server- See Also:
DownloadFile
-
download
java.io.File download(long timeout) throws java.io.FileNotFoundExceptionDownload file linked by "href" attribute of this element or any file to which this element redirects.- Parameters:
timeout- download operations timeout.- Throws:
java.lang.RuntimeException- if 50x status code was returned from serverjava.io.FileNotFoundException- if 40x status code was returned from server- See Also:
DownloadFile
-
getSearchCriteria
java.lang.String getSearchCriteria()
Return criteria by which this element is located- Returns:
- e.g. "#multirowTable.findBy(text 'INVALID-TEXT')/valid-selector"
-
toWebElement
org.openqa.selenium.WebElement toWebElement()
- Returns:
- the original Selenium WebElement wrapped by this object
- See Also:
ToWebElement
-
getWrappedElement
org.openqa.selenium.WebElement getWrappedElement()
- Specified by:
getWrappedElementin interfaceorg.openqa.selenium.WrapsElement- Returns:
- Underlying
WebElement - See Also:
GetWrappedElement
-
click
void click()
Click the elementBy default it uses default Selenium method click.
But it uses JavaScript method to click if
com.codeborne.selenide.Configuration#clickViaJsis defined. It may be helpful for testing in Internet Explorer where native click doesn't always work correctly.- Specified by:
clickin interfaceorg.openqa.selenium.WebElement- See Also:
Click
-
click
void click(int offsetX, int offsetY)Click the element with a relative offset from the center of the element
-
contextClick
SelenideElement contextClick()
Click with right mouse button on this element- Returns:
- this element
- See Also:
ContextClick
-
doubleClick
SelenideElement doubleClick()
Double click the element- Returns:
- this element
- See Also:
DoubleClick
-
hover
SelenideElement hover()
Emulate "mouseOver" event. In other words, move mouse cursor over this element (without clicking it).- Returns:
- this element
- See Also:
Hover
-
dragAndDropTo
SelenideElement dragAndDropTo(java.lang.String targetCssSelector)
Drag and drop this element to the target Before dropping, waits until target element gets visible.- Parameters:
targetCssSelector- CSS selector defining target element- Returns:
- this element
- See Also:
DragAndDropTo
-
dragAndDropTo
SelenideElement dragAndDropTo(org.openqa.selenium.WebElement target)
Drag and drop this element to the target Before dropping, waits until target element gets visible.- Parameters:
target- target element- Returns:
- this element
- See Also:
DragAndDropTo
-
execute
SelenideElement execute(Command<SelenideElement> command)
Execute custom implemented command
-
isImage
boolean isImage()
Check if image is properly loaded.- Throws:
java.lang.IllegalArgumentException- if argument is not an "img" element- Since:
- 2.13
- See Also:
IsImage
-
screenshot
java.io.File screenshot()
Take screenshot of this element- Returns:
- file with screenshot (*.png)
- See Also:
TakeScreenshot
-
screenshotAsImage
java.awt.image.BufferedImage screenshotAsImage()
Take screenshot of this element- Returns:
- buffered image with screenshot
- See Also:
TakeScreenshotAsImage
-
-