- $(WebElement) - Static method in class com.codeborne.selenide.Selenide
-
Wrap standard Selenium WebElement into ShouldableWebElement 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) - 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