https://github.com/perl-weasel/weasel-driver-selenium2
Weasel driver wrapping Selenium::Remote::Driver
https://github.com/perl-weasel/weasel-driver-selenium2
Last synced: 4 months ago
JSON representation
Weasel driver wrapping Selenium::Remote::Driver
- Host: GitHub
- URL: https://github.com/perl-weasel/weasel-driver-selenium2
- Owner: perl-weasel
- Created: 2016-06-11T20:33:24.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-06-13T07:02:11.000Z (about 4 years ago)
- Last Synced: 2025-01-17T01:11:32.546Z (6 months ago)
- Language: Perl
- Homepage:
- Size: 42 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES
Awesome Lists containing this project
README
# NAME
Weasel::Driver::Selenium2 - Selenium::Remote::Driver wrapper for Weasel
# VERSION
0.11
# SYNOPSIS
```perl
use Weasel;
use Weasel::Session;
use Weasel::Driver::Selenium2;my $weasel = Weasel->new(
default_session => 'default',
sessions => {
default => Weasel::Session->new(
driver => Weasel::Driver::Selenium2->new(%opts),
),
});$weasel->session->get('http://localhost/index');
```# DESCRIPTION
This module implements an extension to
[Weasel](https://github.com/perl-weasel/weasel/), which
implements the `Weasel::DriverRole` protocol.# INSTALLATION
```sh
# Install Weasel::Driver::Selenium2
$ cpanm Weasel::Driver::Selenium2
```# SUPPORT
## BUGS
Bugs can be filed in the GitHub issue tracker for the Weasel project:
https://github.com/perl-weasel/weasel-driver-selenium2/issues## DISCUSSION
Community support is available through
[[email protected]](mailto:[email protected]).# COPYRIGHT
```
Copyright (c) 2016-2020 Erik Huelsmann
```# LICENSE
Same as Perl