Module thirtyfour_query::conditions[][src]

Functions

element_has_attribute

Predicate that returns true for elements that have the specified attribute with the specified value. See the Needle documentation for more details on text matching rules.

element_has_attributes

Predicate that returns true for elements that have all of the specified attributes with the specified values. See the Needle documentation for more details on text matching rules.

element_has_class

Predicate that returns true for elements that have the specified class name. See the Needle documentation for more details on text matching rules. In particular, it is recommended to use StringMatch or Regex to perform a whole-word search.

element_has_css_properties

Predicate that returns true for elements that have all of the specified CSS properties with the specified values. See the Needle documentation for more details on text matching rules.

element_has_css_property

Predicate that returns true for elements that have the specified CSS property with the specified value. See the Needle documentation for more details on text matching rules.

element_has_properties

Predicate that returns true for elements that have all of the specified properties with the specified value. See the Needle documentation for more details on text matching rules.

element_has_property

Predicate that returns true for elements that have the specified property with the specified value. See the Needle documentation for more details on text matching rules.

element_has_text

Predicate that returns true for elements that have the specified text. See the Needle documentation for more details on text matching rules.

element_has_value

Predicate that returns true for elements that have the specified value. See the Needle documentation for more details on text matching rules.

element_is_clickable

Predicate that returns true for elements that are clickable.

element_is_displayed

Predicate that returns true for elements that are displayed.

element_is_enabled

Predicate that returns true for elements that are enabled.

element_is_not_clickable

Predicate that returns true for elements that are not clickable.

element_is_not_displayed

Predicate that returns true for elements that are not displayed.

element_is_not_enabled

Predicate that returns true for elements that are not enabled.

element_is_not_selected

Predicate that returns true for elements that are not selected.

element_is_selected

Predicate that returns true for elements that are selected.

element_lacks_attribute

Predicate that returns true for elements that lack the specified attribute with the specified value. See the Needle documentation for more details on text matching rules.

element_lacks_attributes

Predicate that returns true for elements that do not have any of the specified attributes with the specified values. See the Needle documentation for more details on text matching rules.

element_lacks_class

Predicate that returns true for elements that do not contain the specified class name. See the Needle documentation for more details on text matching rules. In particular, it is recommended to use StringMatch or Regex to perform a whole-word search.

element_lacks_css_properties

Predicate that returns true for elements that do not have any of the specified CSS properties with the specified values. See the Needle documentation for more details on text matching rules.

element_lacks_css_property

Predicate that returns true for elements that lack the specified CSS property with the specified value. See the Needle documentation for more details on text matching rules.

element_lacks_properties

Predicate that returns true for elements that do not have any of the specified properties with the specified values. See the Needle documentation for more details on text matching rules.

element_lacks_property

Predicate that returns true for elements that lack the specified property with the specified value. See the Needle documentation for more details on text matching rules.

element_lacks_text

Predicate that returns true for elements that do not contain the specified text. See the Needle documentation for more details on text matching rules.

element_lacks_value

Predicate that returns true for elements that do not contain the specified value. See the Needle documentation for more details on text matching rules.