Skip to content

Commit

Permalink
docs - improve reading
Browse files Browse the repository at this point in the history
  • Loading branch information
jjpaulo2 committed Aug 3, 2024
1 parent db3e122 commit 7b25c61
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
10 changes: 5 additions & 5 deletions docs/elements/checkboxes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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()
Expand Down
2 changes: 2 additions & 0 deletions docs/elements/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand Down
2 changes: 1 addition & 1 deletion docs/elements/radio-inputs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7b25c61

Please sign in to comment.