File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 50
50
"mocha" : " ^2.4.5" ,
51
51
"portfinder" : " ^1.0.2" ,
52
52
"request" : " ^2.69.0" ,
53
- "selenium-assistant" : " 0.1.5 " ,
53
+ "selenium-assistant" : " 0.2.0 " ,
54
54
"selenium-webdriver" : " ~2.53.2" ,
55
55
"semver" : " ^5.1.0" ,
56
56
"temp" : " ^0.8.3" ,
Original file line number Diff line number Diff line change 194
194
} )
195
195
. then ( function ( ) {
196
196
var expectedTitle = options . payload ? options . payload : 'no payload' ;
197
- return globalDriver . wait ( webdriver . until . titleIs ( expectedTitle , 60000 ) ) ;
197
+ return globalDriver . wait ( function ( ) {
198
+ return webdriver . until . titleIs ( expectedTitle , 60000 ) ;
199
+ } ) ;
198
200
} )
199
201
. then ( function ( ) {
200
202
resolve ( ) ;
216
218
}
217
219
218
220
suite ( 'Selenium ' + browser . getPrettyName ( ) , function ( ) {
221
+ this . retries ( 3 ) ;
219
222
220
223
setup ( function ( ) {
221
224
globalServer = null ;
You can’t perform that action at this time.
0 commit comments