Appium

 view release on metacpan or  search on metacpan

lib/Appium/Commands.pm  view on Meta::CPAN

            set_network_connection => {
                method => 'POST',
                url => 'session/:sessionId/network_connection',
                no_content_success => 1
            },
            #     get_available_ime_engines => {
            #         method => 'GET',
            #         url => 'session/:sessionId/ime/available_engines',
            #         no_content_success => 0
            #     },
            #     is_ime_active => {
            #         method => 'GET',
            #         url => 'session/:sessionId/ime/activated',
            #         no_content_success => 0
            #     },
            #     activate_ime_engine => {
            #         method => 'POST',
            #         url => 'session/:sessionId/ime/activate',
            #         no_content_success => 1
            #     },
            #     deactivate_ime_engine => {
            #         method => 'POST',
            #         url => 'session/:sessionId/ime/deactivate',
            #         no_content_success => 1
            #     },
            #     get_active_ime_engine => {
            #         method => 'GET',
            #         url => 'session/:sessionId/ime/active_engine',
            #         no_content_success => 0
            #     }
        };

        foreach (keys %$appium_commands) {
            $commands->{$_} = $appium_commands->{$_};
        }

        return $commands;
    }
);


1;

__END__

=pod

=encoding UTF-8

=head1 NAME

Appium::Commands - Appium specific extensions to the Webdriver JSON protocol

=head1 VERSION

version 0.0804

=head1 DESCRIPTION

There's not much to see here. View the source if you'd like to see the
Appium specific endpoints. Otherwise, you might be looking for
L<Appium> or L<Selenium::Remote::Commands>.

=head1 SEE ALSO

Please see those modules/websites for more information related to this module.

=over 4

=item *

L<Appium|Appium>

=item *

L<Selenium::Remote::Commands|Selenium::Remote::Commands>

=back

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website
https://github.com/appium/perl-client/issues

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

=head1 AUTHOR

Daniel Gempesaw <gempesaw@gmail.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Daniel Gempesaw.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut



( run in 0.852 second using v1.01-cache-2.11-cpan-99c4e6809bf )