ContributionsMost RecentMost LikesSolutionsRe: how to skip pop up if it does not exist Hi Yes, thank you. how to skip pop up if it does not exist Hi I am running my tests in IE and Chrome. My problem is that there is a confirm pop up in IE that is not on Chrome. How do I bypass this step when I am running in Chrome? Is it possible? Thank you SolvedRe: Property Checkpoints Thank you, what I ended up doing was this: Changing the TemplID=110&FieldID=1") into a wildcard. Property Checkpoint Sys.Process("iexplore", 3).Page("http://devtest/SetFieldValues.aspx?*") And that works for me. Thank you Property Checkpoints Hi I am completely new to this so please excuse me. I have to validate a duplicate error message that displays when there are duplicate field entries on a webpage. I have used a property checkpoint to do this. Property Checkpoint Sys.Process("iexplore", 3).Page("http://devtest/SetFieldValues.aspx?TemplID=110&FieldID=1"), "URL", cmpEqual, "http://devtest/SetFieldValues.aspx?TemplID=110&FieldID=1", ... So my predicament is that the templID does not remain constant. The first test I run passes as the template ID is 110 but the next test I run the checkpoint fails as the Template ID is now 111. Have I used the correct checkpoint? How can I change it so that no matter what the template ID is it will validate the duplicate error message? Thank you