I have 4 chained freestyle jobs in Jenkins (A to D) which are used for Continuous delivery. Chained jobs currently start with job A whenever a change is pushed to my Git repostiroy.
The last job (job D) is running my Selenium tests, by default against firefox browser.. but now I'm planning to execute the same tests against Chrome browser, on a nightly basis.. Confusing part is how to configure jobs to execute tests against Chrome browser
For example: (jobs chaining)
A --> B --> C --> D
In my case i'would like to run job A every night but I want to be able to specify the target browser as a parameter when triggering job D.
Any help much appreciated!!