We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b225d1 commit 2229486Copy full SHA for 2229486
apps/native/tests/shared/pages/WalletPage.ts
@@ -81,8 +81,7 @@ export class WalletPage {
81
timeout: 30000
82
});
83
await expect(btn).toBeEnabled();
84
- await btn.focus();
85
- await this.page.keyboard.press('Space');
+ await btn.click();
86
}
87
88
/**
@@ -115,6 +114,7 @@ export class WalletPage {
115
114
*/
116
async disconnectConnection() {
117
await this.page.waitForLoadState();
+ await this.page.waitForTimeout(1000);
118
const sessionsButton = this.page.getByTestId('sessions');
119
await sessionsButton.click();
120
0 commit comments