Skip to content

Commit

Permalink
Merge pull request #1344 from qaprosoft/7.0.5
Browse files Browse the repository at this point in the history
hotfix
  • Loading branch information
vdelendik authored May 10, 2021
2 parents 650d77d + 67a6f8e commit 71592be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,10 @@ private void quitDriver(CarinaDriver carinaDriver, boolean keepProxyDuring) {

Future<?> future = Executors.newSingleThreadExecutor().submit(new Callable<Void>() {
public Void call() throws Exception {
driver.close();
if ("chrome".equalsIgnoreCase(Configuration.getBrowser())) {
// workaround to not cleaned chrome profiles on hard drive
driver.close();
}
driver.quit();
return null;
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<selenium.version>3.141.59</selenium.version>
<appium.version>7.4.1</appium.version>
<!-- Zebrunner integrations -->
<zebrunner-testng-pluggable.version>1.5.0.180-SNAPSHOT</zebrunner-testng-pluggable.version>
<zebrunner-testng-pluggable.version>1.5.0</zebrunner-testng-pluggable.version>
<!-- Others -->
<azure-storage-blob.version>12.4.0</azure-storage-blob.version>
<aws-java-sdk.version>1.11.923</aws-java-sdk.version>
Expand Down

0 comments on commit 71592be

Please sign in to comment.