Many fixes.
[scpubgit/Test-Harness-Selenium.git] / t / vnc.t
CommitLineData
889ee473 1#!/usr/bin/perl
2use strict;
3use warnings;
4
5use lib 'lib';
6use Test::Harness::Selenium;
7use Test::More;
8
9my $s = Test::Harness::Selenium->new({
10 host => 'localhost',
11 port => $< + 60_000,
12 browser_url => 'http://www.google.com',
13 browser => shift,
14 xvnc => ':0',
15});
16$s->test_directory(shift);
17done_testing;