Jenkins: Driver Info: driver.version unknown

Update:

I tried to see if I could get the TCs running by using @BeforeTestCase instead of @Before.

Also tried the suggested boolean here: Avoid staktrace in console with getWindowTitle()

*Here are my Before and After classes as used when the tests are run on my Windows pc:

	@Before
	public void beforeScenario() {
		WebUI.disableSmartWait()
		
		WebUI.openBrowser('')

		WebUI.maximizeWindow()
	}
	
	@After
	void after() {
	WebUI.closeBrowser()

	}

no luck…

any tips are welcome :slight_smile: