Coder Social home page Coder Social logo

Element query proposal about thirtyfour HOT 2 CLOSED

stevepryde avatar stevepryde commented on June 22, 2024
Element query proposal

from thirtyfour.

Comments (2)

stevepryde avatar stevepryde commented on June 22, 2024

This is turning out to be much more difficult than expected due to the existing design of thirtyfour :(

Closing this one and will follow up in thirtyfour_query if a solution presents itself.

from thirtyfour.

stevepryde avatar stevepryde commented on June 22, 2024

Managed to get this working - see the thirtyfour_query crate!
https://crates.io/crates/thirtyfour_query

With the new query interface you can do things like:

let elem_text =
        driver.query(By::Css("thiswont.match")).or(By::Id("searchInput")).first().await?;

This will execute both queries once per poll iteration and return the first one that matches.
You can also filter on one or both match arms like this:

driver.query(By::Css("thiswont.match")).with_text("testing").or(By::Id("searchInput")).with_class("search").and_not_enabled().first().await?;

To fetch all matching elements instead of just the first one, simply change first() to all() and you'll get a Vec instead. This will never return an empty Vec. If either first() or all() don't match anything, you'll get WebDriverError::NoSuchElement instead. The error message will show the selectors used.

from thirtyfour.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.