How to create a dynamic property checkpoint?
I have a test case I execute each month where I pick a future month (not current). Expected results are message saying month cannot be > than current month.
Example: if I run the test in July and select future month of August message says: month cannot be > Jul 2015 and I take a property checkpoint on the message. Problem is when I run again in August message will say: month cannot be > Aug 2015 and my property checkpoint will fail. Question is, is there a way to create a property checkpoint the is “Dynamic” so the test will pass from month to month?
1. https://support.smartbear.com/viewarticle/73325/
https://support.smartbear.com/viewarticle/69551/
2. https://support.smartbear.com/viewarticle/75022/
Basically you will use the aqDateTime and AddMonths to get the current month, add one too it and then assign that to a variable. Then you will use that variable in your checkpoint as opposed to a hard coded month.