@designcrowd/fe-shared-lib 1.8.3 → 1.8.4-edge-fallback-1
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/force-unsupported-hidden.png +0 -0
- package/force-unsupported-with-button.png +0 -0
- package/package.json +1 -1
- package/src/atoms/components/VoiceToTextButton/VoiceToTextButton.stories.ts +68 -0
- package/src/useVoiceToText.ts +58 -1
- package/.claude/scheduled_tasks.lock +0 -1
- package/.claude/settings.local.json +0 -54
- package/.claude/skills/playwright-cli/SKILL.md +0 -278
- package/.claude/skills/playwright-cli/references/request-mocking.md +0 -87
- package/.claude/skills/playwright-cli/references/running-code.md +0 -232
- package/.claude/skills/playwright-cli/references/session-management.md +0 -169
- package/.claude/skills/playwright-cli/references/storage-state.md +0 -275
- package/.claude/skills/playwright-cli/references/test-generation.md +0 -88
- package/.claude/skills/playwright-cli/references/tracing.md +0 -139
- package/.claude/skills/playwright-cli/references/video-recording.md +0 -43
- package/.playwright-cli/page-2026-04-27T23-43-18-200Z.yml +0 -68
- package/.playwright-cli/page-2026-04-28T01-20-32-525Z.yml +0 -451
|
@@ -1,232 +0,0 @@
|
|
|
1
|
-
# Running Custom Playwright Code
|
|
2
|
-
|
|
3
|
-
Use `run-code` to execute arbitrary Playwright code for advanced scenarios not covered by CLI commands.
|
|
4
|
-
|
|
5
|
-
## Syntax
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
playwright-cli run-code "async page => {
|
|
9
|
-
// Your Playwright code here
|
|
10
|
-
// Access page.context() for browser context operations
|
|
11
|
-
}"
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
## Geolocation
|
|
15
|
-
|
|
16
|
-
```bash
|
|
17
|
-
# Grant geolocation permission and set location
|
|
18
|
-
playwright-cli run-code "async page => {
|
|
19
|
-
await page.context().grantPermissions(['geolocation']);
|
|
20
|
-
await page.context().setGeolocation({ latitude: 37.7749, longitude: -122.4194 });
|
|
21
|
-
}"
|
|
22
|
-
|
|
23
|
-
# Set location to London
|
|
24
|
-
playwright-cli run-code "async page => {
|
|
25
|
-
await page.context().grantPermissions(['geolocation']);
|
|
26
|
-
await page.context().setGeolocation({ latitude: 51.5074, longitude: -0.1278 });
|
|
27
|
-
}"
|
|
28
|
-
|
|
29
|
-
# Clear geolocation override
|
|
30
|
-
playwright-cli run-code "async page => {
|
|
31
|
-
await page.context().clearPermissions();
|
|
32
|
-
}"
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
## Permissions
|
|
36
|
-
|
|
37
|
-
```bash
|
|
38
|
-
# Grant multiple permissions
|
|
39
|
-
playwright-cli run-code "async page => {
|
|
40
|
-
await page.context().grantPermissions([
|
|
41
|
-
'geolocation',
|
|
42
|
-
'notifications',
|
|
43
|
-
'camera',
|
|
44
|
-
'microphone'
|
|
45
|
-
]);
|
|
46
|
-
}"
|
|
47
|
-
|
|
48
|
-
# Grant permissions for specific origin
|
|
49
|
-
playwright-cli run-code "async page => {
|
|
50
|
-
await page.context().grantPermissions(['clipboard-read'], {
|
|
51
|
-
origin: 'https://example.com'
|
|
52
|
-
});
|
|
53
|
-
}"
|
|
54
|
-
```
|
|
55
|
-
|
|
56
|
-
## Media Emulation
|
|
57
|
-
|
|
58
|
-
```bash
|
|
59
|
-
# Emulate dark color scheme
|
|
60
|
-
playwright-cli run-code "async page => {
|
|
61
|
-
await page.emulateMedia({ colorScheme: 'dark' });
|
|
62
|
-
}"
|
|
63
|
-
|
|
64
|
-
# Emulate light color scheme
|
|
65
|
-
playwright-cli run-code "async page => {
|
|
66
|
-
await page.emulateMedia({ colorScheme: 'light' });
|
|
67
|
-
}"
|
|
68
|
-
|
|
69
|
-
# Emulate reduced motion
|
|
70
|
-
playwright-cli run-code "async page => {
|
|
71
|
-
await page.emulateMedia({ reducedMotion: 'reduce' });
|
|
72
|
-
}"
|
|
73
|
-
|
|
74
|
-
# Emulate print media
|
|
75
|
-
playwright-cli run-code "async page => {
|
|
76
|
-
await page.emulateMedia({ media: 'print' });
|
|
77
|
-
}"
|
|
78
|
-
```
|
|
79
|
-
|
|
80
|
-
## Wait Strategies
|
|
81
|
-
|
|
82
|
-
```bash
|
|
83
|
-
# Wait for network idle
|
|
84
|
-
playwright-cli run-code "async page => {
|
|
85
|
-
await page.waitForLoadState('networkidle');
|
|
86
|
-
}"
|
|
87
|
-
|
|
88
|
-
# Wait for specific element
|
|
89
|
-
playwright-cli run-code "async page => {
|
|
90
|
-
await page.waitForSelector('.loading', { state: 'hidden' });
|
|
91
|
-
}"
|
|
92
|
-
|
|
93
|
-
# Wait for function to return true
|
|
94
|
-
playwright-cli run-code "async page => {
|
|
95
|
-
await page.waitForFunction(() => window.appReady === true);
|
|
96
|
-
}"
|
|
97
|
-
|
|
98
|
-
# Wait with timeout
|
|
99
|
-
playwright-cli run-code "async page => {
|
|
100
|
-
await page.waitForSelector('.result', { timeout: 10000 });
|
|
101
|
-
}"
|
|
102
|
-
```
|
|
103
|
-
|
|
104
|
-
## Frames and Iframes
|
|
105
|
-
|
|
106
|
-
```bash
|
|
107
|
-
# Work with iframe
|
|
108
|
-
playwright-cli run-code "async page => {
|
|
109
|
-
const frame = page.locator('iframe#my-iframe').contentFrame();
|
|
110
|
-
await frame.locator('button').click();
|
|
111
|
-
}"
|
|
112
|
-
|
|
113
|
-
# Get all frames
|
|
114
|
-
playwright-cli run-code "async page => {
|
|
115
|
-
const frames = page.frames();
|
|
116
|
-
return frames.map(f => f.url());
|
|
117
|
-
}"
|
|
118
|
-
```
|
|
119
|
-
|
|
120
|
-
## File Downloads
|
|
121
|
-
|
|
122
|
-
```bash
|
|
123
|
-
# Handle file download
|
|
124
|
-
playwright-cli run-code "async page => {
|
|
125
|
-
const [download] = await Promise.all([
|
|
126
|
-
page.waitForEvent('download'),
|
|
127
|
-
page.click('a.download-link')
|
|
128
|
-
]);
|
|
129
|
-
await download.saveAs('./downloaded-file.pdf');
|
|
130
|
-
return download.suggestedFilename();
|
|
131
|
-
}"
|
|
132
|
-
```
|
|
133
|
-
|
|
134
|
-
## Clipboard
|
|
135
|
-
|
|
136
|
-
```bash
|
|
137
|
-
# Read clipboard (requires permission)
|
|
138
|
-
playwright-cli run-code "async page => {
|
|
139
|
-
await page.context().grantPermissions(['clipboard-read']);
|
|
140
|
-
return await page.evaluate(() => navigator.clipboard.readText());
|
|
141
|
-
}"
|
|
142
|
-
|
|
143
|
-
# Write to clipboard
|
|
144
|
-
playwright-cli run-code "async page => {
|
|
145
|
-
await page.evaluate(text => navigator.clipboard.writeText(text), 'Hello clipboard!');
|
|
146
|
-
}"
|
|
147
|
-
```
|
|
148
|
-
|
|
149
|
-
## Page Information
|
|
150
|
-
|
|
151
|
-
```bash
|
|
152
|
-
# Get page title
|
|
153
|
-
playwright-cli run-code "async page => {
|
|
154
|
-
return await page.title();
|
|
155
|
-
}"
|
|
156
|
-
|
|
157
|
-
# Get current URL
|
|
158
|
-
playwright-cli run-code "async page => {
|
|
159
|
-
return page.url();
|
|
160
|
-
}"
|
|
161
|
-
|
|
162
|
-
# Get page content
|
|
163
|
-
playwright-cli run-code "async page => {
|
|
164
|
-
return await page.content();
|
|
165
|
-
}"
|
|
166
|
-
|
|
167
|
-
# Get viewport size
|
|
168
|
-
playwright-cli run-code "async page => {
|
|
169
|
-
return page.viewportSize();
|
|
170
|
-
}"
|
|
171
|
-
```
|
|
172
|
-
|
|
173
|
-
## JavaScript Execution
|
|
174
|
-
|
|
175
|
-
```bash
|
|
176
|
-
# Execute JavaScript and return result
|
|
177
|
-
playwright-cli run-code "async page => {
|
|
178
|
-
return await page.evaluate(() => {
|
|
179
|
-
return {
|
|
180
|
-
userAgent: navigator.userAgent,
|
|
181
|
-
language: navigator.language,
|
|
182
|
-
cookiesEnabled: navigator.cookieEnabled
|
|
183
|
-
};
|
|
184
|
-
});
|
|
185
|
-
}"
|
|
186
|
-
|
|
187
|
-
# Pass arguments to evaluate
|
|
188
|
-
playwright-cli run-code "async page => {
|
|
189
|
-
const multiplier = 5;
|
|
190
|
-
return await page.evaluate(m => document.querySelectorAll('li').length * m, multiplier);
|
|
191
|
-
}"
|
|
192
|
-
```
|
|
193
|
-
|
|
194
|
-
## Error Handling
|
|
195
|
-
|
|
196
|
-
```bash
|
|
197
|
-
# Try-catch in run-code
|
|
198
|
-
playwright-cli run-code "async page => {
|
|
199
|
-
try {
|
|
200
|
-
await page.click('.maybe-missing', { timeout: 1000 });
|
|
201
|
-
return 'clicked';
|
|
202
|
-
} catch (e) {
|
|
203
|
-
return 'element not found';
|
|
204
|
-
}
|
|
205
|
-
}"
|
|
206
|
-
```
|
|
207
|
-
|
|
208
|
-
## Complex Workflows
|
|
209
|
-
|
|
210
|
-
```bash
|
|
211
|
-
# Login and save state
|
|
212
|
-
playwright-cli run-code "async page => {
|
|
213
|
-
await page.goto('https://example.com/login');
|
|
214
|
-
await page.fill('input[name=email]', 'user@example.com');
|
|
215
|
-
await page.fill('input[name=password]', 'secret');
|
|
216
|
-
await page.click('button[type=submit]');
|
|
217
|
-
await page.waitForURL('**/dashboard');
|
|
218
|
-
await page.context().storageState({ path: 'auth.json' });
|
|
219
|
-
return 'Login successful';
|
|
220
|
-
}"
|
|
221
|
-
|
|
222
|
-
# Scrape data from multiple pages
|
|
223
|
-
playwright-cli run-code "async page => {
|
|
224
|
-
const results = [];
|
|
225
|
-
for (let i = 1; i <= 3; i++) {
|
|
226
|
-
await page.goto(\`https://example.com/page/\${i}\`);
|
|
227
|
-
const items = await page.locator('.item').allTextContents();
|
|
228
|
-
results.push(...items);
|
|
229
|
-
}
|
|
230
|
-
return results;
|
|
231
|
-
}"
|
|
232
|
-
```
|
|
@@ -1,169 +0,0 @@
|
|
|
1
|
-
# Browser Session Management
|
|
2
|
-
|
|
3
|
-
Run multiple isolated browser sessions concurrently with state persistence.
|
|
4
|
-
|
|
5
|
-
## Named Browser Sessions
|
|
6
|
-
|
|
7
|
-
Use `-s` flag to isolate browser contexts:
|
|
8
|
-
|
|
9
|
-
```bash
|
|
10
|
-
# Browser 1: Authentication flow
|
|
11
|
-
playwright-cli -s=auth open https://app.example.com/login
|
|
12
|
-
|
|
13
|
-
# Browser 2: Public browsing (separate cookies, storage)
|
|
14
|
-
playwright-cli -s=public open https://example.com
|
|
15
|
-
|
|
16
|
-
# Commands are isolated by browser session
|
|
17
|
-
playwright-cli -s=auth fill e1 "user@example.com"
|
|
18
|
-
playwright-cli -s=public snapshot
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## Browser Session Isolation Properties
|
|
22
|
-
|
|
23
|
-
Each browser session has independent:
|
|
24
|
-
- Cookies
|
|
25
|
-
- LocalStorage / SessionStorage
|
|
26
|
-
- IndexedDB
|
|
27
|
-
- Cache
|
|
28
|
-
- Browsing history
|
|
29
|
-
- Open tabs
|
|
30
|
-
|
|
31
|
-
## Browser Session Commands
|
|
32
|
-
|
|
33
|
-
```bash
|
|
34
|
-
# List all browser sessions
|
|
35
|
-
playwright-cli list
|
|
36
|
-
|
|
37
|
-
# Stop a browser session (close the browser)
|
|
38
|
-
playwright-cli close # stop the default browser
|
|
39
|
-
playwright-cli -s=mysession close # stop a named browser
|
|
40
|
-
|
|
41
|
-
# Stop all browser sessions
|
|
42
|
-
playwright-cli close-all
|
|
43
|
-
|
|
44
|
-
# Forcefully kill all daemon processes (for stale/zombie processes)
|
|
45
|
-
playwright-cli kill-all
|
|
46
|
-
|
|
47
|
-
# Delete browser session user data (profile directory)
|
|
48
|
-
playwright-cli delete-data # delete default browser data
|
|
49
|
-
playwright-cli -s=mysession delete-data # delete named browser data
|
|
50
|
-
```
|
|
51
|
-
|
|
52
|
-
## Environment Variable
|
|
53
|
-
|
|
54
|
-
Set a default browser session name via environment variable:
|
|
55
|
-
|
|
56
|
-
```bash
|
|
57
|
-
export PLAYWRIGHT_CLI_SESSION="mysession"
|
|
58
|
-
playwright-cli open example.com # Uses "mysession" automatically
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
## Common Patterns
|
|
62
|
-
|
|
63
|
-
### Concurrent Scraping
|
|
64
|
-
|
|
65
|
-
```bash
|
|
66
|
-
#!/bin/bash
|
|
67
|
-
# Scrape multiple sites concurrently
|
|
68
|
-
|
|
69
|
-
# Start all browsers
|
|
70
|
-
playwright-cli -s=site1 open https://site1.com &
|
|
71
|
-
playwright-cli -s=site2 open https://site2.com &
|
|
72
|
-
playwright-cli -s=site3 open https://site3.com &
|
|
73
|
-
wait
|
|
74
|
-
|
|
75
|
-
# Take snapshots from each
|
|
76
|
-
playwright-cli -s=site1 snapshot
|
|
77
|
-
playwright-cli -s=site2 snapshot
|
|
78
|
-
playwright-cli -s=site3 snapshot
|
|
79
|
-
|
|
80
|
-
# Cleanup
|
|
81
|
-
playwright-cli close-all
|
|
82
|
-
```
|
|
83
|
-
|
|
84
|
-
### A/B Testing Sessions
|
|
85
|
-
|
|
86
|
-
```bash
|
|
87
|
-
# Test different user experiences
|
|
88
|
-
playwright-cli -s=variant-a open "https://app.com?variant=a"
|
|
89
|
-
playwright-cli -s=variant-b open "https://app.com?variant=b"
|
|
90
|
-
|
|
91
|
-
# Compare
|
|
92
|
-
playwright-cli -s=variant-a screenshot
|
|
93
|
-
playwright-cli -s=variant-b screenshot
|
|
94
|
-
```
|
|
95
|
-
|
|
96
|
-
### Persistent Profile
|
|
97
|
-
|
|
98
|
-
By default, browser profile is kept in memory only. Use `--persistent` flag on `open` to persist the browser profile to disk:
|
|
99
|
-
|
|
100
|
-
```bash
|
|
101
|
-
# Use persistent profile (auto-generated location)
|
|
102
|
-
playwright-cli open https://example.com --persistent
|
|
103
|
-
|
|
104
|
-
# Use persistent profile with custom directory
|
|
105
|
-
playwright-cli open https://example.com --profile=/path/to/profile
|
|
106
|
-
```
|
|
107
|
-
|
|
108
|
-
## Default Browser Session
|
|
109
|
-
|
|
110
|
-
When `-s` is omitted, commands use the default browser session:
|
|
111
|
-
|
|
112
|
-
```bash
|
|
113
|
-
# These use the same default browser session
|
|
114
|
-
playwright-cli open https://example.com
|
|
115
|
-
playwright-cli snapshot
|
|
116
|
-
playwright-cli close # Stops default browser
|
|
117
|
-
```
|
|
118
|
-
|
|
119
|
-
## Browser Session Configuration
|
|
120
|
-
|
|
121
|
-
Configure a browser session with specific settings when opening:
|
|
122
|
-
|
|
123
|
-
```bash
|
|
124
|
-
# Open with config file
|
|
125
|
-
playwright-cli open https://example.com --config=.playwright/my-cli.json
|
|
126
|
-
|
|
127
|
-
# Open with specific browser
|
|
128
|
-
playwright-cli open https://example.com --browser=firefox
|
|
129
|
-
|
|
130
|
-
# Open in headed mode
|
|
131
|
-
playwright-cli open https://example.com --headed
|
|
132
|
-
|
|
133
|
-
# Open with persistent profile
|
|
134
|
-
playwright-cli open https://example.com --persistent
|
|
135
|
-
```
|
|
136
|
-
|
|
137
|
-
## Best Practices
|
|
138
|
-
|
|
139
|
-
### 1. Name Browser Sessions Semantically
|
|
140
|
-
|
|
141
|
-
```bash
|
|
142
|
-
# GOOD: Clear purpose
|
|
143
|
-
playwright-cli -s=github-auth open https://github.com
|
|
144
|
-
playwright-cli -s=docs-scrape open https://docs.example.com
|
|
145
|
-
|
|
146
|
-
# AVOID: Generic names
|
|
147
|
-
playwright-cli -s=s1 open https://github.com
|
|
148
|
-
```
|
|
149
|
-
|
|
150
|
-
### 2. Always Clean Up
|
|
151
|
-
|
|
152
|
-
```bash
|
|
153
|
-
# Stop browsers when done
|
|
154
|
-
playwright-cli -s=auth close
|
|
155
|
-
playwright-cli -s=scrape close
|
|
156
|
-
|
|
157
|
-
# Or stop all at once
|
|
158
|
-
playwright-cli close-all
|
|
159
|
-
|
|
160
|
-
# If browsers become unresponsive or zombie processes remain
|
|
161
|
-
playwright-cli kill-all
|
|
162
|
-
```
|
|
163
|
-
|
|
164
|
-
### 3. Delete Stale Browser Data
|
|
165
|
-
|
|
166
|
-
```bash
|
|
167
|
-
# Remove old browser data to free disk space
|
|
168
|
-
playwright-cli -s=oldsession delete-data
|
|
169
|
-
```
|
|
@@ -1,275 +0,0 @@
|
|
|
1
|
-
# Storage Management
|
|
2
|
-
|
|
3
|
-
Manage cookies, localStorage, sessionStorage, and browser storage state.
|
|
4
|
-
|
|
5
|
-
## Storage State
|
|
6
|
-
|
|
7
|
-
Save and restore complete browser state including cookies and storage.
|
|
8
|
-
|
|
9
|
-
### Save Storage State
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
# Save to auto-generated filename (storage-state-{timestamp}.json)
|
|
13
|
-
playwright-cli state-save
|
|
14
|
-
|
|
15
|
-
# Save to specific filename
|
|
16
|
-
playwright-cli state-save my-auth-state.json
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
### Restore Storage State
|
|
20
|
-
|
|
21
|
-
```bash
|
|
22
|
-
# Load storage state from file
|
|
23
|
-
playwright-cli state-load my-auth-state.json
|
|
24
|
-
|
|
25
|
-
# Reload page to apply cookies
|
|
26
|
-
playwright-cli open https://example.com
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
### Storage State File Format
|
|
30
|
-
|
|
31
|
-
The saved file contains:
|
|
32
|
-
|
|
33
|
-
```json
|
|
34
|
-
{
|
|
35
|
-
"cookies": [
|
|
36
|
-
{
|
|
37
|
-
"name": "session_id",
|
|
38
|
-
"value": "abc123",
|
|
39
|
-
"domain": "example.com",
|
|
40
|
-
"path": "/",
|
|
41
|
-
"expires": 1735689600,
|
|
42
|
-
"httpOnly": true,
|
|
43
|
-
"secure": true,
|
|
44
|
-
"sameSite": "Lax"
|
|
45
|
-
}
|
|
46
|
-
],
|
|
47
|
-
"origins": [
|
|
48
|
-
{
|
|
49
|
-
"origin": "https://example.com",
|
|
50
|
-
"localStorage": [
|
|
51
|
-
{ "name": "theme", "value": "dark" },
|
|
52
|
-
{ "name": "user_id", "value": "12345" }
|
|
53
|
-
]
|
|
54
|
-
}
|
|
55
|
-
]
|
|
56
|
-
}
|
|
57
|
-
```
|
|
58
|
-
|
|
59
|
-
## Cookies
|
|
60
|
-
|
|
61
|
-
### List All Cookies
|
|
62
|
-
|
|
63
|
-
```bash
|
|
64
|
-
playwright-cli cookie-list
|
|
65
|
-
```
|
|
66
|
-
|
|
67
|
-
### Filter Cookies by Domain
|
|
68
|
-
|
|
69
|
-
```bash
|
|
70
|
-
playwright-cli cookie-list --domain=example.com
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
### Filter Cookies by Path
|
|
74
|
-
|
|
75
|
-
```bash
|
|
76
|
-
playwright-cli cookie-list --path=/api
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
### Get Specific Cookie
|
|
80
|
-
|
|
81
|
-
```bash
|
|
82
|
-
playwright-cli cookie-get session_id
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
### Set a Cookie
|
|
86
|
-
|
|
87
|
-
```bash
|
|
88
|
-
# Basic cookie
|
|
89
|
-
playwright-cli cookie-set session abc123
|
|
90
|
-
|
|
91
|
-
# Cookie with options
|
|
92
|
-
playwright-cli cookie-set session abc123 --domain=example.com --path=/ --httpOnly --secure --sameSite=Lax
|
|
93
|
-
|
|
94
|
-
# Cookie with expiration (Unix timestamp)
|
|
95
|
-
playwright-cli cookie-set remember_me token123 --expires=1735689600
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
### Delete a Cookie
|
|
99
|
-
|
|
100
|
-
```bash
|
|
101
|
-
playwright-cli cookie-delete session_id
|
|
102
|
-
```
|
|
103
|
-
|
|
104
|
-
### Clear All Cookies
|
|
105
|
-
|
|
106
|
-
```bash
|
|
107
|
-
playwright-cli cookie-clear
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
### Advanced: Multiple Cookies or Custom Options
|
|
111
|
-
|
|
112
|
-
For complex scenarios like adding multiple cookies at once, use `run-code`:
|
|
113
|
-
|
|
114
|
-
```bash
|
|
115
|
-
playwright-cli run-code "async page => {
|
|
116
|
-
await page.context().addCookies([
|
|
117
|
-
{ name: 'session_id', value: 'sess_abc123', domain: 'example.com', path: '/', httpOnly: true },
|
|
118
|
-
{ name: 'preferences', value: JSON.stringify({ theme: 'dark' }), domain: 'example.com', path: '/' }
|
|
119
|
-
]);
|
|
120
|
-
}"
|
|
121
|
-
```
|
|
122
|
-
|
|
123
|
-
## Local Storage
|
|
124
|
-
|
|
125
|
-
### List All localStorage Items
|
|
126
|
-
|
|
127
|
-
```bash
|
|
128
|
-
playwright-cli localstorage-list
|
|
129
|
-
```
|
|
130
|
-
|
|
131
|
-
### Get Single Value
|
|
132
|
-
|
|
133
|
-
```bash
|
|
134
|
-
playwright-cli localstorage-get token
|
|
135
|
-
```
|
|
136
|
-
|
|
137
|
-
### Set Value
|
|
138
|
-
|
|
139
|
-
```bash
|
|
140
|
-
playwright-cli localstorage-set theme dark
|
|
141
|
-
```
|
|
142
|
-
|
|
143
|
-
### Set JSON Value
|
|
144
|
-
|
|
145
|
-
```bash
|
|
146
|
-
playwright-cli localstorage-set user_settings '{"theme":"dark","language":"en"}'
|
|
147
|
-
```
|
|
148
|
-
|
|
149
|
-
### Delete Single Item
|
|
150
|
-
|
|
151
|
-
```bash
|
|
152
|
-
playwright-cli localstorage-delete token
|
|
153
|
-
```
|
|
154
|
-
|
|
155
|
-
### Clear All localStorage
|
|
156
|
-
|
|
157
|
-
```bash
|
|
158
|
-
playwright-cli localstorage-clear
|
|
159
|
-
```
|
|
160
|
-
|
|
161
|
-
### Advanced: Multiple Operations
|
|
162
|
-
|
|
163
|
-
For complex scenarios like setting multiple values at once, use `run-code`:
|
|
164
|
-
|
|
165
|
-
```bash
|
|
166
|
-
playwright-cli run-code "async page => {
|
|
167
|
-
await page.evaluate(() => {
|
|
168
|
-
localStorage.setItem('token', 'jwt_abc123');
|
|
169
|
-
localStorage.setItem('user_id', '12345');
|
|
170
|
-
localStorage.setItem('expires_at', Date.now() + 3600000);
|
|
171
|
-
});
|
|
172
|
-
}"
|
|
173
|
-
```
|
|
174
|
-
|
|
175
|
-
## Session Storage
|
|
176
|
-
|
|
177
|
-
### List All sessionStorage Items
|
|
178
|
-
|
|
179
|
-
```bash
|
|
180
|
-
playwright-cli sessionstorage-list
|
|
181
|
-
```
|
|
182
|
-
|
|
183
|
-
### Get Single Value
|
|
184
|
-
|
|
185
|
-
```bash
|
|
186
|
-
playwright-cli sessionstorage-get form_data
|
|
187
|
-
```
|
|
188
|
-
|
|
189
|
-
### Set Value
|
|
190
|
-
|
|
191
|
-
```bash
|
|
192
|
-
playwright-cli sessionstorage-set step 3
|
|
193
|
-
```
|
|
194
|
-
|
|
195
|
-
### Delete Single Item
|
|
196
|
-
|
|
197
|
-
```bash
|
|
198
|
-
playwright-cli sessionstorage-delete step
|
|
199
|
-
```
|
|
200
|
-
|
|
201
|
-
### Clear sessionStorage
|
|
202
|
-
|
|
203
|
-
```bash
|
|
204
|
-
playwright-cli sessionstorage-clear
|
|
205
|
-
```
|
|
206
|
-
|
|
207
|
-
## IndexedDB
|
|
208
|
-
|
|
209
|
-
### List Databases
|
|
210
|
-
|
|
211
|
-
```bash
|
|
212
|
-
playwright-cli run-code "async page => {
|
|
213
|
-
return await page.evaluate(async () => {
|
|
214
|
-
const databases = await indexedDB.databases();
|
|
215
|
-
return databases;
|
|
216
|
-
});
|
|
217
|
-
}"
|
|
218
|
-
```
|
|
219
|
-
|
|
220
|
-
### Delete Database
|
|
221
|
-
|
|
222
|
-
```bash
|
|
223
|
-
playwright-cli run-code "async page => {
|
|
224
|
-
await page.evaluate(() => {
|
|
225
|
-
indexedDB.deleteDatabase('myDatabase');
|
|
226
|
-
});
|
|
227
|
-
}"
|
|
228
|
-
```
|
|
229
|
-
|
|
230
|
-
## Common Patterns
|
|
231
|
-
|
|
232
|
-
### Authentication State Reuse
|
|
233
|
-
|
|
234
|
-
```bash
|
|
235
|
-
# Step 1: Login and save state
|
|
236
|
-
playwright-cli open https://app.example.com/login
|
|
237
|
-
playwright-cli snapshot
|
|
238
|
-
playwright-cli fill e1 "user@example.com"
|
|
239
|
-
playwright-cli fill e2 "password123"
|
|
240
|
-
playwright-cli click e3
|
|
241
|
-
|
|
242
|
-
# Save the authenticated state
|
|
243
|
-
playwright-cli state-save auth.json
|
|
244
|
-
|
|
245
|
-
# Step 2: Later, restore state and skip login
|
|
246
|
-
playwright-cli state-load auth.json
|
|
247
|
-
playwright-cli open https://app.example.com/dashboard
|
|
248
|
-
# Already logged in!
|
|
249
|
-
```
|
|
250
|
-
|
|
251
|
-
### Save and Restore Roundtrip
|
|
252
|
-
|
|
253
|
-
```bash
|
|
254
|
-
# Set up authentication state
|
|
255
|
-
playwright-cli open https://example.com
|
|
256
|
-
playwright-cli eval "() => { document.cookie = 'session=abc123'; localStorage.setItem('user', 'john'); }"
|
|
257
|
-
|
|
258
|
-
# Save state to file
|
|
259
|
-
playwright-cli state-save my-session.json
|
|
260
|
-
|
|
261
|
-
# ... later, in a new session ...
|
|
262
|
-
|
|
263
|
-
# Restore state
|
|
264
|
-
playwright-cli state-load my-session.json
|
|
265
|
-
playwright-cli open https://example.com
|
|
266
|
-
# Cookies and localStorage are restored!
|
|
267
|
-
```
|
|
268
|
-
|
|
269
|
-
## Security Notes
|
|
270
|
-
|
|
271
|
-
- Never commit storage state files containing auth tokens
|
|
272
|
-
- Add `*.auth-state.json` to `.gitignore`
|
|
273
|
-
- Delete state files after automation completes
|
|
274
|
-
- Use environment variables for sensitive data
|
|
275
|
-
- By default, sessions run in-memory mode which is safer for sensitive operations
|