Verification of two or more strings

Use if condition and you put the same details for validation 
Var property Name.contains("My property name") AND var property Value.contains("my property value")
Alternate way
Var property Name.equal("My property name") AND var property Value.equal("my property value")

Then condition you can put as true and else as false.

1 Like