Git Product home page Git Product logo

Comments (3)

zoechi avatar zoechi commented on July 27, 2024

I got it working by embedding the classes of this package within my own and forward all calls. This is quite verbose and cumbersome. It would be nice if there were an easier way.

from webdriver.dart.

DrMarcII avatar DrMarcII commented on July 27, 2024

Your approach with delegation was actually what I was going to suggest (I just got distracted with life and hadn't had a chance to respond). In general, I prefer composition over inheritance, so I designed these classes with that in mind.

So why did you find the delegation approach verbose? You can trivially forward all calls using noSuchMethod, and then only have to write code for any new methods you added or existing methods that you want to modify.

Where I can see problems now are with _post, _get, and _delete being private on _WebDriverBase (if you are also creating delegating wrappers for non-WebDriver classes such as WebElement), and I have no problem with making these public if needed.

Additionally, the .driver field of any object that extends _WebDriverBase will point to the original WebDriver instance, not to your wrapper. If this causes you problems, I am sure that we could come up with a way to work around it.

from webdriver.dart.

zoechi avatar zoechi commented on July 27, 2024

I guess you're right with composition being the better approach anyway.
I wrapped some of the classes already and didn't run into any further issues so far.
If something comes up I'll create a new issue.
I banned noSuchMethod from my memory because of the issues it causes on client side (code bloat), but I think it's time to reconsider, I have no plans running this code in the browser anyway.
Thanks for your time!

from webdriver.dart.

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.