0

Is there way to join CSS selector condition using OR , AND

example

tag[attribute=somevalue1 or attribute2=somevalue2]
Pradnya Bolli
  • 1,915
  • 1
  • 19
  • 37

1 Answers1

0

Can write like this

XPATH: //input[@name='login'and @type='submit']

CSS: input[name='login'][type='submit'] 
sree raja
  • 177
  • 6