Skip to content

Commit 890a495

Browse files
committed
fix #476
1 parent b8e4414 commit 890a495

File tree

3 files changed

+4
-26
lines changed

3 files changed

+4
-26
lines changed

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Revision history for Selenium-Remote-Driver
22

3+
1.45 2021-10-21 TEODESIAN
4+
- Remove ill-advised test reaching out to saucelabs at install-time, vendors are the users' problem
5+
36
1.44 2021-03-26 TEODESIAN
47
- Remove all usage of default profiles for Firefox when in direct binary mode.
58

dist.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = Selenium-Remote-Driver
2-
version = 1.44
2+
version = 1.45
33
author = George S. Baugh <george@troglodyne.net>
44
author = Aditya Ivaturi <ivaturi@gmail.com>
55
author = Daniel Gempesaw <gempesaw@gmail.com>

t/error.t

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -43,29 +43,4 @@ LOCAL: {
4343
'Error message for not finding a selenium server is helpful' );
4444
}
4545

46-
SAUCE: {
47-
SKIP: {
48-
my $host = 'ondemand.saucelabs.com';
49-
my $port = 80;
50-
my $sock = IO::Socket::INET->new(
51-
PeerAddr => $host,
52-
PeerPort => $port,
53-
);
54-
55-
skip 'Cannot reach saucelabs for Sauce error case ', 1
56-
unless $sock;
57-
58-
like(exception {
59-
Selenium::Remote::Driver->new_from_caps(
60-
remote_server_addr => $host,
61-
port => $port,
62-
desired_capabilities => {
63-
browserName => 'invalid'
64-
}
65-
);
66-
}, qr/Sauce Labs/,
67-
'Saucelabs errors are passed to user');
68-
69-
}
70-
}
7146
done_testing;

0 commit comments

Comments
 (0)