Skip to content
Rui Figueira edited this page Jun 8, 2013 · 1 revision

WebElementsDriver

WebElements

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")

Interactions

The way Minium interacts with WebElemnts is by using, guess it... Interactions.

Clone this wiki locally