| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- #!/usr/bin/env perl
- use Test::More;
- use Test::Exception;
- use Test::Selenium::Remote::Driver;
- use Selenium::Remote::WebElement;
- use Selenium::Remote::Mock::Commands;
- use Selenium::Remote::Mock::RemoteConnection;
- my $find_element = sub {
- my ( undef, $searched_item ) = @_;
- if ( $searched_item->{value} eq 'q' ) {
- return { status => 'OK', return => { ELEMENT => '123456' } };
- }
- if ( $searched_item->{value} eq 'p'
- && $searched_item->{using} eq 'class name' )
- {
- return { status => 'OK', return => { ELEMENT => '123457' } };
- }
- if ( $searched_item->{value} eq '//body' && $searched_item->{using} eq 'xpath') {
- return { status => 'OK', return => { ELEMENT => '123458' } };
- }
- return { status => 'NOK', return => 0, error => 'element not found' };
- };
- my $find_child_element = sub {
- my ( $session_object, $searched_item ) = @_;
- my $elem_id = $session_object->{id};
- if ( $elem_id == 1 && $searched_item->{value} eq 'p' ) {
- if ( $searched_item->{using} eq 'class name' ) {
- return { status => 'OK', return => { ELEMENT => '11223344' } };
- }
- if ( $searched_item->{using} eq 'xpath' ) {
- return { status => 'OK',
- return => [ { ELEMENT => '112' }, { ELEMENT => '113' } ] };
- }
- }
- return {
- status => 'NOK', return => 0,
- error => 'child element not found'
- };
- };
- my $find_elements = sub {
- my ( undef, $searched_expr ) = @_;
- if ( $searched_expr->{value} eq 'abc'
- && $searched_expr->{using} eq 'xpath' )
- {
- return { status => 'OK',
- return => [ { ELEMENT => '123456' }, { ELEMENT => '12341234' } ] };
- }
- };
- my $send_keys = sub {
- my ( $session_object, $val ) = @_;
- my $keys = shift @{ $val->{value} };
- return { status => 'OK', return => 1 } if ( $keys =~ /abc|def/ );
- return { status => 'NOK', return => 0, error => 'cannot send keys' };
- };
- my $get_text = sub {
- my ($session_object) =@_;
- return 'abc' if ($session_object->{id} eq '123456');
- return 'def' if ($session_object->{id} eq '123457');
- return 'this output matches' if ($session_object->{id} eq '123458');
- return;
- };
- my $get_attr = sub {
- my ($session_object) = @_;
- return 'foo';
- };
- my $spec = {
- findElement => $find_element,
- findChildElement => $find_child_element,
- getPageSource => sub { return 'this output matches regex'},
- findElements => $find_elements,
- findChildElements => $find_child_element,
- getElementText => $get_text,
- sendKeysToElement => $send_keys,
- getElementAttribute => $get_attr,
- clickElement => sub { return { status => 'OK', return => 1 }; },
- clearElement => sub { return { status => 'OK', return => 1 }; },
- isElementDisplayed => sub { return { status => 'OK', return => 1 }; },
- isElementEnabled => sub { return { status => 'OK', return => 1 }; },
- };
- my $mock_commands = Selenium::Remote::Mock::Commands->new;
- my $successful_driver =
- Test::Selenium::Remote::Driver->new(
- remote_conn => Selenium::Remote::Mock::RemoteConnection->new( spec => $spec, mock_cmds => $mock_commands ),
- commands => $mock_commands,
- );
- # find element ok tests
- $successful_driver->find_element_ok('q','find_element_ok works');
- $successful_driver->default_finder('class');
- $successful_driver->find_element_ok('p','find_element_ok with a locator works');
- $successful_driver->default_finder('xpath');
- dies_ok { $successful_driver->find_element_ok('notq') } 'find_element_ok dies if element not found';
- $successful_driver->find_elements_ok('abc','find_elements_ok works');
- # find child element ok tests
- $successful_driver->find_child_elements_ok({id => 1},'p','find_child_elements_ok works');
- $successful_driver->find_child_element_ok({id => 1},'p','class','find_child_element_ok with a locator works');
- dies_ok{ $successful_driver->find_child_element_ok({id => 1200}) } 'find_child_element_ok dies if the element is not found';
- # find no element ok test
- $successful_driver->find_no_element_ok('notq','xpath','find_no_element_ok works');
- # body and content function family
- $successful_driver->content_like( qr/matches/, 'content_like works');
- $successful_driver->content_unlike( qr/nomatch/, 'content_unlike works');
- $successful_driver->content_contains( 'matches', 'content_contains works');
- $successful_driver->content_lacks( 'nomatch', 'content_lacks works');
- $successful_driver->body_text_contains( ['match','output'], 'body_text_contains works');
- $successful_driver->body_text_lacks( 'nomatch', 'body_text_lacks works');
- $successful_driver->body_text_like( qr/this/, 'body_text_like works');
- $successful_driver->body_text_unlike( qr/notthis/, 'body_text_unlike works');
- $successful_driver->type_element_ok('q','abc');
- $successful_driver->default_finder('class');
- $successful_driver->type_element_ok('p','def','type_element_ok works with a locator');
- $successful_driver->element_text_is('q','abc','element has a correct text');
- $successful_driver->element_text_is('p','class','def');
- $successful_driver->element_value_is('p','class','foo');
- $successful_driver->click_element_ok('p','class','click_element_ok works');
- $successful_driver->clear_element_ok('q','element is cleared ok');
- $successful_driver->is_element_enabled_ok('p','class','element is enabled');
- $successful_driver->is_element_displayed_ok('q','element is displayed');
- done_testing();
|