Giter Club home page Giter Club logo

Comments (3)

mvysny avatar mvysny commented on August 21, 2024

So, to sum it up:

  • PolymerTemplate.getChildren() returns an empty list and it's going to stay like that.
  • even if I used the VirtualChildrenList workaround, I would not able to enumerate all components inside of the PolymerTemplate since there will be no server-side counterpart constructed for any component without an Id; so no Button for <vaadin-button> without id;
  • Even if I would be able to enumerate all of the components in a PolymerTemplate, it would be useless since you wouldn't be able to find a Button based on the caption since there is no DOM and the Button.text will be empty.

The only way is to access @Id-annotated fields in the PolymerTemplate directly, for example:

class ReviewsList : PolymerTemplate<TemplateModel>() {
    @Id("search")
    internal lateinit var search: TextField
    @Id("addReview")
    internal lateinit var addReview: Button
    // ...
}
test("create review") {
   val list = _get<ReviewsList>()
   list.addReview._click()
}

from karibu-testing.

mvysny avatar mvysny commented on August 21, 2024

Can't fix - this is unfortunately how Vaadin 10 works and there is nothing I can do about it.

from karibu-testing.

mvysny avatar mvysny commented on August 21, 2024

Example in Java:

public class ReviewsList extends PolymerTemplate<TemplateModel> {
    @Id("search")
    TextField search;
    @Id("addReview")
    Button addReview;
    // ...
}

@Test
public void createReviewTest() {
   ReviewsList list = _get(ReviewsList.class);
   _click(list.addReview);
}

from karibu-testing.

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.