-
-
Notifications
You must be signed in to change notification settings - Fork 768
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding ability to check if last command pass/failed #369
Comments
Since the variable names are the same, I guess this is essentially the same feature/idea that Kantu has, or? See here: ${!lastCommandOK} |
Yes the idea comes from Kantu, although the variable could be called anything. |
If a command fails then the test throws and quits. |
Anybody can clear the Relation between Selenium IDE and Kantu? |
Totally agree - but it works ;-)
Kantu was actually the first new Selenium IDE. I used it already last September. They started at a time when there was no official Selenium IDE TNG project yet. So the code base is completely different, it's not a fork. |
As Tomer suggested, this will be handled with |
🚀 Feature Proposal
A clear and concise description of what the feature is.
2 Parts.
Part 1: Toggle the automatic stoppage of the runner using a global variable either as a command or a UI feature.
Part 2: When stoppage is turned off, ability to check status of a previous command using a js statement.
Motivation
Please outline the motivation for the proposal.
It would open up avenues for testing if some object failed to load, do this instead, or adding logic for test cases to handle problematic areas.
Example
Please provide an example for how this feature would be used.
Scenario: runner clicks a link, its buggy so it opens 2 windows. The test also opens other windows later in the test causing pre-programmed logic to fail due to window numbers being off count.
Example: being able to test if the last command failed and being able to try another window number.
command: if
target: ${!lastCommandOK}
value: Try something else.
The text was updated successfully, but these errors were encountered: