@deeeed/metamask-harness 0.38.1 → 0.40.0
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/CHANGELOG.md +58 -0
- package/adapters/extension/lib/playwright-cdp.cjs +17 -1
- package/adapters/extension/sidepanel-toggle.sh +135 -13
- package/dist/adapters/mobile/release-artifact.js +65 -0
- package/dist/adapters.js +27 -17
- package/dist/command-contract.js +10 -2
- package/dist/commands/call.js +7 -4
- package/dist/commands/launch/index.js +55 -3
- package/dist/commands/parse-args.js +6 -0
- package/dist/commands/run-engine.js +75 -39
- package/dist/funding-execution-context.js +1386 -0
- package/dist/live-adapter-contract.js +3 -1
- package/dist/metamask-action-validation.js +170 -3
- package/dist/mm-harness-cli.js +8 -2
- package/dist/recipe-security.js +5 -12
- package/dist/runner.js +102 -6
- package/docs/RECIPES.md +74 -1
- package/docs/RELEASE-QA-CAPABILITY-MAP.md +6 -5
- package/library/actions/extension/assets/open_details.mjs +30 -0
- package/library/actions/extension/assets/set_token_visibility.mjs +5 -0
- package/library/actions/extension/networks/add_chainlist.mjs +4 -0
- package/library/actions/extension/networks/add_custom.mjs +4 -0
- package/library/actions/extension/networks/custom_network.mjs +48 -1
- package/library/actions/extension/perps/assert_visible_consistency.mjs +366 -0
- package/library/actions/extension/perps/close_visible_position.mjs +299 -37
- package/library/actions/extension/perps/compare_provider_market.mjs +77 -0
- package/library/actions/extension/perps/edit_margin.mjs +285 -44
- package/library/actions/extension/perps/mutation-receipt.mjs +781 -0
- package/library/actions/extension/perps/perps.mjs +1029 -363
- package/library/actions/extension/perps/read_funds_confirmation.mjs +126 -13
- package/library/actions/extension/perps/read_snapshot.mjs +124 -3
- package/library/actions/extension/perps/read_visible_state.mjs +63 -5
- package/library/actions/extension/perps/search_markets.mjs +32 -0
- package/library/actions/extension/perps/select_activity_filter.mjs +81 -18
- package/library/actions/extension/perps/select_market_filter.mjs +48 -4
- package/library/actions/extension/perps/set_market_favorite.mjs +6 -1
- package/library/actions/extension/perps/update_position_tpsl.mjs +251 -69
- package/library/actions/extension/perps/visible-mutation-identity.mjs +164 -0
- package/library/actions/extension/platform/cdp.mjs +88 -9
- package/library/actions/extension/settings/set_basic_functionality.mjs +35 -7
- package/library/actions/extension/swap_bridge/read_visible_state.mjs +2 -6
- package/library/actions/extension/swap_bridge/set_amount.mjs +11 -2
- package/library/actions/extension/ui/navigate.mjs +45 -5
- package/library/actions/extension/wallet/import.mjs +70 -29
- package/library/actions/extension/wallet/lock.mjs +62 -5
- package/library/actions/extension/wallet/visible-session.mjs +218 -0
- package/library/actions/mobile/assets/import_custom_token.mjs +181 -0
- package/library/actions/mobile/assets/open_details.mjs +43 -0
- package/library/actions/mobile/assets/read_details.mjs +96 -0
- package/library/actions/mobile/assets/set_token_visibility.mjs +302 -0
- package/library/actions/mobile/assets/verify_sorting.mjs +104 -0
- package/library/actions/mobile/networks/add_custom.mjs +125 -0
- package/library/actions/mobile/networks/network-management.mjs +132 -0
- package/library/actions/mobile/networks/read_visible_state.mjs +43 -0
- package/library/actions/mobile/networks/remove_custom.mjs +100 -0
- package/library/actions/mobile/perps/search_markets.mjs +46 -0
- package/library/actions/mobile/perps/set_market_favorite.mjs +117 -0
- package/library/actions/mobile/platform/native-session-name.mjs +14 -0
- package/library/actions/mobile/platform/native-session.mjs +59 -0
- package/library/actions/mobile/platform/observe-ui.mjs +9 -1
- package/library/actions/mobile/swap_bridge/native-session.mjs +10 -45
- package/library/actions/mobile/swap_bridge/select_assets.mjs +15 -1
- package/library/actions/mobile/swap_bridge/set_amount.mjs +1 -1
- package/library/actions/mobile/swap_bridge/set_max_amount.mjs +55 -0
- package/library/actions/mobile/swap_bridge/set_slippage.mjs +96 -0
- package/library/actions/mobile/swap_bridge/submit_transaction.mjs +141 -0
- package/library/actions/mobile/ui/native-navigation.mjs +120 -23
- package/library/actions/mobile/ui/navigate.mjs +13 -2
- package/library/actions/mobile/wallet/import.mjs +17 -10
- package/library/actions/mobile/wallet/lock.mjs +14 -0
- package/library/actions/mobile/wallet/native-ui.mjs +88 -15
- package/library/actions/shared/perps/visible-state.mjs +33 -11
- package/library/actions/shared/swap-bridge/visible-state.mjs +15 -0
- package/library/manifests/extension.action-manifest.json +1707 -1241
- package/library/manifests/mobile.action-manifest.json +308 -1
- package/library/recipes/assets/release-token-details.recipe.json +5 -4
- package/library/recipes/assets/release-token-hide-readd.recipe.json +2 -0
- package/library/recipes/{assets → extension/assets}/release-custom-network-token-persistence.recipe.json +1 -0
- package/library/recipes/{perps → extension/perps}/release-activity-filters.recipe.json +5 -5
- package/library/recipes/{perps → extension/perps}/release-funds-flows.recipe.json +3 -3
- package/library/recipes/extension/perps/release-live-limit-order.recipe.json +24 -19
- package/library/recipes/extension/perps/release-market-filters.recipe.json +97 -0
- package/library/recipes/extension/perps/release-order-entry.recipe.json +4 -1
- package/library/recipes/extension/perps/release-order-validation.recipe.json +53 -14
- package/library/recipes/extension/perps/release-visible-consistency.recipe.json +47 -0
- package/library/recipes/extension/perps/source-dev-snapshot-consistency.recipe.json +76 -0
- package/library/recipes/mobile/networks/release-custom-network-persistence.recipe.json +90 -0
- package/library/recipes/mobile/networks/release-multichain-visibility.recipe.json +58 -0
- package/library/recipes/perps/release-live-market-order.recipe.json +30 -13
- package/library/recipes/perps/release-market-details.recipe.json +1 -1
- package/library/recipes/perps/release-market-search.recipe.json +8 -4
- package/library/recipes/perps/release-watchlist.recipe.json +31 -19
- package/library/recipes/swap-bridge/release-custom-slippage.recipe.json +5 -13
- package/library/recipes/swap-bridge/release-quote.recipe.json +1 -0
- package/library/recipes/wallet/import.recipe.json +4 -14
- package/package.json +1 -1
- package/library/actions/extension/assets/finish_send.mjs +0 -128
- package/library/actions/extension/swap_bridge/submit_transaction.mjs +0 -363
- package/library/actions/extension/ui/activate_and_observe.mjs +0 -96
- package/library/recipes/assets/release-custom-gas-send.recipe.json +0 -88
- package/library/recipes/assets/release-native-max-cancel.recipe.json +0 -70
- package/library/recipes/assets/release-native-max-send.recipe.json +0 -78
- package/library/recipes/assets/release-own-account-send.recipe.json +0 -80
- package/library/recipes/extension/runner/action-validation.recipe.json +0 -343
|
@@ -1,343 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://farmslot.io/schemas/recipe-v1.schema.json",
|
|
3
|
-
"title": "MetaMask Extension action E2E validation",
|
|
4
|
-
"description": "Exercises every Extension manifest-declared action against mme-4 and leaves trace output for false-positive checks.",
|
|
5
|
-
"workflow": {
|
|
6
|
-
"entry": "prepare-files",
|
|
7
|
-
"nodes": {
|
|
8
|
-
"prepare-files": {
|
|
9
|
-
"action": "command",
|
|
10
|
-
"cmd": "mkdir -p temp/recipe-runner.action-validation && printf 'E2E_ACTION_VALIDATION extension\\n' > temp/recipe-runner.action-validation/probe.txt && printf '{\"platform\":\"extension\",\"ok\":true}\n' > temp/recipe-runner.action-validation/probe.json && printf 'extension log E2E_ACTION_VALIDATION\\n' >> temp/recipe-runner.action-validation/validation.log && echo E2E_ACTION_VALIDATION extension",
|
|
11
|
-
"next": "assert-command-exit",
|
|
12
|
-
"intent": "Prepare runner.action-validation probe files"
|
|
13
|
-
},
|
|
14
|
-
"assert-command-exit": {
|
|
15
|
-
"action": "assert_exit_code",
|
|
16
|
-
"source": "prepare-files",
|
|
17
|
-
"expected": 0,
|
|
18
|
-
"next": "assert-command-output",
|
|
19
|
-
"intent": "Verify the probe command exited successfully"
|
|
20
|
-
},
|
|
21
|
-
"assert-command-output": {
|
|
22
|
-
"action": "assert_output",
|
|
23
|
-
"source": "prepare-files",
|
|
24
|
-
"stream": "stdout",
|
|
25
|
-
"contains": "E2E_ACTION_VALIDATION extension",
|
|
26
|
-
"next": "assert-file",
|
|
27
|
-
"intent": "Verify the probe command produced expected output"
|
|
28
|
-
},
|
|
29
|
-
"assert-file": {
|
|
30
|
-
"action": "assert_file",
|
|
31
|
-
"path": "temp/recipe-runner.action-validation/probe.txt",
|
|
32
|
-
"contains": "E2E_ACTION_VALIDATION extension",
|
|
33
|
-
"next": "assert-json",
|
|
34
|
-
"intent": "Verify file assertions work"
|
|
35
|
-
},
|
|
36
|
-
"assert-json": {
|
|
37
|
-
"action": "assert_json",
|
|
38
|
-
"path": "temp/recipe-runner.action-validation/probe.json",
|
|
39
|
-
"assert": {
|
|
40
|
-
"path": "$.platform",
|
|
41
|
-
"operator": "eq",
|
|
42
|
-
"value": "extension"
|
|
43
|
-
},
|
|
44
|
-
"next": "watch-logs",
|
|
45
|
-
"intent": "Verify JSON assertions work"
|
|
46
|
-
},
|
|
47
|
-
"watch-logs": {
|
|
48
|
-
"action": "watch_logs",
|
|
49
|
-
"path": "temp/recipe-runner.action-validation/validation.log",
|
|
50
|
-
"contains": "E2E_ACTION_VALIDATION",
|
|
51
|
-
"next": "index-artifacts",
|
|
52
|
-
"intent": "Verify log watching works"
|
|
53
|
-
},
|
|
54
|
-
"index-artifacts": {
|
|
55
|
-
"action": "index_artifacts",
|
|
56
|
-
"artifacts": [
|
|
57
|
-
{
|
|
58
|
-
"path": "temp/recipe-runner.action-validation/probe.txt",
|
|
59
|
-
"type": "log",
|
|
60
|
-
"category": "debug",
|
|
61
|
-
"label": "Extension action validation probe"
|
|
62
|
-
}
|
|
63
|
-
],
|
|
64
|
-
"next": "wait",
|
|
65
|
-
"intent": "Register the probe file as an artifact"
|
|
66
|
-
},
|
|
67
|
-
"wait": {
|
|
68
|
-
"action": "wait",
|
|
69
|
-
"duration_ms": 1,
|
|
70
|
-
"next": "status",
|
|
71
|
-
"intent": "Verify the base wait action works"
|
|
72
|
-
},
|
|
73
|
-
"status": {
|
|
74
|
-
"action": "app.status",
|
|
75
|
-
"next": "app-hud",
|
|
76
|
-
"intent": "Read project runner compatibility status"
|
|
77
|
-
},
|
|
78
|
-
"cdp-probe": {
|
|
79
|
-
"action": "cdp.target",
|
|
80
|
-
"next": "wallet-unlock",
|
|
81
|
-
"required": true,
|
|
82
|
-
"intent": "Verify the automation channel is reachable"
|
|
83
|
-
},
|
|
84
|
-
"fixture": {
|
|
85
|
-
"action": "metamask.wallet.fixture_status",
|
|
86
|
-
"next": "wallet-setup",
|
|
87
|
-
"intent": "Verify wallet fixture availability"
|
|
88
|
-
},
|
|
89
|
-
"wallet-setup": {
|
|
90
|
-
"action": "metamask.wallet.setup",
|
|
91
|
-
"next": "cdp-probe",
|
|
92
|
-
"intent": "Verify wallet setup is ready"
|
|
93
|
-
},
|
|
94
|
-
"wallet-unlock": {
|
|
95
|
-
"action": "metamask.wallet.ensure_unlocked",
|
|
96
|
-
"next": "wallet-read-state",
|
|
97
|
-
"intent": "Ensure the wallet is unlocked"
|
|
98
|
-
},
|
|
99
|
-
"wallet-read-state": {
|
|
100
|
-
"action": "metamask.wallet.read_state",
|
|
101
|
-
"next": "wallet-list-accounts",
|
|
102
|
-
"intent": "Read wallet state for proof"
|
|
103
|
-
},
|
|
104
|
-
"wallet-list-accounts": {
|
|
105
|
-
"action": "metamask.wallet.list_accounts",
|
|
106
|
-
"next": "extension-account-list",
|
|
107
|
-
"intent": "List wallet accounts for proof"
|
|
108
|
-
},
|
|
109
|
-
"app-navigate-wallet": {
|
|
110
|
-
"action": "ui.navigate",
|
|
111
|
-
"next": "app-navigate-perps",
|
|
112
|
-
"intent": "Show the wallet home surface",
|
|
113
|
-
"hash": "#/"
|
|
114
|
-
},
|
|
115
|
-
"app-navigate-perps": {
|
|
116
|
-
"action": "ui.navigate",
|
|
117
|
-
"next": "ui-wait-perps",
|
|
118
|
-
"intent": "Open the Perps tab",
|
|
119
|
-
"page": "perps"
|
|
120
|
-
},
|
|
121
|
-
"ui-wait-perps": {
|
|
122
|
-
"action": "ui.wait_for",
|
|
123
|
-
"text": "Perps",
|
|
124
|
-
"expected": "visible",
|
|
125
|
-
"next": "ui-press",
|
|
126
|
-
"intent": "Confirm the Perps surface is ready"
|
|
127
|
-
},
|
|
128
|
-
"ui-press": {
|
|
129
|
-
"action": "ui.press",
|
|
130
|
-
"selector": "body",
|
|
131
|
-
"next": "ui-scroll",
|
|
132
|
-
"intent": "Activate the visible control"
|
|
133
|
-
},
|
|
134
|
-
"ui-scroll": {
|
|
135
|
-
"action": "ui.scroll",
|
|
136
|
-
"offset": 120,
|
|
137
|
-
"next": "ui-scroll-into-view",
|
|
138
|
-
"intent": "Expose the next visible content"
|
|
139
|
-
},
|
|
140
|
-
"ui-screenshot-perps": {
|
|
141
|
-
"action": "ui.screenshot",
|
|
142
|
-
"path": "screenshots/extension-perps-runner.action-validation.png",
|
|
143
|
-
"timeout_ms": 5000,
|
|
144
|
-
"next": "wallet-navigate-perps",
|
|
145
|
-
"intent": "Record the visible Perps state as evidence"
|
|
146
|
-
},
|
|
147
|
-
"wallet-navigate-perps": {
|
|
148
|
-
"action": "ui.navigate",
|
|
149
|
-
"next": "perps-navigate-home",
|
|
150
|
-
"intent": "Show the Perps home surface",
|
|
151
|
-
"page": "perps"
|
|
152
|
-
},
|
|
153
|
-
"perps-navigate-home": {
|
|
154
|
-
"action": "ui.navigate",
|
|
155
|
-
"next": "perps-navigate-market",
|
|
156
|
-
"intent": "Show the Perps home surface",
|
|
157
|
-
"page": "perps"
|
|
158
|
-
},
|
|
159
|
-
"perps-navigate-market": {
|
|
160
|
-
"action": "ui.navigate",
|
|
161
|
-
"next": "read-snapshot",
|
|
162
|
-
"intent": "Show the ETH Perps market details",
|
|
163
|
-
"page": "perps-market",
|
|
164
|
-
"market": "ETH"
|
|
165
|
-
},
|
|
166
|
-
"read-snapshot": {
|
|
167
|
-
"action": "metamask.perps.read_snapshot",
|
|
168
|
-
"include": [
|
|
169
|
-
"markets"
|
|
170
|
-
],
|
|
171
|
-
"markets": [
|
|
172
|
-
"ETH"
|
|
173
|
-
],
|
|
174
|
-
"next": "start-state",
|
|
175
|
-
"intent": "Read a bounded live Perps market snapshot"
|
|
176
|
-
},
|
|
177
|
-
"ensure-clean": {
|
|
178
|
-
"action": "metamask.perps.ensure_positions",
|
|
179
|
-
"market": "ETH",
|
|
180
|
-
"next": "ensure-orders-clean",
|
|
181
|
-
"state": "none",
|
|
182
|
-
"intent": "Ensure no positions are open",
|
|
183
|
-
"mode": "matching"
|
|
184
|
-
},
|
|
185
|
-
"assert-no-position": {
|
|
186
|
-
"action": "metamask.perps.assert_positions",
|
|
187
|
-
"market": "ETH",
|
|
188
|
-
"next": "read-orders-empty",
|
|
189
|
-
"state": "none",
|
|
190
|
-
"intent": "Confirm selected ETH position state is clean",
|
|
191
|
-
"mode": "matching"
|
|
192
|
-
},
|
|
193
|
-
"read-orders-empty": {
|
|
194
|
-
"action": "metamask.perps.read_orders",
|
|
195
|
-
"market": "ETH",
|
|
196
|
-
"next": "assert-no-orders",
|
|
197
|
-
"intent": "Read order state after cleanup"
|
|
198
|
-
},
|
|
199
|
-
"place-order": {
|
|
200
|
-
"action": "metamask.perps.place_order",
|
|
201
|
-
"market": "ETH",
|
|
202
|
-
"side": "long",
|
|
203
|
-
"amount": "11",
|
|
204
|
-
"leverage": 3,
|
|
205
|
-
"next": "read-positions",
|
|
206
|
-
"intent": "Place a small ETH 3x long validation order"
|
|
207
|
-
},
|
|
208
|
-
"read-positions": {
|
|
209
|
-
"action": "metamask.perps.read_positions",
|
|
210
|
-
"market": "ETH",
|
|
211
|
-
"next": "assert-position",
|
|
212
|
-
"intent": "Read ETH position after order placement"
|
|
213
|
-
},
|
|
214
|
-
"assert-position": {
|
|
215
|
-
"action": "metamask.perps.assert_positions",
|
|
216
|
-
"market": "ETH",
|
|
217
|
-
"next": "read-orders-open",
|
|
218
|
-
"state": "open",
|
|
219
|
-
"intent": "Confirm the ETH validation position opened"
|
|
220
|
-
},
|
|
221
|
-
"read-orders-open": {
|
|
222
|
-
"action": "metamask.perps.read_orders",
|
|
223
|
-
"market": "ETH",
|
|
224
|
-
"next": "close-orders",
|
|
225
|
-
"intent": "Read ETH orders before cleanup"
|
|
226
|
-
},
|
|
227
|
-
"assert-closed": {
|
|
228
|
-
"action": "metamask.perps.assert_positions",
|
|
229
|
-
"market": "ETH",
|
|
230
|
-
"next": "teardown-state",
|
|
231
|
-
"state": "none",
|
|
232
|
-
"intent": "Confirm global position cleanup completed",
|
|
233
|
-
"mode": "matching"
|
|
234
|
-
},
|
|
235
|
-
"done": {
|
|
236
|
-
"action": "end",
|
|
237
|
-
"status": "pass"
|
|
238
|
-
},
|
|
239
|
-
"ensure-orders-clean": {
|
|
240
|
-
"action": "metamask.perps.ensure_orders",
|
|
241
|
-
"market": "ETH",
|
|
242
|
-
"state": "none",
|
|
243
|
-
"next": "assert-no-position",
|
|
244
|
-
"intent": "Ensure no orders are open",
|
|
245
|
-
"mode": "matching"
|
|
246
|
-
},
|
|
247
|
-
"assert-no-orders": {
|
|
248
|
-
"action": "metamask.perps.assert_orders",
|
|
249
|
-
"market": "ETH",
|
|
250
|
-
"state": "none",
|
|
251
|
-
"next": "place-order",
|
|
252
|
-
"intent": "Confirm selected ETH order state is clean",
|
|
253
|
-
"mode": "matching"
|
|
254
|
-
},
|
|
255
|
-
"close-orders": {
|
|
256
|
-
"action": "metamask.perps.close_orders",
|
|
257
|
-
"market": "ETH",
|
|
258
|
-
"next": "close-positions",
|
|
259
|
-
"intent": "Close ETH orders created by validation"
|
|
260
|
-
},
|
|
261
|
-
"close-positions": {
|
|
262
|
-
"action": "metamask.perps.close_positions",
|
|
263
|
-
"market": "ETH",
|
|
264
|
-
"next": "assert-closed",
|
|
265
|
-
"intent": "Close the ETH validation position"
|
|
266
|
-
},
|
|
267
|
-
"start-state": {
|
|
268
|
-
"action": "metamask.perps.start_state",
|
|
269
|
-
"profile": "clean_market_testnet",
|
|
270
|
-
"market": "ETH",
|
|
271
|
-
"positions": {
|
|
272
|
-
"state": "none",
|
|
273
|
-
"mode": "matching"
|
|
274
|
-
},
|
|
275
|
-
"orders": {
|
|
276
|
-
"state": "none",
|
|
277
|
-
"mode": "matching"
|
|
278
|
-
},
|
|
279
|
-
"page": "market",
|
|
280
|
-
"next": "ensure-clean",
|
|
281
|
-
"intent": "Prepare selected-market clean testnet Perps validation state",
|
|
282
|
-
"mode": "matching"
|
|
283
|
-
},
|
|
284
|
-
"teardown-state": {
|
|
285
|
-
"action": "metamask.perps.teardown_state",
|
|
286
|
-
"market": "ETH",
|
|
287
|
-
"positions": {
|
|
288
|
-
"state": "none",
|
|
289
|
-
"mode": "matching"
|
|
290
|
-
},
|
|
291
|
-
"orders": {
|
|
292
|
-
"state": "none",
|
|
293
|
-
"mode": "matching"
|
|
294
|
-
},
|
|
295
|
-
"page": "home",
|
|
296
|
-
"next": "done",
|
|
297
|
-
"intent": "Return Perps to a selected-market clean home state",
|
|
298
|
-
"mode": "matching"
|
|
299
|
-
},
|
|
300
|
-
"app-hud": {
|
|
301
|
-
"action": "app.hud",
|
|
302
|
-
"text": "extension action parity validation",
|
|
303
|
-
"status": "running",
|
|
304
|
-
"next": "fixture",
|
|
305
|
-
"intent": "Start visible recipe progress HUD"
|
|
306
|
-
},
|
|
307
|
-
"select-account": {
|
|
308
|
-
"action": "metamask.wallet.select_account",
|
|
309
|
-
"address": "0x8dc623e964475d4d669da601fd15ea9125469003",
|
|
310
|
-
"next": "app-navigate-wallet",
|
|
311
|
-
"intent": "Select the validation account"
|
|
312
|
-
},
|
|
313
|
-
"ui-scroll-into-view": {
|
|
314
|
-
"action": "ui.scroll",
|
|
315
|
-
"selector": "body",
|
|
316
|
-
"scroll_into_view": true,
|
|
317
|
-
"next": "ui-screenshot-perps",
|
|
318
|
-
"intent": "Expose the extension content needed for proof"
|
|
319
|
-
},
|
|
320
|
-
"extension-account-list": {
|
|
321
|
-
"action": "ui.navigate",
|
|
322
|
-
"hash": "/account-list",
|
|
323
|
-
"next": "extension-account-search-visible",
|
|
324
|
-
"intent": "Open a harmless extension text input surface"
|
|
325
|
-
},
|
|
326
|
-
"extension-account-search-visible": {
|
|
327
|
-
"action": "ui.wait_for",
|
|
328
|
-
"selector": "[data-testid=multichain-account-list-search] input",
|
|
329
|
-
"visible": true,
|
|
330
|
-
"timeout_ms": 10000,
|
|
331
|
-
"next": "ui-set-input-account-search",
|
|
332
|
-
"intent": "Confirm account search is ready"
|
|
333
|
-
},
|
|
334
|
-
"ui-set-input-account-search": {
|
|
335
|
-
"action": "ui.set_input",
|
|
336
|
-
"selector": "[data-testid=multichain-account-list-search] input",
|
|
337
|
-
"value": "Account",
|
|
338
|
-
"next": "select-account",
|
|
339
|
-
"intent": "Filter the visible account list"
|
|
340
|
-
}
|
|
341
|
-
}
|
|
342
|
-
}
|
|
343
|
-
}
|