We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc7e940 commit f518751Copy full SHA for f518751
docs/image.md
@@ -7,13 +7,13 @@ Niobium adds computer vision to Selenium.
7
You can locate an image in the page using the following method:
8
9
```python
10
- find_image(filename)
+ WebDriver.find_image(filename: str) -> ImageElement
11
```
12
13
And to find multiple images (this method returns a list)
14
15
16
- find_images(filename)
+ WebDriver.find_images(filename: str) -> list[ImageElement]
17
18
19
These methods have the same behavior than the classic `find_element` methods but they return an `ImageElement` instead of a `WebElement`.
0 commit comments