Appium

 view release on metacpan or  search on metacpan

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

2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$Appium::Commands::VERSION = '0.0804';
# ABSTRACT: Appium specific extensions to the Webdriver JSON protocol
use Moo;
extends 'https://metacpan.org/pod/Selenium::Remote::Commands">Selenium::Remote::Commands';
 
 
has 'get_cmds' => (
    is => 'lazy',
    builder => sub {
        my ($self) = @_;
        my $commands = $self->SUPER::get_cmds;
 
        my $appium_commands = {
            contexts => {
                method => 'GET',
                url => 'session/:sessionId/contexts',
                no_content_success => 0
            },
            get_current_context => {
                method => 'GET',
                url => 'session/:sessionId/context',



( run in 0.526 second using v1.01-cache-2.11-cpan-d6f9594c0a5 )