This is an automated email from the git hooks/post-receive script. jame-guest pushed a commit to tag v0.10 in repository libweasel-perl.
commit c970ec5566117fcfbbe20dc8828f44cf3133d2ac Author: Erik Huelsmann <[email protected]> Date: Fri Sep 9 21:58:44 2016 +0200 * Upgrade the driver API --- lib/Weasel/DriverRole.pm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/lib/Weasel/DriverRole.pm b/lib/Weasel/DriverRole.pm index 85828d7..0a6b926 100644 --- a/lib/Weasel/DriverRole.pm +++ b/lib/Weasel/DriverRole.pm @@ -5,7 +5,7 @@ Weasel::DriverRole - API definition for driver wrappers =head1 VERSION -0.01 +0.02 =head1 SYNOPSIS @@ -33,7 +33,7 @@ use warnings; use Carp; use Moose::Role; -our $VERSION = '0.01'; +our $VERSION = '0.02'; =head1 ATTRIBUTES @@ -232,6 +232,16 @@ sub get_attribute { croak "Abstract interface method 'get_attribute' called"; } +=item get_page_source($fh) + +Writes a get_page_source of the browser's window to the filehandle C<$fh>. + +=cut + +sub get_page_source { + croak "Abstract interface method 'get_page_source' called"; +} + =item get_text($element_id) Returns the HTML content of the element identified by C<$element_id>, -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libweasel-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
