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 3064a25 commit 9a0250cCopy full SHA for 9a0250c
docs/api-queries.md
@@ -383,8 +383,11 @@ display value.
383
384
#### `input`
385
386
+```html
387
+<input type="text" id="lastName" />
388
+```
389
+
390
```js
-;<input type="text" id="lastName" />
391
document.getElementById('lastName').value = 'Norris'
392
```
393
@@ -418,8 +421,11 @@ cy.getByDisplayValue('Norris').should('exist')
418
421
419
422
#### `textarea`
420
423
424
425
+<textarea id="messageTextArea" />
426
427
428
-;<textarea id="messageTextArea" />
429
document.getElementById('messageTextArea').value = 'Hello World'
430
431
0 commit comments