Testing 2 very similar elements on different pages:
<input name="myName">
<input name="name">
My attempt to locate the input element using Or (||) keyword was unsuccessful.
Is it possible to achieve this without xpath, solely by implementing a CSS expression?
this._nameInput = page.locator(
'input[name="name"]' || 'input[name*="Name"]'
)