Coder Social home page Coder Social logo

Comments (10)

stevepryde avatar stevepryde commented on July 21, 2024

The first option (breaking change) seems like the right approach here

from thirtyfour.

stevepryde avatar stevepryde commented on July 21, 2024

I assume the same should apply to get_property() and get_css_property()

from thirtyfour.

audioXD avatar audioXD commented on July 21, 2024

I agree with get_property(), but i don't know for get_css_property()...

from thirtyfour.

audioXD avatar audioXD commented on July 21, 2024

Wouldn't a CSS property always have a value, unless the name is invalid?

from thirtyfour.

audioXD avatar audioXD commented on July 21, 2024

I've tested it and when running

c.get("https://google.si").await?;
println!("Value: {:?}", c.query(By::Css(r#"html"#)).wait().first().await?.get_css_property("background-colo").await?);
println!("Value: {:?}", c.query(By::Css(r#"html"#)).wait().first().await?.get_css_property("background-color").await?);

It returns

Value: ""
Value: "rgba(0, 0, 0, 0)"

It returns a empty string if the name is invalid

from thirtyfour.

stevepryde avatar stevepryde commented on July 21, 2024

If you look at the code for get_attribute() you will see that if the value is not a string type then it converts it into a string. That should probably just return None instead (and Some if it is a string type).

from thirtyfour.

stevepryde avatar stevepryde commented on July 21, 2024

The same logic is used for the other two methods which is why I suggested they would benefit from the same change

from thirtyfour.

audioXD avatar audioXD commented on July 21, 2024

The standard for get_css_property() says that to return "" in the else case, so making it a Option (by checking if not a string) wouldn't do anything .

from thirtyfour.

stevepryde avatar stevepryde commented on July 21, 2024

Fair enough 👍

from thirtyfour.

stevepryde avatar stevepryde commented on July 21, 2024

Fixed in 9f506dc

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.