Hi Naveen, You have done an amazing job by providing this POM series videos. You have brought an revolution in field of automation through this. I am sure thousands and thousands of IT guys who are struggling to learn selenium automation would have switched into automation after following this series.
Naveen , you don't know what you have done you have made career of many many students/employees who are jobless/struggling and want to switch into automation. The great man.
Hi Naveen, I've followed all the steps you've explained, but Jenkins throws error : " No such file ..workspace\SampleTestPrj\pom.xml. Perhaps you need to specify the correct POM file path in the project configuration? " . I could see the POM.xml at the location of workspace and Github as well. But Jenkins can't see it. Any idea what to do?
Hey, I need some help on the above topic. While trying above steps, Workspace of MyProject on master is showing "No file in directory". But if I go to modules and then workspace, the files placed there. My requirement is that I want to attach report files in Email. I am able to send an email after every build without attachment. But, if I want to send an attachment in Email, I need the path of file relative to the Master Workspace. Please suggest any solution.
I am using a remote Jenkins inside my org. Please tell me how I can generate extent reports because reports are not being generated on Git (where my code is available). Without that I can't pull reports to Jenkins. Should I change extent reports folder to some other web location?
@@ballibhai04 uninstall JRE and JDK what is existent in your PC and then only install jdk8(since it already contains jre inside jdk). In eclipse from preference>Java>installed jre section make sure jdk folder is selected.
@@sayantan033 Thanks for the reply Sayantan. I have followed the steps suggested by you. However, I am still getting this error : [ERROR] COMPILATION ERROR : [INFO] ------------------------------------------------------------- [ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK? [INFO] 1 error [INFO] ------------------------------------------------------------- [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 5.745 s [INFO] Finished at: 2020-05-07T09:31:41+05:30 [INFO] ------------------------------------------------------------------------ Waiting for Jenkins to finish collecting data [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project GitPractise: Compilation failure [ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK? [ERROR] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [JENKINS] Archiving C:\Users\Yogesh\Codes\Pracise-project\Pracise-project\pom.xml to GitPractise/GitPractise/0.0.1-SNAPSHOT/GitPractise-0.0.1-SNAPSHOT.pom [ERROR] [Help 1] cwiki.apache.org/confluence/display/MAVEN/MojoFailureException channel stopped Finished: FAILURE
@@ballibhai04 try to restart your Jenkins service and build the setup in jenkins from scratch(i mean by adding the pom file path and all)..hope that will fix the issue..i did the same and worked for me..
@@sayantan033 Thanks for the valuable suggestions. I have found out Maven Plugins was missing in my Pom File also, I have followed your suggestions too and it worked Thanks a lot!
Hi Naveem, WhyJenkin's run fails running the project from local (it used to work), while now it works from GitHub? One project points to pom.xml on local, the other to pom.xml at GitHub location. Err msg: "Failed to delete..." It also works as tesgng.xml suite on Eclipse/local.
Can this setup as pipeline or freestyle project as well on jenkins? I see some guys teaching by creating throught freestyle or Pipeline project so got confused...
Hi Sir, I have a doubt, when you pass the path of Extent.html file to jenkins to attach report to jenkin, how you got that Extent.html file in the project. is it the file generated by extent reports ?
Hi Naveen, Thanks for all the hard work. Was wondering how you run your all testng.xml file via cmd and how you do the cross-browser testing. Seems like browser=ch in your properties file. How you deal with that properties file when comes to crossbrowser testing?
Hi Naveen. Thanks for the informative video. Jenkins and Git Integration all working as expected. However, facing issue with extent report format. Tried this solution - System.setProperty("hudson.model.DirectoryBrowserSupport.CSP", ""). Still no luck.
Hi Naveen, Thanks for such type of videos, I have still one problem, In my testng file, there are 16 classes with multiple test cases in each class, but when I run this testng from on jenkins, only single testcase from each file executed, but I want to run all test caeses from all 16 classes, how i do that?Thanks in advance
Hi naveen... when i tyed git push origin master i was not asked for sshkey...instead it asked me for my login details in a new popup and worked fine....is it some kind of new feature where you don't need sshkey...?
Hi Naveen, Thanks for this such a nice tutorial. I want to know 1 thing..in ur maven tutorial u told that surefire and compile plugins are required while running tests on jenkins. I have checked ur pom.xml file, i am not able to see those plugins in ur file. what is the reason behind this? And if i want to execute test cases in a sequential manner from two or more classes what things i have to take care of. and the surefire plugin is required for that.
Hello Naveen Thank you very much for all the Excellent Videos. You are the best. Main thing is that you wanted to give people something and you must get something in return. It would be very good if you could make the fonts little bit bigger. Thank you again. Imtiaz Sikder
Hey Dude! More videos am checking out, I keep wondering, what made you start this channel, its like a one-stop solution for automation learning! if u already have a video on this, plz attach the link, if not, make one, can't wait to listen to the story! Thank You!
Hi Sir, Sir please help me with one problem i am running python automation script in github via jenkins but browser is not starting when build is executed just like in your case in above video browser is running in side and automating please sir tell how can i run the browser via jenkins
Hi Naveen, the console scripts are not saved in Jenkins and it is removed as soon as we go any other menu in Jenkins. Do we have to mention the console script in some other way so that it stays in Jenkins?
kb.froglogic.com/display/KB/Content+Security+Policy+(CSP)+for+Web+Report To change default Content Security Policy go to Manage Jenkins -> Script Console and type into console the following commands: System.clearProperty("hudson.model.DirectoryBrowserSupport.CSP"); System.setProperty("hudson.model.DirectoryBrowserSupport.CSP", "sandbox allow-scripts; default-src 'self'; script-src * 'unsafe-eval'; img-src *; style-src * 'unsafe-inline'; font-src *"); Then try to the view Web Report again. Hope this helps.
Hi When i tried my side i am getting Java class error's and my test-cases are failing not getting proper output i have done same configurations but i am getting failed
Hi Naveen, my extent report on jenkins as the build ended with some failures shows all pass while my testng tests show the failures too so what am I missing ?
How to setup extent reports and testNG reports together in Jenkins.Is there any plugin for extent reports cz I am getting extension during build because of extent reports.please reply
Hi Naveen, Thanks a lot for such an amazing videos. I was able to do everything as you explained but the small problem I'm facing is, my browser is not getting launched but the test cases are getting executed successfully. Am I missing anything in configuration? Help would be appreciated! Thanks.
do we need to do any other configuration to run test cases from git? In this video we are not giving any user name and password for git repository, then how it will go to particular repository to execute pom.xml file. Whwn i follow same like this video I'm getting error as "ERROR: Error fetching remote repo 'origin'" Please someone help.
On my computer it shows error, No compiler is provided in this environment. Perhaps you are running on a JRE rather then a JDK? Please can you explain this, what actually happens.
Where are the jar files sitting? If we run from github we dont need jars or something ? What if I pass Test data from excel sheet ? Do I place excel file on github too ? In java code we define where excel file sits right ? Then if we push code to github how exactly excel is gonna be recognized ? Sorry so many question naveen.. Cant get these answers on google.. I tried.. Help me on this one.. Thanks
Please help tried all possible solutions for this error-> The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.
Hi Naveen, If we have multiple testng files (say testng-sanity.xml, testng-regression.xml etc); how do we execute them separately using Jenkins? As I understand, when we execute the project from Jenkins, it is just executing testng.xml.
Hi Naveen, thanks for creating such great videos. I am trying to run selenium webdriver in the docker Github CI/CD pipeline. Every time, it is failing to launch the chrome browser(timeout). However, it builds perfectly in local machine. I do not know why it is failing.
Hi Naveen I got a interview question A page consist of a form with 3 txt box nd 2 link when u click on d link z nt working no action z performed but the x path z correct nd in console also it s showings success When u do it manually also it z running properly what might be d reason
Hi Naveen, Thanks for this video..I want to understand from testing point of view that why we need to use Jenkins and github. Please help me to get it clarified
hi, thank you for such a nice knowledgable videos, please can you explain how to push github pull request in Jenkins parameters list and we can build that pull request from Jenkins whenever we need instead of automatic push
Hi Naveen, Could you please help me and answer my question. My automation framework is generating multiple HTML reports having dynamic name with .html extension for a single build job in the directory folder. How can i publish all the reports once the job execution is completed?
Hi Naveen, I have added extent report script in system console and the clicked on Run btn, got Results as per your video and then I ran the build now, but still my extent report is missing CSS. one thing I noticed when I went back to system console now the extent script is missing, please help to fix this issue
I configured Jenkins with Maven project ..My tests are running jenkins itself and getting results..i didnt configure any remote ...can you pls help why browser is not opening from my local?
HI Naveen, Excellent video. I have got good knowledge on Git,Jenkins. I am facing one problem. While building project from Jenkins I am getting build success but Tests are not getting executed. Could you please help in this.... Many Thanks.
In this video are you not using windows os? Why writing commands for everything? In eclipse right click directly on project-team- commit to git repository.
As part of CI / CD pipeline, Can you make a video explain how to configure and run the same test script in multiple test environments (QA, UAT, production) integrate with Jenkin? . You are the best instructor.
Hi Naveen, Nice tutorial.. I just wanted to know that in previous video tutorial you have created extent report, So we can get this report through Jenkins as a result?
hi Naveen,Thanks for all your beautiful Videos of Selenium.Can you please tell me how to send the extent report generated through JENKINS in EMAILS to customer
Hi Naveen, Thanks for your great efforts, it is very helpful, i tried to run Page object Model Repo, using mvn clean install, but it only runs 1st testcase having priority=1 of ContactsPageTest, and 1st testcase of Priority of HomePageTest and 1st tescase of priority=1 of LoginPageTest, dont know why, could you please help me knowing its reason, because i saw it is running all testcases in your videos. although if i run through testng.xml, all are running , but using mvn clean install only they are running 1st testcase of all Test files.
Hi Naveen,Thanks for sharing the valuable and accurate explanation.I have doubt that is every time we have to up the jenkins through command prompt necessarily (OR)is there any other way to login jenkin account.
Hi Naveen, Great Video. Thanks for Sharing... Can you also share me which tool is the best for Test Management to create issues, update, deleting and tracking.
Hi Naveen, I am getting error like jenkins requires java 8 but system has java10. Please suggest how can i run on java 10. As my system does not allowing to install java 8 as it older version. Please do the needful
Hi Naveen , After configuring jenkins i am getting this error -The driver is not executable: /var/lib/jenkins/workspace/BuzzPortalAutomation/src/main/resources/chromedriver.exe Please help
Hi Naveen, In Jenkins I am adding the github repository url but I get error "Failed to connect to repository : Error performing git command: C:\Program Files\Git\bin ls-remote -h github.com/localtest143/SeleniumJavaFramework1 HEAD ". Can you please help me resolve this issue?
Failed tests: setup(com.krishna.WebDriverTests): unknown error: cannot find Chrome binary(..) Hi Naveen, I'm getting above error while running webdriver tests on jenkins, my build gets successful but it fails tests with Chrome binary error. Can you please help me how to resolve it.
Hi Naveen, You have done an amazing job by providing this POM series videos. You have brought an revolution in field of automation through this. I am sure thousands and thousands of IT guys who are struggling to learn selenium automation would have switched into automation after following this series.
Naveen , you don't know what you have done you have made career of many many students/employees who are jobless/struggling and want to switch into automation.
The great man.
U r someone whom I adore each time I learn from Ur videos..
really no doubt u r awesome and u explain so perfectly
Thank you Naveen for this wonderful content. This was my savior today!
Very good explanation who are new to Jenkins, Git and GitHub. Thank you for the efforts.
Learnt a lot from your videos which helped to crack interviews. Appreciate your efforts
Thanks
Welcome, thanks for contributing.
@@naveenautomationlabs :D thanks for replying and your content
most welcome :)
Thanks Naveen your tutorials are supercool!!Two Thumbs Up to you mate!!!
Hi Naveen, I've followed all the steps you've explained, but Jenkins throws error : " No such file ..workspace\SampleTestPrj\pom.xml. Perhaps you need to specify the correct POM file path in the project configuration? " . I could see the POM.xml at the location of workspace and Github as well. But Jenkins can't see it. Any idea what to do?
Hey, I need some help on the above topic. While trying above steps, Workspace of MyProject on master is showing "No file in directory". But if I go to modules and then workspace, the files placed there. My requirement is that I want to attach report files in Email. I am able to send an email after every build without attachment. But, if I want to send an attachment in Email, I need the path of file relative to the Master Workspace. Please suggest any solution.
if you got any solution please tell me too i very much need this
Why we are using Jenkins with GitHub ... Both are version controler and ci/CD tools rt
Thank you Naveen for sharing your skill sets
Thanks for watching Durai:)
I am using a remote Jenkins inside my org. Please tell me how I can generate extent reports because reports are not being generated on Git (where my code is available). Without that I can't pull reports to Jenkins.
Should I change extent reports folder to some other web location?
Naveen any idea I am getting the following error:: No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
I am also getting the same error. can anyone advise!!
@@ballibhai04 uninstall JRE and JDK what is existent in your PC and then only install jdk8(since it already contains jre inside jdk). In eclipse from preference>Java>installed jre section make sure jdk folder is selected.
@@sayantan033 Thanks for the reply Sayantan. I have followed the steps suggested by you. However, I am still getting this error : [ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[INFO] 1 error
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 5.745 s
[INFO] Finished at: 2020-05-07T09:31:41+05:30
[INFO] ------------------------------------------------------------------------
Waiting for Jenkins to finish collecting data
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project GitPractise: Compilation failure
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[JENKINS] Archiving C:\Users\Yogesh\Codes\Pracise-project\Pracise-project\pom.xml to GitPractise/GitPractise/0.0.1-SNAPSHOT/GitPractise-0.0.1-SNAPSHOT.pom
[ERROR] [Help 1] cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
channel stopped
Finished: FAILURE
@@ballibhai04 try to restart your Jenkins service and build the setup in jenkins from scratch(i mean by adding the pom file path and all)..hope that will fix the issue..i did the same and worked for me..
@@sayantan033 Thanks for the valuable suggestions. I have found out Maven Plugins was missing in my Pom File also, I have followed your suggestions too and it worked Thanks a lot!
Hi Naveem, WhyJenkin's run fails running the project from local (it used to work), while now it works from GitHub? One project points to pom.xml on local, the other to pom.xml at GitHub location. Err msg: "Failed to delete..." It also works as tesgng.xml suite on Eclipse/local.
Can this setup as pipeline or freestyle project as well on jenkins? I see some guys teaching by creating throught freestyle or Pipeline project so got confused...
Hi Naveen,
Is devops engineer is responsible for both dynamic and static code analysis?
No, it's dev or qa responsibility
Thanks a lot Naveen for this tutorial. If i wanted to run scripts locally then how to generate TestNG and Extent report. Can you please suggest me.
Hi Sir, I have a doubt, when you pass the path of Extent.html file to jenkins to attach report to jenkin, how you got that Extent.html file in the project. is it the file generated by extent reports ?
Thanks u sir for your hard work and dedication. Amazing stuff. !
Hi Naveen, Thanks for all the hard work. Was wondering how you run your all testng.xml file via cmd and how you do the cross-browser testing. Seems like browser=ch in your properties file. How you deal with that properties file when comes to crossbrowser testing?
Hi Naveen. Thanks for the informative video. Jenkins and Git Integration all working as expected. However, facing issue with extent report format. Tried this solution - System.setProperty("hudson.model.DirectoryBrowserSupport.CSP", ""). Still no luck.
Congrats brother you are doing a great job.. Please zoom it and teach.. Just to increase the visibility.. Its a request from me
Hello, how did you setup the webdriver.exe ? Did you copy the webdriver on Jenkins machine, so the tests are running automatically?
I am also facing same issue :(
Hi Naveen, Thanks for such type of videos, I have still one problem, In my testng file, there are 16 classes with multiple test cases in each class, but when I run this testng from on jenkins, only single testcase from each file executed, but I want to run all test caeses from all 16 classes, how i do that?Thanks in advance
@NaveenAutomationLabs In Organisation, do we run test cases locally or any other means we must run our testcases.Please help
Thanks so much for the video..very nice and clear explanation 👍
What selenium / web browser plugins do we have to install if Jenkins is installed on remote server (not my local laptop)? Thank you
How to handle if the extent report name is dynamic--for e.g. it has the time stamp attached to the name-ho do i configure in the post run results?
We can Tortoise git..right? Instead of writing git commands?
Hi naveen... when i tyed git push origin master i was not asked for sshkey...instead it asked me for my login details in a new popup and worked fine....is it some kind of new feature where you don't need sshkey...?
can we run eclipse Java project code (non-maven) from GitHub through Jenkins ??
Another excellent video. The fix for the Extent report, will this work using SVN?
Hi Naveen,
Thanks for this such a nice tutorial. I want to know 1 thing..in ur maven tutorial u told that surefire and compile plugins are required while running tests on jenkins. I have checked ur pom.xml file, i am not able to see those plugins in ur file. what is the reason behind this? And if i want to execute test cases in a sequential manner from two or more classes what things i have to take care of. and the surefire plugin is required for that.
Hello Naveen , For running my code via GIT , do I still need to install the plug-ins of Maven & Test NG ?
Hello Naveen
Thank you very much for all the Excellent Videos. You are the best. Main thing is that you wanted to give people something and you must get something in return. It would be very good if you could make the fonts little bit bigger.
Thank you again.
Imtiaz Sikder
Please make a video on how to configure git and Jenkins in our systems
Sir how to create sanity pack..smoke pack in automation..can you give me idea
Thanks sir for valuable content
Dude!!! I am your Fan, Salute!!
Hey Dude! More videos am checking out, I keep wondering, what made you start this channel, its like a one-stop solution for automation learning! if u already have a video on this, plz attach the link, if not, make one, can't wait to listen to the story! Thank You!
am still waiting for the reply to the above question?
Naveen thank u so much u made my day
Iam not getting the Root under build to add pom.xml . i actually have another xml file to run
Hi Sir, Sir please help me with one problem i am running python automation script in github via jenkins but browser is not starting when build is executed just like in your case in above video browser is running in side and automating please sir tell how can i run the browser via jenkins
Hi Naveen,
the console scripts are not saved in Jenkins and it is removed as soon as we go any other menu in Jenkins.
Do we have to mention the console script in some other way so that it stays in Jenkins?
kb.froglogic.com/display/KB/Content+Security+Policy+(CSP)+for+Web+Report
To change default Content Security Policy go to Manage Jenkins -> Script Console and type into console the following commands:
System.clearProperty("hudson.model.DirectoryBrowserSupport.CSP");
System.setProperty("hudson.model.DirectoryBrowserSupport.CSP", "sandbox allow-scripts; default-src 'self'; script-src * 'unsafe-eval'; img-src *; style-src * 'unsafe-inline'; font-src *");
Then try to the view Web Report again.
Hope this helps.
Hi When i tried my side i am getting Java class error's and my test-cases are failing not getting proper output i have done same configurations but i am getting failed
Hi Naveen,Can we use git commit -m command directly without using git add . command?
If so then what is the use of git add . command
Hi Naveen, my extent report on jenkins as the build ended with some failures shows all pass while my testng tests show the failures too so what am I missing ?
same happening to me ,please reach me if you find solution for that
Same problem am also getting
How to setup extent reports and testNG reports together in Jenkins.Is there any plugin for extent reports cz I am getting extension during build because of extent reports.please reply
How to create own Git reprository and project over there
Hi Naveen,
Thanks a lot for such an amazing videos. I was able to do everything as you explained but the small problem I'm facing is, my browser is not getting launched but the test cases are getting executed successfully. Am I missing anything in configuration? Help would be appreciated! Thanks.
you might be running in windows right...In windows you have to do some config to open ur browser
rakesh adupa yes m running in Windows, so what exactly configuration I have to do? Do u have any idea? Thanks!
Were you able to solve this issue? I m facing the same!
@@MSH-YT Hi please if you got the answer please tell me also i seriously need this
do we need to do any other configuration to run test cases from git?
In this video we are not giving any user name and password for git repository, then how it will go to particular repository to execute pom.xml file.
Whwn i follow same like this video I'm getting error as "ERROR: Error fetching remote repo 'origin'"
Please someone help.
Hello Naveen , Please make a video on SVN. Thank You.
On my computer it shows error, No compiler is provided in this environment. Perhaps you are running on a JRE rather then a JDK?
Please can you explain this, what actually happens.
Where are the jar files sitting? If we run from github we dont need jars or something ? What if I pass Test data from excel sheet ? Do I place excel file on github too ? In java code we define where excel file sits right ? Then if we push code to github how exactly excel is gonna be recognized ? Sorry so many question naveen.. Cant get these answers on google.. I tried.. Help me on this one.. Thanks
Please help tried all possible solutions for this error-> The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.
the workspace will be created only with git or when you run from local?beacuse i dont have nothing in jenkins workspace
Hi Naveen,
If we have multiple testng files (say testng-sanity.xml, testng-regression.xml etc); how do we execute them separately using Jenkins?
As I understand, when we execute the project from Jenkins, it is just executing testng.xml.
I think you can just create different jobs in Jenkins like making a new maven project or freestyle and put the xml for sanity in one job and so forth.
Hi Naveen, thanks for creating such great videos. I am trying to run selenium webdriver in the docker Github CI/CD pipeline. Every time, it is failing to launch the chrome browser(timeout). However, it builds perfectly in local machine. I do not know why it is failing.
Hi Naveen I got a interview question
A page consist of a form with 3 txt box nd 2 link when u click on d link z nt working no action z performed but the x path z correct nd in console also it s showings success
When u do it manually also it z running properly what might be d reason
Excellent Naveen... Thanks a lot.. How can we integrate or capture screenshot in jenkins of the all the testcases??
Hi Naveen, Thanks for this video..I want to understand from testing point of view that why we need to use Jenkins and github. Please help me to get it clarified
hi, thank you for such a nice knowledgable videos, please can you explain how to push github pull request in Jenkins parameters list and we can build that pull request from Jenkins whenever we need instead of automatic push
Hi Naveen, Could you please help me and answer my question. My automation framework is generating multiple HTML reports having dynamic name with .html extension for a single build job in the directory folder. How can i publish all the reports once the job execution is completed?
Hi Naveen, I have added extent report script in system console and the clicked on Run btn, got Results as per your video and then I ran the build now, but still my extent report is missing CSS. one thing I noticed when I went back to system console now the extent script is missing, please help to fix this issue
I configured Jenkins with Maven project ..My tests are running jenkins itself and getting results..i didnt configure any remote ...can you pls help why browser is not opening from my local?
Hey Naveen,
You are doing a excellent work. I am impressed again with your video keep going on good works.
Regards
Yogesh
Thanks for your outstanding work. :)
HI Naveen, Excellent video. I have got good knowledge on Git,Jenkins. I am facing one problem. While building project from Jenkins I am getting build success but Tests are not getting executed. Could you please help in this.... Many Thanks.
hey naveen i am having a problem when i am adding a file to my existing repositery it is hiding the older one where to find them
Just for everyone information in my case after entering commands to script console I need to restart my Jenkins then I would get proper extent report.
In this video are you not using windows os? Why writing commands for everything? In eclipse right click directly on project-team- commit to git repository.
What if someone is not using eclipse. At the time of interview they will ask git commands, not from eclipse. Learning git commands is compulsory.
@@naveenautomationlabs thank you for your reply. You replied very soon. Thank you.
As part of CI / CD pipeline, Can you make a video explain how to configure and run the same test script in multiple test environments (QA, UAT, production) integrate with Jenkin? . You are the best instructor.
Do we have video for this ???
Hi Naveen, Nice tutorial.. I just wanted to know that in previous video tutorial you have created extent report, So we can get this report through Jenkins as a result?
Nice tutorial, how can I run single test method from jenkins. I am using Maven build management tool.
Can i replicate steps if my team is usinb gitlab instead of github ?
Hi.. All your tutorials are very simple and useful.. Could you please tell if you have explained anywhere what exactly is Jenkins?
thank you. your video is very useful
Bayya "after composing gmail , click send button then one pop up came "message sent " .my doubt is how to close that window via script
Thanks Naveen and can you please add vedios of auto email notification with extent reports when executing either from eclipse or jenkins
hi Naveen,Thanks for all your beautiful Videos of Selenium.Can you please tell me how to send the extent report generated through JENKINS in EMAILS to customer
Hi Naveen, Thanks for your great efforts, it is very helpful, i tried to run Page object Model Repo, using mvn clean install, but it only runs 1st testcase having priority=1 of ContactsPageTest, and 1st testcase of Priority of HomePageTest and 1st tescase of priority=1 of LoginPageTest, dont know why, could you please help me knowing its reason, because i saw it is running all testcases in your videos. although if i run through testng.xml, all are running , but using mvn clean install only they are running 1st testcase of all Test files.
Had the same problem. Runs all @Test in all classes when I removed priority.
Downgrade your TestNG version. 6.9.8. I was also facing the same issue
Hi Naveen,Thanks for sharing the valuable and accurate explanation.I have doubt that is every time we have to up the jenkins through command prompt necessarily (OR)is there any other way to login jenkin account.
In real time that would not be the case... Jenkins will be up
Bhai I'm getting the error like 'no chrome binary', when I tried to execute the code in jenkins from git. Please help out on this
Thanks so much for sharing knowledge
Hi Naveen, Great Video. Thanks for Sharing... Can you also share me which tool is the best for Test Management to create issues, update, deleting and tracking.
You can use JIRA, ALM
@@naveenautomationlabs ThankYou, if possible can you make an another video for Test Management Tool with using JIRA, ALM or any other tool
nice video. Really appreciated your work
Hi Naveen, I am getting error like jenkins requires java 8 but system has java10. Please suggest how can i run on java 10. As my system does not allowing to install java 8 as it older version. Please do the needful
Hi Naveen , After configuring jenkins i am getting this error -The driver is not executable: /var/lib/jenkins/workspace/BuzzPortalAutomation/src/main/resources/chromedriver.exe
Please help
Thanks a ton Naveen. :)
if the jar file in local desktop and i need to build a job only to see the test results,please tell me
Thank you soo much naveen garu
Jenkins is not able to launch the Chrome browser. Please help, otherwise everything else is working fine.
Hi Naveen,
In Jenkins I am adding the github repository url but I get error "Failed to connect to repository : Error performing git command: C:\Program Files\Git\bin ls-remote -h github.com/localtest143/SeleniumJavaFramework1 HEAD
". Can you please help me resolve this issue?
i saw your every vedio .hi Naveen can you publish the session for jbehave with serenity framework?thankyou asmita
Hey can you do one for a private repo, and it's not a maven project please
Failed tests: setup(com.krishna.WebDriverTests): unknown error: cannot find Chrome binary(..)
Hi Naveen, I'm getting above error while running webdriver tests on jenkins, my build gets successful but it fails tests with Chrome binary error. Can you please help me how to resolve it.
After download git, how you install the current project which need to be clone in my system
hi, u need to use git clone "repo url" command to clone the project
your phot is real? are you developer testing?...greetings to you
Hey Naveen,
is it possible to run regression tests with this process?
Yea of Course it is.
Hello Naveen,How can we make the same setup in linux?