Verification of two or more strings

In my desktop application application, I want to verify whether the property name and its value. In desktop application should be equal to my property name and value.

I have used verify activity to check property name is equal to my name and value is equal to my value seperately.

If both property name = my property name and property value = my property value. If both are true only. My final output should be true. How can I Boolean operations like AND or OR to check the properties and value.

Example : property name= my property name β€˜AND’ property value = my property value

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

If this solved your request please close.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.