0

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

example

tag[attribute=somevalue1 or attribute2=somevalue2]
Pradnya Bolli
  • 1,872
  • 1
  • 16
  • 36

1 Answers1

0

Can write like this

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

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