Selenium integration with circleci

I have build automation project using selenium and testng ,so now i want to run my automation project through circleci so what all steps should i follow. Need guidance for it.

The CircleCI configuration file is the way to get everything running.

The most basic setup tends to be outlines as follows:

  1. Set up VCS (e.g. git clone / checkout)
  2. Install dependencies (e.g. bundle / npm install)
  3. Run tests (e.g. rspec / npm test)

What is in your .circleci/config.yml file? What successes and problems have you been encountering?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.