Skip to content

Commit

Permalink
Merge pull request #158 from lidofinance/fix-okx
Browse files Browse the repository at this point in the history
fix: okx firstTimeSetup()
  • Loading branch information
itaven authored Jun 11, 2024
2 parents 176c02d + fb8123a commit 4b892e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wallets/src/okx/okx.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class OkxPage implements WalletPage {
await test.step('First time setup', async () => {
if (!this.page) throw "Page isn't ready";
await this.page.click("button:has-text('Import wallet')");
await this.page.getByText('Import wallet').click();
await this.page.getByText('Import wallet').last().click();
await this.page.click('text=Seed Phrase');
const inputs = this.page.locator('div[data-testid="okd-popup"] >> input');
const seedWords = this.config.SECRET_PHRASE.split(' ');
Expand Down

0 comments on commit 4b892e9

Please sign in to comment.