Retrieve object that xpath constraint is enum

1
  My condition is end =$date and Status = Book  thw first two condition is fine but the last one condition is enum  and i want to retrieve that MeetingType External / ( enum internal and external ) How can i do about it ? 
asked
2 answers
3

[MeetingType = 'External']

 

should do it?

If you are not sure what the values you can always type

[MeetingType = 

then use ctrl+space

arrow up

select with enter

 

that is where the possible values are

 

 

answered
7

Hi Teetach,

While applying a constraint in XPath for the ENUM, you should put the value of the ENUM in ‘’ always,

eg. [MeetingType=’External’]

 

Let me know, if you have any issues,

Hope it helps!!

answered