Skip to content

missing find_all=True #191

@eyayaw

Description

@eyayaw

# 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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions