Provided by: libweasel-widgets-dojo-perl_0.07-1_all
NAME
Weasel::FindExpanders::Dojo - XPath mnemonic hooks for Dojo 1.x widgets
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