Playwright
view release on metacpan or search on metacpan
lib/Playwright/Page.pm view on Meta::CPAN
sub waitForCondition {
my $self = shift;
return $self->_api_request(
args => [@_],
command => 'waitForCondition',
object => $self->{guid},
type => $self->{type}
);
}
sub setViewportSize {
my $self = shift;
return $self->_api_request(
args => [@_],
command => 'setViewportSize',
object => $self->{guid},
type => $self->{type}
);
}
sub goBack {
my $self = shift;
return $self->_api_request(
args => [@_],
command => 'goBack',
object => $self->{guid},
type => $self->{type}
);
}
sub getByLabel {
my $self = shift;
return $self->_api_request(
args => [@_],
command => 'getByLabel',
object => $self->{guid},
type => $self->{type}
);
}
sub hideHighlight {
my $self = shift;
return $self->_api_request(
args => [@_],
command => 'hideHighlight',
object => $self->{guid},
type => $self->{type}
);
}
sub isClosed {
my $self = shift;
return $self->_api_request(
args => [@_],
command => 'isClosed',
object => $self->{guid},
type => $self->{type}
);
}
sub popup {
my $self = shift;
return $self->_api_request(
args => [@_],
command => 'popup',
object => $self->{guid},
type => $self->{type}
);
}
sub content {
my $self = shift;
return $self->_api_request(
args => [@_],
command => 'content',
object => $self->{guid},
type => $self->{type}
);
}
sub getByPlaceholder {
my $self = shift;
return $self->_api_request(
args => [@_],
command => 'getByPlaceholder',
object => $self->{guid},
type => $self->{type}
);
}
sub reload {
my $self = shift;
return $self->_api_request(
args => [@_],
command => 'reload',
object => $self->{guid},
type => $self->{type}
);
}
sub isEditable {
my $self = shift;
return $self->_api_request(
args => [@_],
command => 'isEditable',
object => $self->{guid},
type => $self->{type}
);
}
sub waitForRequest {
my $self = shift;
return $self->_api_request(
args => [@_],
command => 'waitForRequest',
object => $self->{guid},
type => $self->{type}
);
}
sub isHidden {
my $self = shift;
return $self->_api_request(
args => [@_],
command => 'isHidden',
lib/Playwright/Page.pm view on Meta::CPAN
=head2 getByTitle(@args)
Execute the Page::getByTitle playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-getByTitle> for more information.
=head2 frames(@args)
Execute the Page::frames playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-frames> for more information.
=head2 screencast(@args)
Execute the Page::screencast playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-screencast> for more information.
=head2 waitForTimeout(@args)
Execute the Page::waitForTimeout playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-waitForTimeout> for more information.
=head2 waitForCondition(@args)
Execute the Page::waitForCondition playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-waitForCondition> for more information.
=head2 setViewportSize(@args)
Execute the Page::setViewportSize playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-setViewportSize> for more information.
=head2 goBack(@args)
Execute the Page::goBack playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-goBack> for more information.
=head2 getByLabel(@args)
Execute the Page::getByLabel playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-getByLabel> for more information.
=head2 hideHighlight(@args)
Execute the Page::hideHighlight playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-hideHighlight> for more information.
=head2 isClosed(@args)
Execute the Page::isClosed playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-isClosed> for more information.
=head2 popup(@args)
Execute the Page::popup playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-popup> for more information.
=head2 content(@args)
Execute the Page::content playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-content> for more information.
=head2 getByPlaceholder(@args)
Execute the Page::getByPlaceholder playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-getByPlaceholder> for more information.
=head2 reload(@args)
Execute the Page::reload playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-reload> for more information.
=head2 isEditable(@args)
Execute the Page::isEditable playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-isEditable> for more information.
=head2 waitForRequest(@args)
Execute the Page::waitForRequest playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-waitForRequest> for more information.
=head2 isHidden(@args)
Execute the Page::isHidden playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-isHidden> for more information.
=head2 clock(@args)
Execute the Page::clock playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-clock> for more information.
=head2 routeFromHAR(@args)
Execute the Page::routeFromHAR playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-routeFromHAR> for more information.
=head2 waitForRequestFinished(@args)
Execute the Page::waitForRequestFinished playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-waitForRequestFinished> for more information.
=head2 consoleMessages(@args)
Execute the Page::consoleMessages playwright routine.
See L<https://playwright.dev/docs/api/class-Page#Page-consoleMessages> for more information.
( run in 2.496 seconds using v1.01-cache-2.11-cpan-364913b4093 )