Joel Robertson
Joel Robertson
I’m still majorly struggling with creating Custom Testers. The section in our documentation presents everything in the reverse order of how it would normally be developed, thus making the context...
I have since learned a bunch about custom testers and find them to be wonderful to create for testing custom components, composites, dialogs, and views. They are akin to the...
> The tests look good. However, I would not mix the jetty upgrade in this PR. Removed.
Yes, I would also like to be able to prevent the dialog from automatically closing upon pressing the confirm button. I also tried the "reopen" workaround and don't like the...
@mvysny Is this resolved by the new `single()` method added in PR #1774? I don't see the need to deprecate `first()` as there may still be some use cases for...
I have used `first()` on occasion when there was not any other good way to uniquely identify a component with the selectors provided other than by position. What do you...
However, I don't believe it is appropriate to deprecate a convenience method just because its use has been abused due to previous lack of an appropriate method. For instance, although...
Proposed change: ``` /** * Executes the search and returns the first result. * * Usage note: This selector is a convenience method for * {@code get(0)}. It is intended...
What methods should `VirtualListTester` support? Because `VirtualList` is really just a display component (non-interactive), there won't be any methods to set, clear, or select things. Looking at the non-interactive methods...
@Legioth Is issue #1775 (merged in PR #1776) a duplicate of this issue? It adds property and function access to LitRenderers (but not to TemplateRenderers).