A packaged framework for implementing web and API test suites. Builds on Concordion to bring your software delivery team together around living documentation.
I'm just debugging cubano-demo and see that incrementBrowserTestCount() is called multiple times per test, since it is called from BasePageObject.getBrowser() which is invoked from BasePageObject.waitUntil(), eg. WebDriverWait wait = new WebDriverWait(getBrowser().getDriver(), timeOutInSeconds);
This would cause the browser to be recreated often if the config property browserCloseAfterXTests was set to >0.
I'm just debugging cubano-demo and see that
incrementBrowserTestCount()
is called multiple times per test, since it is called fromBasePageObject.getBrowser()
which is invoked fromBasePageObject.waitUntil()
, eg.WebDriverWait wait = new WebDriverWait(getBrowser().getDriver(), timeOutInSeconds);
This would cause the browser to be recreated often if the config property
browserCloseAfterXTests
was set to >0.