Hi, Thanks for the detailed explanation and it was helpful for me.
@ritikakanchan67668 ай бұрын
Very useful video Mukesh Thanks
@rashmigupta-zg3cr2 жыл бұрын
Very nicely explained sir
@amanoj63963 жыл бұрын
Hi mukesh .. why do not you show how to execute python test cases using jenkins in both linux and windows envirtonment ??it will be so helpful mukesh to us .. hope you make soon ..
@Mukeshotwani3 жыл бұрын
Yes Sir this series is not over yet.I will add in coming days.
@shyamsharma6542 жыл бұрын
hello sir its very informative video
@premdhas31342 жыл бұрын
@Mukesh otwani Ho we can pass multiple/list of values to a parameter? For example i have a shell script for which i need to pass list of ID's to a ID parameter and script will fetch the scripted values as an output. In this case how can i pass multiple input values? I have tried string and ,Multi line string parameter options but they just come out after first ID execution complete.
@piyushpatil16662 жыл бұрын
Hi sir i am using 2 pipelines and trying to pass parameter from one pipeline to other using the postbuilt action pass parameters but the second pipeline accepting the defailt value of parameter from first pipeline only not taking the overriden values
@Mukeshotwani2 жыл бұрын
Hi Piyush, please share your pipeline snippet
@charant3349 Жыл бұрын
Sir, the file we uploaded from jenkins required to come in git hub project folder. How to do that?
@sudhakarthangavelu71642 жыл бұрын
Hi Mukesh, How to configure the Jenkins parameter into selenium project
@Mukeshotwani2 жыл бұрын
Hi Sudhakar, you can pass jenkins parameter to your selenium test as well. If you are using maven then use -D for example -Dbrowser=Chrome -Durl=www.google.com
@sudhakarthangavelu71642 жыл бұрын
Thanks Mukesh
@jeevanreddy61213 жыл бұрын
Hi Mukesh, how do we pass multiple values under password parameter. Suppose my password is "test 123", what is the best way to pass it as parameter?
@Mukeshotwani3 жыл бұрын
Hi Jeevan for password you can use password parameter.
@Mukeshotwani3 жыл бұрын
What do u mean by multiple values under password parameter?
@rajeshrk20503 жыл бұрын
Hi Mukesh, Its Really helpful. Could you please tell me how to add timeout for cloning git repo. My git repo has many files which will take around 1 hr for cloning. Since Jenkins timeout is just 10 minutes. i have tried below pipeline script. But its not working. pipeline { agent any options { timeout(time: 80, unit: 'MINUTES') } stages { stage('Git Clone') { steps { git branch: "${Branch}", credentialsId: '2121', url: "${GitUrl}" } } stage('build') { steps { bat "{$BATCommand}" } } } }
@ParasJoshiPj2 жыл бұрын
Hi mukesh how to do this with cucumber ..how i can run specific test case of cucumber in jenkins pls help. Thanks in advance
@Mukeshotwani2 жыл бұрын
Hi Paras, you can pass tags while running from cmd or via Jenkins which will run specific feature with tag attached.
@ParasJoshiPj2 жыл бұрын
@@Mukeshotwani how mukesh ? Jenkins parameter with cucumber
@kishorchavan74783 жыл бұрын
👏👏
@CosmosndArjun Жыл бұрын
How to fetch password parameter value in another paramter, such as in Active Choices Reactive Parameter
@abhishekbhardwaj77642 жыл бұрын
awesome
@praveenmalviya42343 жыл бұрын
How to pass those parameters to properties file or in .robot file..... Suppose i am changing environment and running in different environments with username and password....
@Mukeshotwani3 жыл бұрын
Hi Praveen, good question. You can pass parameter in your testcases. While running test from pass these parameter via Jenkins.
@praveenmalviya42343 жыл бұрын
I Want to pass url , username , password to properties file via Jenkins...
@Mukeshotwani3 жыл бұрын
Praveen you need to understand the Jenkins functionality which can pass the parameter to test. The main objective of having the property file is to avoid hard coded details so either do it via parameter or via file.
@pradeepkumarvenkata17933 жыл бұрын
Could you please help me in below? How can i use the Build_Id of job1 and display in mail of JOb2?