Repository: tapestry-5 Updated Branches: refs/heads/master a147df916 -> b45201db3
quit the webdriver instead of closing it Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/b45201db Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/b45201db Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/b45201db Branch: refs/heads/master Commit: b45201db3eab74651c98582a4b1c462e9749dab1 Parents: a147df9 Author: Jochen Kemnade <[email protected]> Authored: Thu Nov 2 12:31:27 2017 +0100 Committer: Jochen Kemnade <[email protected]> Committed: Thu Nov 2 12:31:27 2017 +0100 ---------------------------------------------------------------------- .../src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/b45201db/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java ---------------------------------------------------------------------- diff --git a/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java b/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java index 5bca70b..f318733 100644 --- a/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java +++ b/tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java @@ -263,7 +263,7 @@ public abstract class SeleniumTestCase extends Assert implements Selenium try { - webDriver.close(); + webDriver.quit(); } catch (RuntimeException e) { LOGGER.error("Webdriver shutdown failure.", e);
