Instructor is very knowledgeable , humble, soft spoken and very helpful. I had few issues regarding CI/CD as I had never worked on azure DevOps but instructor cleared each and every doubt patiently. Even 5 start rating would not be enough. I would rate 10 on 5 and cannot thank you him enough.
@veerkumarpatil4 жыл бұрын
Thanks Pratiksha for your kind words.
@AnickRazibul4 жыл бұрын
Thank you so much Vhir! Appreciate your valuable time and effort for making this tutorials.
@pratikshak9874 жыл бұрын
Do you have a video on how to set up CI pipelines to run test cases on Azure. Video is very useful but it doesn't have details about setup.
@faatimabismilla28815 жыл бұрын
Hi, great video. Is there a video before this to explain the set up of the pipeline?
@veerkumarpatil5 жыл бұрын
Soon Will share the video for same.
@priyankapriyadarshini90894 жыл бұрын
Do you have any video for ci/cd for angular application along with test automation set up ?
@girishnair5464 жыл бұрын
Can you create a video on how to setup the pipeline and all config required with automatic trigger if code push is done...
@Mrdavis1854 жыл бұрын
Yes this would b great thanks
@priyankapriyadarshini90894 жыл бұрын
Yes please
@sankarginjupalli23805 жыл бұрын
Hi, have you used maven project for this execution?
@veerkumarpatil5 жыл бұрын
Yes it a Maven Project.
@farzadzami63945 жыл бұрын
Do you know how to run the same test in the CD pipeline?
@veerkumarpatil5 жыл бұрын
Soon Will share the video for the same
@dibyabibek46414 жыл бұрын
Hi, are you providing online classes for azure devops for testing
@veerkumarpatil4 жыл бұрын
What you need DIBYA we can connect. my email id is patil.veerkumar@outlook.com
@navyashree52745 жыл бұрын
Could you please explain how execute this build pipeline against the releases automatically.. Or how to integrate build pipeline in the release
@aniketwadkar41583 жыл бұрын
Does anyone know how to filter test by tags for cucumber test on azure pipeline.
@srinivasans33944 жыл бұрын
Should I not install gecko or chrome driver in the agent
@veerkumarpatil4 жыл бұрын
You can use webdriver manager. It will do all drive dependency management. Also latest azure agents have chrome already installed.
@EV_Techie4 жыл бұрын
Hi I am facing issue while running chromedriver from devops pipeline. Can you please tell about path error. The driver executable doesn't exist. Please reply
@veerkumarpatil4 жыл бұрын
Use webdriver manager inorder to get the driver. It will help also devops has been updated to have chrome. so no need to perform the step for chrome installation
@Dhukur_Nginx_Proxy2 жыл бұрын
Can you share me PowerShell Script? i am having problem regarding selenium. it fails on very 1st stage of release While initializing but build is sucess
@veerkumarpatil2 жыл бұрын
@Aayam i think with latest azure agents you dont need to install the browser. Please refer to the another video kzbin.info/www/bejne/o36Xi31onr2YpKc
@bikeshsingh63504 жыл бұрын
Hi , I have a hybrid framework with some Excel file to store the data and test cases(which are usually on local machines and then we give the path in the code), will that also work or do we have do some other configuration changes? Thanks in Advance
@veerkumarpatil4 жыл бұрын
If you have the files are part of your code repository then you don't need to do anything. If they are not then you might need to include them and then try to execute. May be I will try to create an video with input data file.
@bikeshsingh63504 жыл бұрын
@@veerkumarpatil thanks. Yes the files are in the repo.
@SureshKumar-no7rs4 жыл бұрын
Hi, Thanks for the video. This is the first time I'm using Azure. I've setup CI/CD. I've used extent reports cucumber adapter. If I run the script from eclipse the extent.html report is generated in test-output folder and Screenshots folder has all the images captured. But if I execute it from Azure (using Build/Release pipeline), the report is not generated and also the Screenshots are not updated. I've the code in Azure Repo and both Build/Release pipeline are configured to use the Repo. Could you please let me know how to generate the report in Azure while executing it from Build/Release pipeline?
@veerkumarpatil4 жыл бұрын
Hi Suresh. The report is generated by default if you can check your logs you will see the details about it. What you have to do is you have to publish your build artifact. The reports can't be viewed on Azure Devops directly
@SureshKumar-no7rs4 жыл бұрын
@@veerkumarpatil Many thanks for your reply. I tried to use publish build artifacts, but the build got failed. Probably I'm missing something in terms of the where I need to publish. Do you have any resource to refer the settings?
@veerkumarpatil4 жыл бұрын
@@SureshKumar-no7rs Before publish artifact add task for copy files and under contents add **/* it will copy all the files. Once your build is successful you will find a drop folder that will contain your all files, including your extent reports. Hope this will solve your problem.
@SureshKumar-no7rs4 жыл бұрын
@@veerkumarpatil I'll check the option and let you know. Thanks a lot
@amargyan19884 жыл бұрын
nice one
@pranitachikorde6033 жыл бұрын
Please make a video from basics - installation, setting up VM, adding code to git, raising PR and then testing 🙏🙏
@veerkumarpatil3 жыл бұрын
Thanks Pranita for your suggestion. I am planning few videos around creating own Build Agent and using that to execute test cases. Meanwhile you can check the below playlist which talks about Azure Devops from basic also covers creating repo, pushing the code to repo and running the test. kzbin.info/aero/PLyft9liKiP9Y04k5iMZPAOCaE1n1vYX_z
@AbhishekPandey-vu8qi3 жыл бұрын
can you provide me power shell script
@veerkumarpatil3 жыл бұрын
Hey Abhishek this not required now as all the agents are having browser installed on it. I had created one more video. kzbin.info/aero/PLyft9liKiP9Y04k5iMZPAOCaE1n1vYX_z
@LazarSimonovski4 жыл бұрын
Great video, please share with us code from pom.xml
@veerkumarpatil4 жыл бұрын
github.com/veerpatil/testng.git contains the full code