File tree 1 file changed +4
-4
lines changed
eform-client/e2e/Page objects
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class MyEformsPage extends PageWithNavbarPage {
54
54
55
55
createNewEform ( eFormLabel , newTagsList = [ ] , tagAddedNum = 0 ) {
56
56
this . newEformBtn . click ( ) ;
57
- browser . pause ( 2000 ) ;
57
+ browser . pause ( 3000 ) ;
58
58
// Create replaced xml and insert it in textarea
59
59
const xml = XMLForEform . XML . replace ( 'TEST_LABEL' , eFormLabel ) ;
60
60
browser . execute ( function ( xmlText ) {
@@ -71,15 +71,15 @@ class MyEformsPage extends PageWithNavbarPage {
71
71
if ( tagAddedNum > 0 ) {
72
72
for ( let i = 0 ; i < tagAddedNum ; i ++ ) {
73
73
this . createEformTagSelector . click ( ) ;
74
- browser . pause ( 2000 ) ;
74
+ browser . pause ( 3000 ) ;
75
75
const selectedTag = $ ( '.ng-option:not(.ng-option-selected)' ) ;
76
76
selectedTags . push ( selectedTag . getText ( ) ) ;
77
77
selectedTag . click ( ) ;
78
- browser . pause ( 2000 ) ;
78
+ browser . pause ( 3000 ) ;
79
79
}
80
80
}
81
81
this . createEformBtn . click ( ) ;
82
- browser . pause ( 5000 ) ;
82
+ browser . pause ( 10000 ) ;
83
83
return { added : addedTags , selected : selectedTags } ;
84
84
}
85
85
}
You can’t perform that action at this time.
0 commit comments