Pongoo88 / Robot-Testing

0 stars 0 forks source link

Create Job that installs all dependencies for Robot Framework and Selenium to run on CircleCI #14

Open hajdum opened 2 years ago

hajdum commented 2 years ago

CircleCI should have job/s that install a) restinstance==1.0.2 b) robotframework-requests==0.7.0 c) robotframework-jsonlibrary==0.3.1 d) robotframework==3.2.2 e) robotframework-selenium2library==3.0.0 We can install them one by one (as per terminal) Or we can install them via E.G. requirements.txt file that we execute by oneliner. (We already installed those dependencies on your local machine via requirements.txt) NOTE: versions of libraries should be corresponding to perviously used on your local machine.

CircleCI should use orb: browser-tools: circleci/browser-tools@1.3.0 Orb needs to be configured. For reference please see https://circleci.com/developer/orbs/orb/circleci/browser-tools

I understand that this task is more advanced, if you have any questions or need overall support. Dont hesitate to contact me and we can solve it together.

hajdum commented 2 years ago

Hint: by executing this command: pip install --user -r requirements.txt you can install requirements on CircleCI. requirements.txt must be present in repository.