My Python CODE is(windows Machine)
from selenium import webdriver
print("new Line")
print("2 Line")
print("3 Line")
holdChrome = webdriver.ChromeOptions()
holdChrome.add_experimental_option("detach", True) #Restrict auto close of chrome
e = webdriver.Chrome(holdChrome)
e.get("https://keepr.inoidsolutions.in/")
when I run this python code on jenkins + github it execute all python code but not launching chrome browser on it.