We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55c3891 commit 62ff26fCopy full SHA for 62ff26f
packages/integration-tests/suites/replay/privacyInput/test.ts
@@ -40,7 +40,11 @@ sentryTest('should mask input initial value and its changes', async ({ getLocalT
40
const text = 'test';
41
42
page.on('console', message => console.log(message.text()))
43
- await page.locator('#input').type(text, { delay: 25, timeout: 5000 });
+ const input = page.locator('#input');
44
+ await input.press('t')
45
+ await input.press('e')
46
+ await input.press('s')
47
48
console.log('input value: ', await page.locator('#input').inputValue());
49
await forceFlushReplay();
50
const allSnapshots = getIncrementalRecordingSnapshots(await reqPromise1);
0 commit comments