Selenium Website

Watch Tutorial

How it works

You can report your automation test results directly to the tests in your Testuff repository. Submit new test statuses, update existing statuses, create and report to labs, and more.

Report Automation Results URL: https://serviceX.testuff.com/api/v0/testone/?token=[TOKEN]

Notes:

  • Reporting to Testuff is protected Via HTTP POST over SSL, and your Testuff user TOKEN is used for identification.
  • You’ll find your Testuff server number under the Settings->Company Details, and your user Token under the User settings.

Read about all the parameters you can control here.

Integration with Selenium IDE

In addition, if you need to integrate Testuff directly from the IDE, or export HTML scripts, we created a Selenium user extension for Testuff, which allows you to update Testuff with Selenium commands.

To use it:

  1. Download the Testuff Selenium User Extension.
  2. Extract call_testuff.js on your computer from the zip file.
  3. Load it into the IDE. Go to the Selenium options screen and then browse for the call_testuff.js file you saved. Make sure to load it as Selenium Core Extension
  4. Close the IDE and open it again.
  5. You should now have a number of additional commands, for example, resetTestuffParameters, addTestuffParameter, etc.

To update Testuff directly from your Selenium script, you will need to provide the correct API URL, test ID, etc. Make sure to read our automation help page before you start. Use the following commands in order:

  1. resetTestuffParameters()
  2. addTestuffParameter(test_name, “your test name”)
  3. addTestuffParameter(status, “passed”)
  4. addTestuffParameter(comment, “your comment text”)
  5. callTestuff(YOUR_API_URL)

Sample: Java Selenium-RC

Copy to Clipboard