Posts

Showing posts from April, 2022

Automation Testing with CI/CD - Playwright Automation Tests with Jenkins

Image
Integrate Playwright Automation Tests with Jenkins With Jenkins, First you need to do an initial set up and make sure you have Java installed for Jenkins on your PC. Open Jenkins  http://localhost:8080/   to  login with your credentials  and create a Freestyle project for Playwright with name  “Playwright”  like shown below First Click on the " New Item " as shown below After clicking on "New Item" you will see a screen like below Enter the name as "Your desired name" as I've entered as "Playwright" for now. Select Freestyle project and click "OK" button. You will be navigated to the "Configure" section Give your description in the text box "Description". Select "Git" as the "Source Code Management" option as we are using this git repo:  Git Repo Give the access to your credentials for git if it is a private repo. I've used a public repo so the credentials are not needed. Enter your branch...

Automation Testing with CI/CD - Playwright Automation Tests with Azure DevOps Pipeline

Image
  Integrate Playwright Automation Tests with Azure DevOps Pipeline In this blogpost, We will integrate playwright automation tests with Azure DevOps pipeline. First of all sign up with Azure Devops to create an account. Login to  https://dev.azure.com/ Create an organisation first. I have created an organisation with name “jaykishore999”. You can create with your own name. If you have a GitHub account already then you can login using your GitHub account as well. Click on " + New project " Click on " Create " button Hover on to the "Pipelines" on the left side nav bar and click on the option "Releases" Click on "New Pipeline" button  Click on the "Empty job" Click on " Add an artifact " on the left panel Click on " GitHub " and click on "+ New" button to authenticate with GitHub Click on " Authorize using GitHub " and select a repository you want to execute tests from the GitHub Select ...