Home > other >  Is it possible to integrate Selenium IDE tests ( saved in .side file) with jenkins?
Is it possible to integrate Selenium IDE tests ( saved in .side file) with jenkins?

Time:04-21

I made a couple of auto-tests on the web application using Selenium IDE, but selenium IDE saves tests as .side file. Is it possible tests saved as .side file integrate into jenkins and do the job in jenkins to run for example once a week?Does anyone have experience with this?

CodePudding user response:

You need to setup the Selenium web driver for Jenkins... Check out this tutorial

If you need more specific help with Jenkins configuration for scheduling there is a lot of documentation for that you can google for.

CodePudding user response:

run .side file via selenium-side-runner command-line runner

$ selenium-side-runner /path/to/your-project.side

you might need to meet some dependencies, all well explained in the link.

  • Related