This is a little newbie question, but ... is there a way to make actions optional in the Selenium IDE? I will give an example of use.
In the application I'm testing, users see at the beginning of each session βhey, you agree with ToS by logging inβ as a modal window. They must click "OK" to continue, and they do not see the window until the next session.
Based on what I have seen so far, I need to have one test set for the first test every day, and a second set of tests for everyone else. The second set is exactly the same, except that it does not have a βclickβ OK button to cancel the initial modal window. Alternatively, I could just remember that my first run of the test every day will fail and that I should run the test again.
Both of these "decisions" seem unnecessarily uncomfortable. Can I just make the command an clickoption?
source
share