Skip to content

FROGGS/perl6-selenium-webdriver

 
 

Repository files navigation

Selenium::WebDriver

This module provides the Perl 6 bindings for the Selenium WebDriver Wire Protocol.

Note: This module is a work in progress. Please see its project status here.

Build Status

Operating System Build Status CI Provider
Linux / Mac OS X Build Status Travis CI
Windows 7 64-bit Build status AppVeyor

Example

use v6;
use Selenium::WebDriver::PhantomJS;

my $driver = Selenium::WebDriver::PhantomJS.new;
$driver.url("http://google.com");
say "Title: "         ~ $driver.title;
say "URL: "           ~ $driver.url;
say "Source length: " ~ $driver.source.chars;
$driver.save-screenshot('test.png');
LEAVE {
  $driver.quit if $driver.defined
};

For more examples, please see the examples folder.

PhantomJS Installation

Linux/Debian

To install phantomjs on Debian, please type the following:

$ sudo apt-get install phantomjs

CAUTION: Also there are prebuilt binaries for PhantomJS for Linux if the packaged version is a bit old.

Mac OS X

To install PhantomJS on Mac OS X, the simplest solution is to use brew:

$ brew update
$ brew install phantomjs

Windows

To install PhantomJS on windows, please download a copy from Here and then make it available in your PATH environment variable.

Travis CI

Travis CI comes with pre-installed PhantomJS. No special instructions are needed.

Project Status

Web Driver Status
PhantomJS DONE but needs more tests
Firefox DONE
Chrome DONE but needs external chromedriver
Safari Pending
Opera Pending
MSIE Pending
MSEdge Pending
BlackBerry DONE

Installation

To install it using Panda (a module management tool bundled with Rakudo Star):

$ panda update
$ panda install Selenium::WebDriver

Testing

To run tests:

$ prove -v -e "perl6 -Ilib"

Author

Ahmad M. Zawawi, azawawi on #perl6

License

MIT License

About

Perl 6 bindings for Selenium WebDriver

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Other 100.0%