I have created a maven project for Web automation tests I am using code below to launch browser
System.setProperty("webdriver.chrome.driver", "pathChromeDriver");
driver = new ChromeDriver();
driver.manage().window().maximize();
Also I am using Jenkins to execute my test suite and it's working fine.
Now I want to configure browser launch operation from Jenkins without using it in my maven project. Can we do this using plugins available in Jenkins ???
If yes then please help me with that.