- $(WebElement) - Static method in class com.codeborne.selenide.Selenide
-
Wrap standard Selenium WebElement into SelenideElement to use additional methods like shouldHave(), selectOption() etc.
- $(String) - Static method in class com.codeborne.selenide.Selenide
-
Find the first element matching given CSS selector
- $(By) - Static method in class com.codeborne.selenide.Selenide
-
Find the first element matching given CSS selector
- $(By, int) - Static method in class com.codeborne.selenide.Selenide
-
- $(WebElement, String) - Static method in class com.codeborne.selenide.Selenide
-
Find the first element matching given CSS selector
- $(String, int) - Static method in class com.codeborne.selenide.Selenide
-
Find the Nth element matching given criteria
- $(WebElement, String, int) - Static method in class com.codeborne.selenide.Selenide
-
Find the Nth element matching given criteria
- $(WebElement, By, int) - Static method in class com.codeborne.selenide.Selenide
-
- $(String) - Method in interface com.codeborne.selenide.SelenideElement
-
- $(String, int) - Method in interface com.codeborne.selenide.SelenideElement
-
com.codeborne.selenide.SelenideElement#find(java.lang.String)
- $(By) - Method in interface com.codeborne.selenide.SelenideElement
-
com.codeborne.selenide.SelenideElement#find(java.lang.String)
- $(By, int) - Method in interface com.codeborne.selenide.SelenideElement
-
com.codeborne.selenide.SelenideElement#find(java.lang.String)
- $$(Collection<? extends WebElement>) - Static method in class com.codeborne.selenide.Selenide
-
- $$(String) - Static method in class com.codeborne.selenide.Selenide
-
Find all elements matching given CSS selector.
- $$(By) - Static method in class com.codeborne.selenide.Selenide
-
Find all elements matching given CSS selector.
- $$(WebElement, String) - Static method in class com.codeborne.selenide.Selenide
-
Find all elements matching given CSS selector inside given parent element
Methods returns an ElementsCollection which is a list of WebElement objects that can be iterated,
and at the same time is implementation of WebElement interface, meaning that you can call methods .sendKeys(), click() etc.
- $$(WebElement, By) - Static method in class com.codeborne.selenide.Selenide
-
Find all elements matching given criteria inside given parent element
- $$(String) - Method in interface com.codeborne.selenide.SelenideElement
-
com.codeborne.selenide.SelenideElement#findAll(java.lang.String)
- $$(By) - Method in interface com.codeborne.selenide.SelenideElement
-
com.codeborne.selenide.SelenideElement#findAll(java.lang.String)