I want to select the values of attributes of an element. For e.g if I have an input element
<input type="text" name=myInput value="100">
I can locate it using input[name='myInput'], but how do I get the value of it using a css selector?
BTW, I am trying to do this in Selenium using css selectors