-
-
Notifications
You must be signed in to change notification settings - Fork 272
Closed
Description
pydoll/docs/deep-dive/event-system.md
Lines 173 to 175 in 85609e9
# Access tab methods directly | |
elements = await tab.find(tag_name="a") | |
print(f"Found {len(elements)} links on the new page") |
Without find_all=True
, we get a WebElement which does not have a meth
(😉) len
.
Intended was a list of WebElements?
elements = await tab.find(tag_name="a", find_all=True)
Metadata
Metadata
Assignees
Labels
No labels