diff --git a/docs/elements/checkboxes.md b/docs/elements/checkboxes.md index 82a1f49..338a30e 100644 --- a/docs/elements/checkboxes.md +++ b/docs/elements/checkboxes.md @@ -30,7 +30,7 @@ fastrpa.core.elements.CheckboxElement ## Reference -### Get if is checked +### Get if it's checked ```python linenums="1" my_check.is_checked @@ -40,17 +40,17 @@ my_check.is_checked False ``` -### Mark as checked +### Set as checked -Only marks the checkbox as checked/active. +Only set the checkbox as checked/active. ```python linenums="1" my_radio.check() ``` -### Mark as unchecked +### Set as unchecked -Only marks the checkbox as unchecked/inactive. +Only set the checkbox as unchecked/inactive. ```python linenums="1" my_radio.uncheck() diff --git a/docs/elements/index.md b/docs/elements/index.md index 04d3ad3..84515dc 100644 --- a/docs/elements/index.md +++ b/docs/elements/index.md @@ -99,6 +99,8 @@ There is some abstractions that implements actions and rules for specific elemen | [`Element`](#element-reference) | any element | | [`InputElement`](./inputs.md) | `input`, `textarea` | | [`FileInputElement`](./file-inputs.md) | `input type="file"` | +| [`RadioInputElement`](./radio-inputs.md) | `input type="radio"` | +| [`CheckboxElement`](./checkboxes.md) | `input type="checkbox"` | | [`SelectElement`](./selects.md) | `select` | | [`ListElement`](./lists.md) | `ol`, `ul` | | [`ButtonElement`](./buttons.md) | `button`, `a` | diff --git a/docs/elements/radio-inputs.md b/docs/elements/radio-inputs.md index 7e61589..d9e722c 100644 --- a/docs/elements/radio-inputs.md +++ b/docs/elements/radio-inputs.md @@ -32,7 +32,7 @@ fastrpa.core.elements.RadioInputElement ### Get all radio options -Given one radio element, you can query by another options for that same input `@name` attribute. This method will returns a dict with radio values and it's respective label text associated. +Given one radio element, you can query by another options with same `@name` attribute. This method will returns a dict with radio values and it's respective label text associated. ```python linenums="1" my_radio.options