Scroll to navigation

Weasel::FindExpanders::Dojo(3pm) User Contributed Perl Documentation Weasel::FindExpanders::Dojo(3pm)

NAME

Weasel::FindExpanders::Dojo - Find Dojo Expanders.

VERSION

0.02

SYNOPSIS

  use Weasel::FindExpanders::Dojo;

  my $button = $session->find($session->page, "@button|{text=>\"whatever\"}");

DESCRIPTION

button_expander
Finds button tags or input tags of types submit, reset, button and image.

Criteria: * 'id' * 'name' * 'text' matches content between open and close tag

option_expander
Finds options for dijit.form.Select, after the drop down has been invoked at least once (the options don't exist in the DOM tree before that point).

Because of that, it's best to search the options through the "select" tag, which offers a "find_option" method which specifically compensates for the issue.

Additionally, it's impossible to search options by the value being submitted; these don't exist in the DOM tree unlike with the "option" tags of "select"s.

Criteria: * 'id' * 'text' matches the visible description of the item

2018-06-14 perl v5.26.2