@@ -45,6 +45,7 @@ module.exports = class BasePage {
45
45
return this . selectOption ( SELECT_REFRESH , option )
46
46
}
47
47
async waitForOverviewTab ( ) {
48
+ await this . driver . sleep ( 250 )
48
49
return this . waitForDisplayed ( OVERVIEW_TAB )
49
50
}
50
51
@@ -56,27 +57,31 @@ module.exports = class BasePage {
56
57
return this . click ( CONNECTIONS_TAB )
57
58
}
58
59
async waitForConnectionsTab ( ) {
60
+ await this . driver . sleep ( 250 )
59
61
return this . waitForDisplayed ( CONNECTIONS_TAB )
60
62
}
61
63
62
64
async clickOnAdminTab ( ) {
63
65
return this . click ( ADMIN_TAB )
64
66
}
65
67
async waitForAdminTab ( ) {
68
+ await this . driver . sleep ( 250 )
66
69
return this . waitForDisplayed ( ADMIN_TAB )
67
70
}
68
71
69
72
async clickOnChannelsTab ( ) {
70
73
return this . click ( CHANNELS_TAB )
71
74
}
72
75
async waitForChannelsTab ( ) {
76
+ await this . driver . sleep ( 250 )
73
77
return this . waitForDisplayed ( CHANNELS_TAB )
74
78
}
75
79
76
80
async clickOnExchangesTab ( ) {
77
81
return this . click ( EXCHANGES_TAB )
78
82
}
79
83
async waitForExchangesTab ( ) {
84
+ await this . driver . sleep ( 250 )
80
85
return this . waitForDisplayed ( EXCHANGES_TAB )
81
86
}
82
87
0 commit comments