Skip to content

Commit 2161352

Browse files
Apply same changes from pr #13197
1 parent ad7cd49 commit 2161352

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

selenium/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"author": "",
1313
"license": "ISC",
1414
"dependencies": {
15-
"chromedriver": "^130.0.4",
15+
"chromedriver": "^132.0",
1616
"ejs": "^3.1.8",
1717
"express": "^4.18.2",
1818
"geckodriver": "^3.0.2",

selenium/test/pageobjects/BasePage.js

+5
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ module.exports = class BasePage {
4545
return this.selectOption(SELECT_REFRESH, option)
4646
}
4747
async waitForOverviewTab() {
48+
await this.driver.sleep(250)
4849
return this.waitForDisplayed(OVERVIEW_TAB)
4950
}
5051

@@ -56,27 +57,31 @@ module.exports = class BasePage {
5657
return this.click(CONNECTIONS_TAB)
5758
}
5859
async waitForConnectionsTab() {
60+
await this.driver.sleep(250)
5961
return this.waitForDisplayed(CONNECTIONS_TAB)
6062
}
6163

6264
async clickOnAdminTab () {
6365
return this.click(ADMIN_TAB)
6466
}
6567
async waitForAdminTab() {
68+
await this.driver.sleep(250)
6669
return this.waitForDisplayed(ADMIN_TAB)
6770
}
6871

6972
async clickOnChannelsTab () {
7073
return this.click(CHANNELS_TAB)
7174
}
7275
async waitForChannelsTab() {
76+
await this.driver.sleep(250)
7377
return this.waitForDisplayed(CHANNELS_TAB)
7478
}
7579

7680
async clickOnExchangesTab () {
7781
return this.click(EXCHANGES_TAB)
7882
}
7983
async waitForExchangesTab() {
84+
await this.driver.sleep(250)
8085
return this.waitForDisplayed(EXCHANGES_TAB)
8186
}
8287

0 commit comments

Comments
 (0)