You can export the Selenium IDE Test Suite to Python, for example, the following steps:
- Record the sequence of steps to verify that you want to export from the Selenium IDE. This is a βtest suiteβ in which actions that trigger specific behaviors are saved by Selenium to repeat the command.
- In the menu bar, click "Options", then "Format", then "Python".
- Save the test under the name "test one", and then save the Python test package as "test_one.py". The Python script will represent the actions in the test suite in Python code.
More details: http://www.ehow.com/how_12188004_export-python-test-suite-selenium.html
source share