Python script will help us to open new browser, When we run the script via any ide(cmd prompt) new browser will open but when the same script run via jenkins project it will not open browser.
Currently working on creating new jenkins project and adding my python script on that same project. Jenkin project will build at specific time. meanwhile python script will run.
My Python Code:
import webbrowser
webbrowser.open('https://www.google.com/', new = 2)
Can any one help me out to open a browser when i run the python script via jenkin's project.