-
|
Hi, anybody else using Playwright? I'm wondering why the ComboBox can't seem to be located by label. Anybody have any idea? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
We also still haven't figured out how to control the DatePicker from Playwright. |
Beta Was this translation helpful? Give feedback.
-
|
Recorded as bug in #2715, fixed by #2716
$: ariaLabel = $$props["aria-label"] ?? (labelText || "Choose an item");Playwright usage (
|
Beta Was this translation helpful? Give feedback.
Recorded as bug in #2715, fixed by #2716
ComboBoxnow useslabelTextas the fallback foraria-labelwhen it is not explicitly provided. WhenlabelText="Contact"is set, the accessible name matches the label, so Playwright'sgetByLabelworks.Playwright usage (
ComboBox)Option 1:
getByLabelwith labelTextOption 2:
data-testidFor more reliable and stable sel…