Or operator in xpath

1
How to make the xpath with the or operator right   The Staus is an Enumeration.
asked
2 answers
1
[Status = 'Pause' or Status = 'Mitarbeiter_zugewiesen']

 

answered
0

Hi Nico,

After the or statement you need to retrieve use Status = again. So in this case:

[Status = ‘OptionA’ or Status = ‘OptionB’]

Hope this helps!

answered