@@ -57,6 +57,7 @@ module IE
57
57
use_legacy_file_upload_dialog_handling : true ,
58
58
attach_to_edge_chrome : true ,
59
59
edge_executable_path : '/path/to/edge' ,
60
+ silent : true ,
60
61
'custom:options' : { foo : 'bar' } )
61
62
62
63
expect ( opts . args . to_a ) . to eq ( %w[ foo bar ] )
@@ -87,6 +88,7 @@ module IE
87
88
expect ( opts . timeouts ) . to eq ( script : 40000 , page_load : 400000 , implicit : 1 )
88
89
expect ( opts . set_window_rect ) . to be ( false )
89
90
expect ( opts . options [ :'custom:options' ] ) . to eq ( foo : 'bar' )
91
+ expect ( opts . silent ) . to be_truthy
90
92
end
91
93
92
94
it 'has native events on by default' do
@@ -131,6 +133,7 @@ module IE
131
133
platform_name : 'win10' ,
132
134
accept_insecure_certs : false ,
133
135
page_load_strategy : 'eager' ,
136
+ silent : true ,
134
137
unhandled_prompt_behavior : 'accept' ,
135
138
strict_file_interactability : true ,
136
139
timeouts : { script : 40000 ,
@@ -187,7 +190,8 @@ module IE
187
190
'ie.usePerProcessProxy' => true ,
188
191
'ie.useLegacyFileUploadDialogHandling' => true ,
189
192
'ie.edgechromium' => true ,
190
- 'ie.edgepath' => '/path/to/edge' } )
193
+ 'ie.edgepath' => '/path/to/edge' ,
194
+ 'silent' => true } )
191
195
end
192
196
end
193
197
end # Options
0 commit comments