File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
page-objects/components/editor-view Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { By } from 'selenium-webdriver'
2
2
import { ButtonActions , InputActions } from '@e2eSrc/helpers/common-actions'
3
3
import { KeyDetailsView } from './KeyDetailsView'
4
+ import { CommonDriverExtension } from '@e2eSrc/helpers'
4
5
5
6
/**
6
7
* Base view for all keyTypes that have 2 columns value
@@ -34,6 +35,7 @@ export class DoubleColumnKeyDetailsView extends KeyDetailsView {
34
35
await ButtonActions . clickElement ( editLocator )
35
36
await InputActions . typeText ( editorLocator , value )
36
37
await ButtonActions . clickElement ( this . applyButton )
38
+ await CommonDriverExtension . driverSleep ( 300 )
37
39
}
38
40
39
41
/**
@@ -54,5 +56,6 @@ export class DoubleColumnKeyDetailsView extends KeyDetailsView {
54
56
await ButtonActions . clickElement ( editLocator )
55
57
await InputActions . slowType ( editorLocator , value )
56
58
await ButtonActions . clickElement ( this . applyButton )
59
+ await CommonDriverExtension . driverSleep ( 300 )
57
60
}
58
61
}
Original file line number Diff line number Diff line change @@ -27,15 +27,11 @@ import { InnerViews } from '@e2eSrc/page-objects/components/WebView'
27
27
let keyName : string
28
28
29
29
describe ( 'ZSet Key fields verification' , ( ) => {
30
- let bottomBar : BottomBar
31
- let bottomBarPanel : BottomBarPanel
32
30
let keyDetailsView : SortedSetKeyDetailsView
33
31
let treeView : TreeView
34
32
let addSortedSetKeyView : AddSortedSetKeyView
35
33
36
34
before ( async ( ) => {
37
- bottomBar = new BottomBar ( )
38
- bottomBarPanel = new BottomBarPanel ( )
39
35
keyDetailsView = new SortedSetKeyDetailsView ( )
40
36
treeView = new TreeView ( )
41
37
addSortedSetKeyView = new AddSortedSetKeyView ( )
You can’t perform that action at this time.
0 commit comments