repo.or.cz
/
sgn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #5205 from solgenomics/topic/generic_trial_upload
[sgn.git]
/
t
/
selenium2
/
03_dataset
/
dataset.t
blob
29c27b32b11957525fa71641c48d505d259ab186
1
use strict;
2
3
use lib 't/lib';
4
5
use Test::More;
6
use SGN::Test::Fixture;
7
use SGN::Test::WWW::WebDriver;
8
use CXGN::List;
9
10
my $d = SGN::Test::WWW::WebDriver->new();
11
12
my $f = SGN::Test::Fixture->new();
13
14
$d->while_logged_in_as("submitter", sub {
15
16
$d->get_ok("/search/datasets", "get root url test");
17
sleep(20);
18
$d->logout_ok();
19
});
20
21
$d->driver->close();
22
done_testing();
23
24