w3wallets 0.9.1 → 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -123,7 +123,7 @@ var Backpack = class extends Wallet {
123
123
  }
124
124
  await this.page.getByRole("button", { name: "I agree to the terms" }).click();
125
125
  await this.page.getByText("I already have a wallet").click();
126
- await this.page.getByText("Show all networks").click();
126
+ await this.page.getByText("View all").click();
127
127
  await this.page.getByText(network).click();
128
128
  await this.page.getByText("Private key").click();
129
129
  await this.page.getByPlaceholder("Private key").fill(privateKey);
@@ -231,7 +231,6 @@ var Metamask = class extends Wallet {
231
231
  await this.page.getByTestId("metametrics-no-thanks").click();
232
232
  await this.page.getByTestId("onboarding-complete-done").click();
233
233
  await this.page.getByTestId("pin-extension-done").click();
234
- await this.page.getByTestId("not-now-button").click();
235
234
  }
236
235
  async switchAccount(accountNameOrAddress) {
237
236
  await this.page.getByTestId("account-menu-icon").click();
package/dist/index.mjs CHANGED
@@ -89,7 +89,7 @@ var Backpack = class extends Wallet {
89
89
  }
90
90
  await this.page.getByRole("button", { name: "I agree to the terms" }).click();
91
91
  await this.page.getByText("I already have a wallet").click();
92
- await this.page.getByText("Show all networks").click();
92
+ await this.page.getByText("View all").click();
93
93
  await this.page.getByText(network).click();
94
94
  await this.page.getByText("Private key").click();
95
95
  await this.page.getByPlaceholder("Private key").fill(privateKey);
@@ -197,7 +197,6 @@ var Metamask = class extends Wallet {
197
197
  await this.page.getByTestId("metametrics-no-thanks").click();
198
198
  await this.page.getByTestId("onboarding-complete-done").click();
199
199
  await this.page.getByTestId("pin-extension-done").click();
200
- await this.page.getByTestId("not-now-button").click();
201
200
  }
202
201
  async switchAccount(accountNameOrAddress) {
203
202
  await this.page.getByTestId("account-menu-icon").click();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "w3wallets",
3
3
  "description": "browser wallets for playwright",
4
- "version": "0.9.1",
4
+ "version": "0.9.3",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "homepage": "https://github.com/Maksandre/w3wallets",