0 votes
in Selenium by
Which CSS selector will locate a element with ID containing the text userName?

input[id^='_userName']

input[id$='_userName']

input[id*='_userName']

None of these

1 Answer

0 votes
by

input[id*='_userName'] 

...