Skip to content

Commit 2057718

Browse files
committed
update cheat sheet
1 parent f41e1a2 commit 2057718

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -73,23 +73,23 @@ Open the extension manager with <kbd>ctrl</kbd>+<kbd>shift</kbd>+<kbd>X</kbd> (W
7373

7474
| Search Variants | Result |
7575
| ---------------- | --------------------------------------------- |
76-
| `getBy...` | `Element` or `Error` |
77-
| `getAllBy...` | `Element[]` or `Error` |
78-
| `queryBy...` | `Element` or `null` |
79-
| `queryAllBy...` | `Element[]` or `null` |
80-
| `findBy...` | `Promise<Element>` or `Promise<rejection>` |
81-
| `findAllBy...` | `Promise<Element[]>` or `Promise<rejection>` |
76+
| `getBy`... | `Element` or `Error` |
77+
| `getAllBy`... | `Element[]` or `Error` |
78+
| `queryBy`... | `Element` or `null` |
79+
| `queryAllBy`... | `Element[]` or `null` |
80+
| `findBy`... | `Promise<Element>` or `Promise<rejection>` |
81+
| `findAllBy`... | `Promise<Element[]>` or `Promise<rejection>` |
8282

8383
| Search Types | Result |
8484
| --------------------- | --------------------------------------------- |
85-
| `...Role` | `<div aria="role">` or [Aria Roles](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques#roles) |
86-
| `...LabelText` | `<label for="Text">` |
87-
| `...PlaceHolderText` | `<input placeholder="Text">` |
88-
| `...Text` | `<a href="/page">Text</a>` |
89-
| `...DisplayValue` | `<input value="Text">` |
90-
| `...AltText` | `<img alt="Text">` |
91-
| `...Title` | `<span title="Text">` or `<title>` |
92-
| `...TestId` | `<input data-testid="Id">` |
85+
| ...`Role` | `<div aria="role">` or [Aria Roles](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Techniques#roles) |
86+
| ...`LabelText` | `<label for="Text">` |
87+
| ...`PlaceHolderText` | `<input placeholder="Text">` |
88+
| ...`Text` | `<a href="/page">Text</a>` |
89+
| ...`DisplayValue` | `<input value="Text">` |
90+
| ...`AltText` | `<img alt="Text">` |
91+
| ...`Title` | `<span title="Text">` or `<title>` |
92+
| ...`TestId` | `<input data-testid="Id">` |
9393

9494
[Back to menu](#menu)
9595

0 commit comments

Comments
 (0)