How can I intercept Selenium errors?

318 Views Asked by At

In developing Selenium extensions I have scripting to verify the correct handling of failure cases. Unfortunately, I have to execute those commands one-by-one in the IDE, and manually examine each error message. What I would like to do is define a custom Selenium command that I can insert before each command that intentionally fails in a given way. Eg: willFail|expected-error-text.

In other words, I want to alter Selenium command completion behavior such that if the next command throws the given error message, then the result is success and the script continues. But if it succeeds or throws a different error, then the script stops with an error.

I imagine this will involve setting observer function(s), and/or intercepting Selenium function(s). I'd expect the issues to be:

  • How/where to do the initialization. The relevant Selenium objects can be hard to find.
  • What/when to return in order to alter the result.
  • Is there something else left out-of-sync by altering a result?

The PowerDebugger extension allows you to pause the IDE upon a failure, and then resume. So I suspect that the how-to is in there somewhere. But I can't quite figure out how it hooks into Selenium command processing. Samit Badle, are you out there?

I am using Selenium IDE 2.2.0.

1

There are 1 best solutions below

1
On

With some experimentation I have found that the function TestLoop.resume() is responsible for determining the outcome of each command. It is defined in chrome/content/selenium-core/scripts/selenium-executionloop.js. This function executes the command, and either halts the script, or allows it to continue.

To alter this behavior, a Selenium extension can temporarily replace this function with a custom version. To accomplish this, save a reference of editor.selDebugger.runner.IDETestLoop.prototype.resume, and replace it with the custom function. The custom function should then restore the native function, and carry out command execution as appropriate.