I’m trying to use Selenium IDE to automate tests, so that I will not need to redo all the test cases for every update to the website functionality. However, I’m not sure if simple record-replay fashion is able to cope with the tests I need to run. To name a few, these look like (take the logging bit as an example):
- Will a user get e-mail when he/she clicks “I forgot my password”?
- If so, can he/she log in using new details?
- If he/she enters two different passwords, or too short (less than 8 characters) password, will the system display proper error message?
Tests cover also issues like:
- “If admin changes rights for a user, will he/she be still able to do
this or that?”
or
- “If a user enters a value into the quantity field, does the system
check whether it is an integer? If it is, is the total price the
result of quantity times price minus discount? (remember not every
product/user is eligible for a discount).”
And so on. I’ve been looking for some tutorials, but so far I found only explanations on how to install Selenium IDE and do the record-replay. Thanks for your help in advance.