# ABSTRACT: Automatically generated class for Playwright::Browser # PODNAME: Playwright::Browser # These classes used to be generated at runtime, but are now generated when the module is built. # Don't send patches against these modules, they will be ignored. # See generate_perl_modules.pl in the repository for generating this. use strict; use warnings; package Playwright::Browser; $Playwright::Browser::VERSION = '1.431'; use parent 'Playwright::Base'; sub new { my ( $self, %options ) = @_; $options{type} = 'Browser'; return $self->SUPER::new(%options); } sub spec { return $Playwright::spec->{'Browser'}{members}; } sub isConnected { my $self = shift; return $self->_api_request( args => [@_], command => 'isConnected', object => $self->{guid}, type => $self->{type} ); } sub contexts { my $self = shift; return $self->_api_request( args => [@_], command => 'contexts', object => $self->{guid}, type => $self->{type} ); } sub disconnected { my $self = shift; return $self->_api_request( args => [@_], command => 'disconnected', object => $self->{guid}, type => $self->{type} ); } sub close { my $self = shift; return $self->_api_request( args => [@_], command => 'close', object => $self->{guid}, type => $self->{type} ); } sub browserType { my $self = shift; return $self->_api_request( args => [@_], command => 'browserType', object => $self->{guid}, type => $self->{type} ); } sub newContext { my $self = shift; return $self->_api_request( args => [@_], command => 'newContext', object => $self->{guid}, type => $self->{type} ); } sub newBrowserCDPSession { my $self = shift; return $self->_api_request( args => [@_], command => 'newBrowserCDPSession', object => $self->{guid}, type => $self->{type} ); } sub version { my $self = shift; return $self->_api_request( args => [@_], command => 'version', object => $self->{guid}, type => $self->{type} ); } sub stopTracing { my $self = shift; return $self->_api_request( args => [@_], command => 'stopTracing', object => $self->{guid}, type => $self->{type} ); } sub newPage { my $self = shift; return $self->_api_request( args => [@_], command => 'newPage', object => $self->{guid}, type => $self->{type} ); } sub startTracing { my $self = shift; return $self->_api_request( args => [@_], command => 'startTracing', object => $self->{guid}, type => $self->{type} ); } sub on { my $self = shift; return $self->_api_request( args => [@_], command => 'on', object => $self->{guid}, type => $self->{type} ); } sub evaluate { my $self = shift; return $self->_api_request( args => [@_], command => 'evaluate', object => $self->{guid}, type => $self->{type} ); } sub evaluateHandle { my $self = shift; return $self->_api_request( args => [@_], command => 'evaluateHandle', object => $self->{guid}, type => $self->{type} ); } 1; __END__ =pod =encoding UTF-8 =head1 NAME Playwright::Browser - Automatically generated class for Playwright::Browser =head1 VERSION version 1.431 =head1 CONSTRUCTOR =head2 new(%options) You shouldn't have to call this directly. Instead it should be returned to you as the result of calls on Playwright objects, or objects it returns. =head1 METHODS =head2 isConnected(@args) Execute the Browser::isConnected playwright routine. See L<https://playwright.dev/docs/api/class-Browser#Browser-isConnected> for more information. =head2 contexts(@args) Execute the Browser::contexts playwright routine. See L<https://playwright.dev/docs/api/class-Browser#Browser-contexts> for more information. =head2 disconnected(@args) Execute the Browser::disconnected playwright routine. See L<https://playwright.dev/docs/api/class-Browser#Browser-disconnected> for more information. =head2 close(@args) Execute the Browser::close playwright routine. See L<https://playwright.dev/docs/api/class-Browser#Browser-close> for more information. =head2 browserType(@args) Execute the Browser::browserType playwright routine. See L<https://playwright.dev/docs/api/class-Browser#Browser-browserType> for more information. =head2 newContext(@args) Execute the Browser::newContext playwright routine. See L<https://playwright.dev/docs/api/class-Browser#Browser-newContext> for more information. =head2 newBrowserCDPSession(@args) Execute the Browser::newBrowserCDPSession playwright routine. See L<https://playwright.dev/docs/api/class-Browser#Browser-newBrowserCDPSession> for more information. =head2 version(@args) Execute the Browser::version playwright routine. See L<https://playwright.dev/docs/api/class-Browser#Browser-version> for more information. =head2 stopTracing(@args) Execute the Browser::stopTracing playwright routine. See L<https://playwright.dev/docs/api/class-Browser#Browser-stopTracing> for more information. =head2 newPage(@args) Execute the Browser::newPage playwright routine. See L<https://playwright.dev/docs/api/class-Browser#Browser-newPage> for more information. =head2 startTracing(@args) Execute the Browser::startTracing playwright routine. See L<https://playwright.dev/docs/api/class-Browser#Browser-startTracing> for more information. =head2 on(@args) Execute the Browser::on playwright routine. See L<https://playwright.dev/docs/api/class-Browser#Browser-on> for more information. =head2 evaluate(@args) Execute the Browser::evaluate playwright routine. See L<https://playwright.dev/docs/api/class-Browser#Browser-evaluate> for more information. =head2 evaluateHandle(@args) Execute the Browser::evaluateHandle playwright routine. See L<https://playwright.dev/docs/api/class-Browser#Browser-evaluateHandle> for more information. =head1 SEE ALSO Please see those modules/websites for more information related to this module. =over 4 =item * L<Playwright|Playwright> =back =head1 BUGS Please report any bugs or feature requests on the bugtracker website L<https://github.com/teodesian/playwright-perl/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 AUTHORS Current Maintainers: =over 4 =item * George S. Baugh <teodesian@gmail.com> =back =head1 COPYRIGHT AND LICENSE Copyright (c) 2020 Troglodyne LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =cut