You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, install MetaMask, MetaMask Flask, Rainbow or Zerion:
53
53
54
54
```shell
55
55
npx dappdriver -w metamask
56
56
```
57
57
58
-
Installing Rainbow:
58
+
<details><summary>MetaMask Flask</summary>
59
+
60
+
```shell
61
+
npx dappdriver -w metamask-flask
62
+
```
63
+
64
+
</details>
65
+
66
+
<details><summary>Rainbow</summary>
59
67
60
68
DappDriver requires a personal access token to call Github’s API over HTTPS to download Rainbow from GitHub's artifact repository. You can configure the token through the `GITHUB_TOKEN` environment variable:
61
69
62
70
```shell
63
71
GITHUB_TOKEN=token npx dappdriver -w rainbow
64
72
```
65
73
74
+
</details>
75
+
76
+
<details><summary>Zerion</summary>
77
+
78
+
```shell
79
+
npx dappdriver -w zerion
80
+
```
81
+
82
+
</details>
83
+
66
84
**Add a Page Object**
67
85
68
86
Then, write your page object in `test/page/dapp.ts`:
@@ -103,7 +121,7 @@ describe('E2E Test Dapp', () => {
0 commit comments