The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Test::WWW::WebKit - Perl extension for using an embedding WebKit engine for tests

SYNOPSIS

    use Test::WWW::WebKit;

    my $webkit = Test::WWW::WebKit->new(xvfb => 1);
    $webkit->init;

    $webkit->open_ok("http://www.google.com");
    $webkit->type_ok("q", "hello world");
    $webkit->click_ok("btnG");
    $webkit->wait_for_page_to_load_ok(5000);
    $webkit->title_is("foo");

DESCRIPTION

Test::WWW::WebKit is a drop-in replacement for Test::WWW::Selenium using Gtk3::WebKit as browser instead of relying on an external Java server and an installed browser.

EXPORT

None by default.

Additions to the Selenium API

native_drag_and_drop_to_object_ok($source, $target)

Drag&drop test that works with native HTML5 D&D events.

SEE ALSO

WWW::Selenium for the base package. See Test::WWW::Selenium for API documentation. Test::WWW::WebKit::Catalyst for a replacement for Test::WWW::Selenium::Catalyst

AUTHOR

Stefan Seifert, <nine@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2011 by Stefan Seifert

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.12.3 or, at your option, any later version of Perl 5 you may have available.