Property checkpoints (beginner question)
Hi everyone im brand new to test complete and i currently just going through beginner videos
To start with i was trying to test this budget application i made with javascript
Its just a simple app where you can input your income and expenses and keep track of an overall budget
What im trying to test is when the user inputs for example a 'Salary' of a grand the overall budget increases to a grand
e.g.
So what im trying to test is when i input a thousand it goes to 1 thousand
So i made a new test and recorded
- Clicking the textbox
- Typing '1000'
- And clicking the check button
After i did that i added a new property checkpoint
So i made it so the test checks it equals '+ 1,000.00'
However on running the test it fails
I cant seem to figure out why they dont match looking at the html its just a standard element
How do i get it so it checks that the exact value is '+ 1,000.00'
Any help would be appreciated thank you