If I have an HTML element <input type="submit" value="Search" />
a css selector needs to be case-sensitive:
input[value='Search']
matches
input[value='search']
does not match
I need a solution where the case-insensitive approach works too. I am using Selenium 2 and Jquery, so answers for both are welcome.
CSS4 (CSS Selector Level 4) adds support for it:
It's the "i" at the end which does the trick.
Broader adoption started mid-2016: Chrome (since v49), Firefox (from v47?), Opera and some others have it. IE not and Edge not yet. See “Can I use”...
It now exists in CSS4, see this answer.
Otherwise, for jQuery, you can use...
jsFiddle.
You could also make a custom selector...
jsFiddle.
The custom selector is a bit of overkill if doing this once, but if you need to use it many times in your application, it may be a good idea.
Update
Sure, check out the following example. It's a little convoluted (syntax such as
:input[value:toLowerCase="search"]
may have been more intuitive), but it works :)jsFiddle.
You could probably use
eval()
to make that string an array, but I find doing it this way more comfortable (and you won't accidentally execute any code you place in your selector).Instead, I am splitting the string on
,
delimiter, and then stripping whitespace,'
and"
either side of each array member. Note that a,
inside a quote won't be treated literally. There is no reason one should be required literally, but you could always code against this possibility. I'll leave that up to you. :)I don't think
map()
has the best browser support, so you can explictly iterate over theargs
array or augment theArray
object.You can't do it with selectors alone, try:
Support: version : Chrome >= 49.0, Firefox (Gecko) >= 47.0, Safari >= 9