Coder Social home page Coder Social logo

Is there any "Selector"? about thirtyfour HOT 3 CLOSED

stevepryde avatar stevepryde commented on July 21, 2024
Is there any "Selector"?

from thirtyfour.

Comments (3)

stevepryde avatar stevepryde commented on July 21, 2024 5

I've added SelectElement in v0.22.2, which is a fairly direct port of the Select class from the python selenium library.

from thirtyfour.

stevepryde avatar stevepryde commented on July 21, 2024 2

The Select class in the python library is just a convenient wrapper around existing functionality. It uses WebElement.find_elements() to find any descendants with the "option" tag and then essentially applies a predicate to these options to figure out which one to click.

Thus far I've avoided adding a similar wrapper because:
(a) actual <select> elements are far less common these days (modern frameworks like bootstrap and material-ui code do dropdowns differently), and
(b) the python implementation actually doesn't open the dropdown (it "clicks" the option element directly) which might be undesirable if you're aiming to mimic what a user might do. For multi-select there is no "dropdown" so it's fine in that case.

To implement this yourself all you need to do is something like this (using your code as an example):

let elem = driver.find_element(By::Id("s1Id")).await?;
// Then one of the following depending on which type of search you want.

// By index.
elem.find_elements(By::Tag("option")).await?[1].click().await?;
// By value.
elem.find_element(By::XPath("option[@value='o2']")).await?.click().await?;
// By visible text - the python one is more complicated but I'm not sure you need it
elem.find_element(By::XPath("option[contains(text(), 'o3')]")).await?.click().await?;

I haven't tested this but some variant of it should work. Obviously the python implementation covers multi-select lists as well.
In the meantime I will leave this issue open and look at adding an official wrapper similar to the python one sometime.

from thirtyfour.

eucylin avatar eucylin commented on July 21, 2024

Ah, that makes sense! I tried the method you provided and it worked well as expected.
I'll also try the new Select class sometime.
Really appreciate your quick response. 😄

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.