Skip to content

Commit 5e333fc

Browse files
changed editable to keyboard interactable as per W3C doc (#2472)
1 parent 6c26bdf commit 5e333fc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

website_and_docs/content/documentation/webdriver/elements/interactions.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ aliases: [
1111

1212
There are only 5 basic commands that can be executed on an element:
1313
* [click](https://w3c.github.io/webdriver/#element-click) (applies to any element)
14-
* [send keys](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
14+
* [send keys](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and keyboard interactable elements)
1515
* [clear](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
1616
* submit (only applies to form elements)
1717
* select (see [Select List Elements]({{< ref "select_lists.md" >}}))
@@ -76,7 +76,7 @@ Selenium will return an [element click intercepted](https://w3c.github.io/webdri
7676
## Send keys
7777

7878
The [element send keys command](https://w3c.github.io/webdriver/#dfn-element-send-keys)
79-
types the provided keys into an [editable](https://w3c.github.io/webdriver/#dfn-editable) element.
79+
types the provided keys into an [keyboard interactable](https://w3c.github.io/webdriver/#dfn-keyboard-interactable) element.
8080
Typically, this means an element is an input element of a form with a `text` type or an element
8181
with a `content-editable` attribute. If it is not editable,
8282
[an invalid element state](https://w3c.github.io/webdriver/#dfn-invalid-element-state) error is returned.

website_and_docs/content/documentation/webdriver/elements/interactions.ja.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ needsTranslation: true
99

1010
There are only 5 basic commands that can be executed on an element:
1111
* [click](https://w3c.github.io/webdriver/#element-click) (applies to any element)
12-
* [send keys](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
12+
* [send keys](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and keyboard interactable elements)
1313
* [clear](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
1414
* submit (only applies to form elements)
1515
* select (see [Select List Elements]({{< ref "select_lists.md" >}}))
@@ -73,7 +73,7 @@ Selenium will return an [element click intercepted](https://w3c.github.io/webdri
7373
## Send keys
7474

7575
The [element send keys command](https://w3c.github.io/webdriver/#dfn-element-send-keys)
76-
types the provided keys into an [editable](https://w3c.github.io/webdriver/#dfn-editable) element.
76+
types the provided keys into an [keyboard interactable](https://w3c.github.io/webdriver/#dfn-keyboard-interactable) element.
7777
Typically, this means an element is an input element of a form with a `text` type or an element
7878
with a `content-editable` attribute. If it is not editable,
7979
[an invalid element state](https://w3c.github.io/webdriver/#dfn-invalid-element-state) error is returned.

website_and_docs/content/documentation/webdriver/elements/interactions.pt-br.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ needsTranslation: true
99

1010
There are only 5 basic commands that can be executed on an element:
1111
* [click](https://w3c.github.io/webdriver/#element-click) (applies to any element)
12-
* [send keys](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
12+
* [send keys](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and keyboard interactable elements)
1313
* [clear](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
1414
* submit (only applies to form elements)
1515
* select (see [Select List Elements]({{< ref "select_lists.md" >}}))
@@ -74,7 +74,7 @@ Selenium will return an [element click intercepted](https://w3c.github.io/webdri
7474
## Send keys
7575

7676
The [element send keys command](https://w3c.github.io/webdriver/#dfn-element-send-keys)
77-
types the provided keys into an [editable](https://w3c.github.io/webdriver/#dfn-editable) element.
77+
types the provided keys into an [keyboard interactable](https://w3c.github.io/webdriver/#dfn-keyboard-interactable) element.
7878
Typically, this means an element is an input element of a form with a `text` type or an element
7979
with a `content-editable` attribute. If it is not editable,
8080
[an invalid element state](https://w3c.github.io/webdriver/#dfn-invalid-element-state) error is returned.

0 commit comments

Comments
 (0)