| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- package Test::Selenium::Remote::WebElement;
- # ABSTRACT: A sub-class of L<Selenium::Remote::WebElement>, with several test-specific method additions.
- use parent 'Selenium::Remote::WebElement';
- use Moo;
- use Test::Builder;
- use Try::Tiny;
- has _builder => (
- is => 'lazy',
- builder => sub { return Test::Builder->new() },
- handles => [qw/is_eq isnt_eq like unlike ok croak/],
- );
- sub has_args {
- my $self = shift;
- my $fun_name = shift;
- my $hash_fun_args = {
- 'get_attribute' => 1,
- };
- return ($hash_fun_args->{$fun_name} // 0);
- }
- sub _check_method {
- my $self = shift;
- my $method = shift;
- my $method_to_test = shift;
- $method = "get_$method";
- my @args = @_;
- my $rv;
- try {
- my $num_of_args = $self->has_args($method);
- my @r_args = splice (@args,0,$num_of_args);
- $rv = $self->$method(@r_args);
- }
- catch {
- $self->croak($_);
- };
- # +2 because of the delegation on _builder
- local $Test::Builder::Level = $Test::Builder::Level + 2;
- return $self->$method_to_test( $rv, @args );
- }
- sub _check_ok {
- my $self = shift;
- my $meth = shift;
- my $test_name = pop // $meth;
- my $rv;
- try {
- $rv = $self->$meth(@_);
- }
- catch {
- $self->croak($_);
- };
- # +2 because of the delegation on _builder
- local $Test::Builder::Level = $Test::Builder::Level + 2;
- return $self->ok($rv,$test_name,@_);
- }
- sub clear_ok {
- my $self = shift;
- return $self->_check_ok('clear',@_);
- }
- sub click_ok {
- my $self = shift;
- return $self->_check_ok('click',@_);
- }
- sub submit_ok {
- my $self = shift;
- return $self->_check_ok('submit',@_);
- }
- sub is_selected_ok {
- my $self = shift;
- return $self->_check_ok('is_selected',@_);
- }
- sub is_enabled_ok {
- my $self = shift;
- return $self->_check_ok('is_enabled',@_);
- }
- sub is_displayed_ok {
- my $self = shift;
- return $self->_check_ok('is_displayed',@_);
- }
- sub send_keys_ok {
- my $self = shift;
- return $self->_check_ok('send_keys',@_);
- }
- sub text_is {
- my $self = shift;
- return $self->_check_method( 'text', 'is_eq', @_ );
- }
- sub text_isnt {
- my $self = shift;
- return $self->_check_method( 'text', 'isnt_eq', @_ );
- }
- sub text_like {
- my $self = shift;
- return $self->_check_method( 'text', 'like', @_ );
- }
- sub text_unlike {
- my $self = shift;
- return $self->_check_method( 'text', 'unlike', @_ );
- }
- sub tag_name_is {
- my $self = shift;
- return $self->_check_method( 'tag_name', 'is_eq', @_ );
- }
- sub tag_name_isnt {
- my $self = shift;
- return $self->_check_method( 'tag_name', 'isnt_eq', @_ );
- }
- sub tag_name_like {
- my $self = shift;
- return $self->_check_method( 'tag_name', 'like', @_ );
- }
- sub tag_name_unlike {
- my $self = shift;
- return $self->_check_method( 'tag_name', 'unlike', @_ );
- }
- sub value_is {
- my $self = shift;
- return $self->_check_method( 'value', 'is_eq', @_ );
- }
- sub value_isnt {
- my $self = shift;
- return $self->_check_method( 'value', 'isnt_eq', @_ );
- }
- sub value_like {
- my $self = shift;
- return $self->_check_method( 'value', 'like', @_ );
- }
- sub value_unlike {
- my $self = shift;
- return $self->_check_method( 'value', 'unlike', @_ );
- }
- sub attribute_is {
- my $self = shift;
- return $self->_check_method( 'attribute', 'is_eq', @_ );
- }
- sub attribute_isnt {
- my $self = shift;
- return $self->_check_method( 'attribute', 'isnt_eq', @_ );
- }
- sub attribute_like {
- my $self = shift;
- return $self->_check_method( 'attribute', 'like', @_ );
- }
- sub attribute_unlike {
- my $self = shift;
- return $self->_check_method( 'attribute', 'unlike', @_ );
- }
- 1;
- __END__
- =head1 DESCRIPTION
- This is an I<experimental> addition to the Selenium::Remote::Driver
- distribution, and some interfaces may change.
- =head1 METHODS
- All methods from L<Selenium::Remote::WebElement> are available through this
- module, as well as the following test-specific methods. All test names are optional.
- text_is($match_str,$test_name);
- text_isnt($match_str,$test_name);
- text_like($match_re,$test_name);
- text_unlike($match_re,$test_name);
- tag_name_is($match_str,$test_name);
- tag_name_isnt($match_str,$test_name);
- tag_name_like($match_re,$test_name);
- tag_name_unlike($match_re,$test_name);
- value_is($match_str,$test_name);
- value_isnt($match_str,$test_name);
- value_like($match_re,$test_name);
- value_unlike($match_re,$test_name);
- clear_ok($test_name);
- click_ok($test_name);
- submit_ok($test_name);
- is_selected_ok($test_name);
- is_enabled_ok($test_name);
- is_displayed_ok($test_name);
- send_keys_ok($str)
- send_keys_ok($str,$test_name)
- attribute_is($attr_name,$match_str,$test_name); # TODO
- attribute_isnt($attr_name,$match_str,$test_name); # TODO
- attribute_like($attr_name,$match_re,$test_name); # TODO
- attribute_unlike($attr_name,$match_re,$test_name); # TODO
- css_attribute_is($attr_name,$match_str,$test_name); # TODO
- css_attribute_isnt($attr_name,$match_str,$test_name); # TODO
- css_attribute_like($attr_name,$match_re,$test_name); # TODO
- css_attribute_unlike($attr_name,$match_re,$test_name); # TODO
- element_location_is([x,y]) # TODO
- element_location_in_view_is([x,y]) # TODO
- =head1 AUTHORS
- =over 4
- =item *
- Created by: Mark Stosberg <mark@stosberg.org>, but inspired by
- L<Test::WWW::Selenium> and its authors.
- =back
- =head1 COPYRIGHT AND LICENSE
- Copyright (c) 2013 Mark Stosberg
- This program is free software; you can redistribute it and/or
- modify it under the same terms as Perl itself.
|