Login
Remember
Register
Ask a Question
Which CSS selector will locate a element with ID containing the text userName?
0
votes
asked
Jan 31, 2020
in
Selenium
by
SakshiSharma
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
#selenium-elements
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jan 31, 2020
by
Robindeniel
input[id*='_userName']
...