adammak
adammak
I'm working with existing code that does not use unique identifiers for every input field (I know ideally something like `data-testid` is used instead). Our test pre fills certain inputs...
The inputs are predetermined, but don't have unique identifiers. So `page.locator('input')` returns multiple candidates. The "unique identifier" in our case is the input value itself. I also care more about...
@agg23 The inputs are being populated from a backend service upon page load. Frontend frameworks such as Vue allow for dynamic text rendering for inputs without defining a unique identifier...