File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
rb/spec/integration/selenium/webdriver/firefox Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -33,8 +33,6 @@ module WebDriver
33
33
expect ( caps . implicit_timeout ) . to be_zero
34
34
expect ( caps . page_load_timeout ) . to be == 300000
35
35
expect ( caps . script_timeout ) . to be == 30000
36
-
37
- expect ( caps . remote_session_id ) . not_to be_nil if GlobalTestEnv . driver == :remote
38
36
end
39
37
end
40
38
@@ -54,6 +52,12 @@ module WebDriver
54
52
end
55
53
end
56
54
55
+ it 'has remote session ID' , only : { driver : :remote } , except : { browser : :ff_esr } do
56
+ create_driver! do |driver |
57
+ expect ( driver . capabilities . remote_session_id ) . to be
58
+ end
59
+ end
60
+
57
61
it 'takes a binary path as an argument' , only : { driver : :firefox } do
58
62
skip "Set ENV['ALT_FIREFOX_BINARY'] to test this" unless ENV [ 'ALT_FIREFOX_BINARY' ]
59
63
You can’t perform that action at this time.
0 commit comments