package MySelenium;
use Moose;
extends 'Test::WWW::Selenium::More';
with 'MySelenium::Roles::Authentication';
has host => (...);
has port => (...);
has browser => (...);
has browser_url => (
is => 'rw',
isa => 'Str',
default => 'http://localhost:5000'
);
no Moose;