ContributionsMost RecentMost LikesSolutionsHow to handle Dynamic Property Checkpoints My tests are failed during Property Checkpoint verification because some part of data content dynamic ids, for example: Object panel: panel JSON preview: property: contentText Condition: contains the substring(case-insensative) Actual Result: "ActionParameters": [ { "Id": "1313309a-69a7-4bd1-9166-f59b6f5b8f06" }] Expected Result: "ActionParameters": [ { "Id": "2453309a-69a7-3bd1-8166-f59a4f5b8j16" }] As u can see there are dynamic IDs, so every run they will change. Is there a way to handle this ? How to use Property Checkpoint in such cases. I've tried to use "*" instead of id, then just this " ", then this * ; doesn't help and its always failed. If Else condition is failed anyway Keyword test is failing in any case when I'm using If else condition, this is the example: So what's happening: if condition 1 in IF stat == true - then Test is green and passed. when IF condition FALSE, then test goes to Else condition, do Else condition, BUT the test is red and failed because it cant find the object from first IF condition. Isn't there a way to work as OR statement or SKIP the first condition if its false and not show the results as failed (even if else condition is done)??? "If (Aliases.browser.pageMyTestProject.FindElement("xpath to existed order").Exists == true){ Aliases.browser.pageMyTestProject.FindElement("xpath to existed order").Click();} else { Aliases.browser.pageMyTestProject.FindElement("xpath to create New button ").Click(); }"