We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Minium WebElements is for Selenium WebElement as jQuery is for DOM Element.
wd = firefoxDriver(); // ... $(wd, ":text").parents("form").find("h2")
will translate to the following jQuery expression:
$(":text").parents("form").find("h2")
The way Minium interacts with WebElemnts is by using, guess it... Interactions.