Is there way to join CSS selector condition using OR , AND
example
tag[attribute=somevalue1 or attribute2=somevalue2]
Is there way to join CSS selector condition using OR , AND
example
tag[attribute=somevalue1 or attribute2=somevalue2]
Can write like this
XPATH: //input[@name='login'and @type='submit']
CSS: input[name='login'][type='submit']