Skip to content

Commit

Permalink
Updating to 1.51
Browse files Browse the repository at this point in the history
  • Loading branch information
david-dick committed Jan 22, 2024
1 parent b27ce4e commit bc885a3
Show file tree
Hide file tree
Showing 46 changed files with 88 additions and 85 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for Firefox-Marionette

1.51 Mon Jan 22 21:30 2024
Adding fixes for older perls.

1.50 Sun Jan 21 18:06 2024
Adding agent, languages and geo methods
Allowing json method to accept a URL as a parameter
Expand Down
2 changes: 1 addition & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@
}
},
"release_status" : "unstable",
"version" : "1.50",
"version" : "1.51",
"x_serialization_backend" : "JSON::PP version 4.04"
}
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ requires:
base: '0'
overload: '0'
perl: '5.006'
version: 1.50
version: 1.51
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ NAME

VERSION

Version 1.50
Version 1.51

SYNOPSIS

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Firefox::Marionette - Automate the Firefox browser with the Marionette protocol

# VERSION

Version 1.50
Version 1.51

# SYNOPSIS

Expand Down
4 changes: 2 additions & 2 deletions ca-bundle-for-firefox
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Firefox::Marionette();
use FileHandle();
use Encode();

our $VERSION = '1.50';
our $VERSION = '1.51';

my %options;

Expand Down Expand Up @@ -115,7 +115,7 @@ ca-bundle-for-firefox - generate the ca-bundle.crt for the current firefox insta
=head1 VERSION
Version 1.50
Version 1.51
=head1 USAGE
Expand Down
4 changes: 2 additions & 2 deletions check-firefox-certificate-authorities
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use English qw( -no_match_vars );
use Encode();
use Firefox::Marionette();

our $VERSION = '1.50';
our $VERSION = '1.51';

sub _NUMBER_OF_SPACES_FOR_CODE_QUOTING_IN_MARKDOWN { return 4 }

Expand Down Expand Up @@ -101,7 +101,7 @@ check-firefox-certificate-authorities - check the CA certificates in firefox for
=head1 VERSION
Version 1.50
Version 1.51
=head1 USAGE
Expand Down
4 changes: 2 additions & 2 deletions firefox-passwords
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use XML::Parser();
use Term::ReadKey();
use charnames ':full';

our $VERSION = '1.50';
our $VERSION = '1.51';

sub _NUMBER_OF_BYTES_FOR_ZIP_MAGIC_NUMBER { return 4 }

Expand Down Expand Up @@ -313,7 +313,7 @@ firefox-passwords - import and export passwords from firefox
=head1 VERSION
Version 1.50
Version 1.51
=head1 USAGE
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette.pm
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ our @EXPORT_OK =
qw(BY_XPATH BY_ID BY_NAME BY_TAG BY_CLASS BY_SELECTOR BY_LINK BY_PARTIAL);
our %EXPORT_TAGS = ( all => \@EXPORT_OK );

our $VERSION = '1.50';
our $VERSION = '1.51';

sub _ANYPROCESS { return -1 }
sub _COMMAND { return 0 }
Expand Down Expand Up @@ -11726,7 +11726,7 @@ Firefox::Marionette - Automate the Firefox browser with the Marionette protocol

=head1 VERSION

Version 1.50
Version 1.51

=head1 SYNOPSIS

Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Bookmark.pm
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ our @EXPORT_OK = qw(

our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK, );

our $VERSION = '1.50';
our $VERSION = '1.51';

# guids from toolkit/components/places/Bookmarks.sys.mjs

Expand Down Expand Up @@ -204,7 +204,7 @@ Firefox::Marionette::Bookmark - Represents a Firefox bookmark retrieved using th
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Buttons.pm
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ our @EXPORT_OK = qw(

our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK, );

our $VERSION = '1.50';
our $VERSION = '1.51';

sub LEFT_BUTTON { return 0 }
sub MIDDLE_BUTTON { return 1 }
Expand All @@ -26,7 +26,7 @@ Firefox::Marionette::Buttons - Human readable mouse buttons for the Marionette p
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Cache.pm
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ our @EXPORT_OK = qw(

our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK, );

our $VERSION = '1.50';
our $VERSION = '1.51';

sub CLEAR_COOKIES { return 1 }
sub CLEAR_NETWORK_CACHE { return 2 }
Expand Down Expand Up @@ -96,7 +96,7 @@ Firefox::Marionette::Cache - Constants to describe actions on the cache
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Capabilities.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Firefox::Marionette::Capabilities;
use strict;
use warnings;

our $VERSION = '1.50';
our $VERSION = '1.51';

sub new {
my ( $class, %parameters ) = @_;
Expand Down Expand Up @@ -126,7 +126,7 @@ Firefox::Marionette::Capabilities - Represents Firefox Capabilities retrieved us
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Certificate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Firefox::Marionette::Certificate;
use strict;
use warnings;

our $VERSION = '1.50';
our $VERSION = '1.51';

sub _NUMBER_OF_MICROSECOND_DIGITS { return -6 }

Expand Down Expand Up @@ -179,7 +179,7 @@ Firefox::Marionette::Certificate - Represents a x509 Certificate from Firefox
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Cookie.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Firefox::Marionette::Cookie;
use strict;
use warnings;

our $VERSION = '1.50';
our $VERSION = '1.51';

sub new {
my ( $class, %parameters ) = @_;
Expand Down Expand Up @@ -73,7 +73,7 @@ Firefox::Marionette::Cookie - Represents a Firefox cookie retrieved using the Ma
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Display.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Firefox::Marionette::Display;
use strict;
use warnings;

our $VERSION = '1.50';
our $VERSION = '1.51';

sub new {
my ( $class, %parameters ) = @_;
Expand Down Expand Up @@ -60,7 +60,7 @@ Firefox::Marionette::Display - Represents a display from the displays method
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Element.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use parent qw(Firefox::Marionette::LocalObject);

our $VERSION = '1.50';
our $VERSION = '1.51';

sub IDENTIFIER { return 'element-6066-11e4-a52e-4f735466cecf' }

Expand Down Expand Up @@ -335,7 +335,7 @@ Firefox::Marionette::Element - Represents a Firefox element retrieved using the
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Element/Rect.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Firefox::Marionette::Element::Rect;
use strict;
use warnings;

our $VERSION = '1.50';
our $VERSION = '1.51';

sub new {
my ( $class, %parameters ) = @_;
Expand Down Expand Up @@ -40,7 +40,7 @@ Firefox::Marionette::Element::Rect - Represents the box around an Element
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Exception.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use warnings;
use Carp();
use overload '""' => 'string';

our $VERSION = '1.50';
our $VERSION = '1.51';

sub throw {
my ( $class, $string ) = @_;
Expand Down Expand Up @@ -43,7 +43,7 @@ Firefox::Marionette::Exception - Represents an base exception class for exceptio
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Exception/InsecureCertificate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use parent qw(Firefox::Marionette::Exception::Response);

our $VERSION = '1.50';
our $VERSION = '1.51';

sub throw {
my ( $class, $response, $parameters ) = @_;
Expand All @@ -25,7 +25,7 @@ Firefox::Marionette::Exception::InsecureCertificate - Represents a 'insecure cer
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Exception/NoSuchAlert.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use parent qw(Firefox::Marionette::Exception::Response);

our $VERSION = '1.50';
our $VERSION = '1.51';

sub throw {
my ( $class, $response, $parameters ) = @_;
Expand All @@ -25,7 +25,7 @@ Firefox::Marionette::Exception::NoSuchAlert - Represents a 'no such alert' excep
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Exception/NotFound.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use parent qw(Firefox::Marionette::Exception::Response);

our $VERSION = '1.50';
our $VERSION = '1.51';

sub throw {
my ( $class, $response, $parameters ) = @_;
Expand All @@ -29,7 +29,7 @@ Firefox::Marionette::Exception::NotFound - Represents a 'no such element' except
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Exception/Response.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use parent qw(Firefox::Marionette::Exception);

our $VERSION = '1.50';
our $VERSION = '1.51';

sub throw {
my ( $class, $response ) = @_;
Expand Down Expand Up @@ -45,7 +45,7 @@ Firefox::Marionette::Exception::Response - Represents an exception thrown by Fir
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Firefox/Marionette/Exception/StaleElement.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use parent qw(Firefox::Marionette::Exception::Response);

our $VERSION = '1.50';
our $VERSION = '1.51';

sub throw {
my ( $class, $response, $parameters ) = @_;
Expand All @@ -26,7 +26,7 @@ Firefox::Marionette::Exception::StaleElement - Represents a 'stale element refer
=head1 VERSION
Version 1.50
Version 1.51
=head1 SYNOPSIS
Expand Down
Loading

0 comments on commit bc885a3

Please sign in to comment.