Skip to content

Commit e8a46d5

Browse files
committed
docs: update readme
1 parent 28f6dc2 commit e8a46d5

1 file changed

Lines changed: 21 additions & 3 deletions

File tree

README.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,38 @@ yarn add @assert-equals/dappdriver
4949

5050
**Download a Wallet**
5151

52-
First, install MetaMask, Rainbow or Zerion:
52+
First, install MetaMask, MetaMask Flask, Rainbow or Zerion:
5353

5454
```shell
5555
npx dappdriver -w metamask
5656
```
5757

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>
5967

6068
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:
6169

6270
```shell
6371
GITHUB_TOKEN=token npx dappdriver -w rainbow
6472
```
6573

74+
</details>
75+
76+
<details><summary>Zerion</summary>
77+
78+
```shell
79+
npx dappdriver -w zerion
80+
```
81+
82+
</details>
83+
6684
**Add a Page Object**
6785

6886
Then, write your page object in `test/page/dapp.ts`:
@@ -103,7 +121,7 @@ describe('E2E Test Dapp', () => {
103121
const browserOptions: BrowserOptions = {
104122
extension: {
105123
wallet: METAMASK,
106-
seed: 'phrase upgrade clock rough situate wedding elder clever doctor stamp excess tent'
124+
seed: 'phrase upgrade clock rough situate wedding elder clever doctor stamp excess tent' // MetaMask test seed https://github.com/MetaMask/metamask-extension/blob/v12.7.1/test/e2e/seeder/ganache.ts
107125
}
108126
};
109127

0 commit comments

Comments
 (0)