Code Monkey home page Code Monkey logo

Comments (8)

MathildeLemee avatar MathildeLemee commented on June 1, 2024

Does chaining the class work ?
.class1.class2 ?

from fluentlenium.

jplehmann avatar jplehmann commented on June 1, 2024

Yikes, that's obvious isn't it (I meant to concatenate instead of cascade). I will try tomorrow and report. In any case I will still have some questions (e.g., why can't a class be used in a filter). Thanks.

from fluentlenium.

jplehmann avatar jplehmann commented on June 1, 2024

Yes, concatenation works findFirst(".class1.class2"). Also, I discovered that classes can be retrieved with element.getAttribute("class").

Following that convention, I have understood that filtering on classes can be achieved with the attribute filter: with("class").

Deprecated way:

browser.findFirst("#top-menu", with("class", contains("nav")));

Current way:

browser.findFirst("#top-menu", with("class").contains("nav"));

Except, this isn't quite right either, because contains is just a substring search. You really need:

browser.findFirst("#top-menu", with("class").contains(regex("\\bnav\\b")));

Would be really convenient to have this in a withClass filter.

thanks!

from fluentlenium.

MathildeLemee avatar MathildeLemee commented on June 1, 2024

Why not just use with("class").equalTo("nav")); ?

from fluentlenium.

jplehmann avatar jplehmann commented on June 1, 2024

I believe when there is more than one class this will not work.

from fluentlenium.

MathildeLemee avatar MathildeLemee commented on June 1, 2024

We now have browser.findFirst("#top-menu", withClass().containsWord("nav")));

For multiple classes, browser.findFirst("#top-menu", withClass().containsWord("nav"),withClass().containsWord("nav2")));

We keep looking of a more "fluent" syntax but does that sounds good for your need ?

from fluentlenium.

jplehmann avatar jplehmann commented on June 1, 2024

Thanks so much for adding withClass and containsWord. This is much better than before, and I would think a lot of people would use it.

For future readers, this was added in: 5a22ae7

from fluentlenium.

MathildeLemee avatar MathildeLemee commented on June 1, 2024

It's now available on 0.7.9

from fluentlenium.

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.