Open jcfranco opened 7 months ago
Let's also use this issue to change tests that use shadowRoot.querySelector
instead of deep piercing. For example, we should be able to change this:
to this:
const input = await page.find("calcite-input-date-picker >>> input");
The following utils could also be removed/replaced by the deep piercing selector:
Description
Stencil v4.14.0 added support for deep piercing selectors (
E2EPage
). We should explore whether our common helpers can be simplified by using a single selector prop vs an additional one for the shadow DOM.Proposed Advantages
Simplified test helper APIs.
Which Component
Helpers from
commonTests
using both aselector
andshadowSelector
prop (or similar).Relevant Info
No response
Calcite package