Skip to content

Commit

Permalink
chore: address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rabi-siddique authored Mar 5, 2024
1 parent 8715041 commit 157131c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/keplr.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,10 @@ const keplr = {
async getWalletAddress() {
await playwright.switchToKeplrWindow();
await module.exports.goToHome();
const page = await playwright.keplrWindow();
const page = playwright.keplrWindow();
await playwright.waitAndClickByText(notificationPageElements.copyAddress);
await page.click(notificationPageElements.copyWalletAddressSelector);
const walletAddress = clipboardy.readSync();
walletAddress = clipboardy.readSync();
await playwright.switchToCypressWindow();
return walletAddress;
},
Expand Down

0 comments on commit 157131c

Please sign in to comment.