How to move iMacro script to Selenium?

We use iMacro for our QA automation, in a recent discussion it was decided to switch to Selenium.

Selenium provides comparison, so mentioning how to port scripts to its platform is neglected. http://wiki.imacros.net/Selenium

Are there any tools for this purpose?

+3


source to share


2 answers


Currently, no tool I know can help you with this.

There are several alternatives for migrating from iMacros to Selenium:



  • If you have a small number of scripts, overwrite them with the Selenium IDE
  • If you have a large body of test, you can write a script that can display equivalent commands, you still have to do manual cleanup, but that can at least save you time.
+3


source


The easiest way (if you are using firefox) is to select Tools-> Selenium IDE. This will open the Selenium IDE in a separate window. Use the Imacros sidebar to "play" the script while the Selenium IDE is recording. I just did it myself. Works great. Obviously this won't do any Imacros specific text utterances, but if your script is a simple set of actions, it works fabulous.



+1


source







All Articles