Created
March 30, 2020 10:45
-
-
Save martinschneider/c28603ecaf2a07f6c4cf4312e3f9248a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private WebDriver logAppInfo(AppiumDriver<? extends WebElement> driver) { | |
String appPath = driver.getSessionDetail("app").toString(); | |
if (appPath != null) { | |
LOG.info("Application: {}", applicationInfoService.getAppInfo(appPath)); | |
} | |
return driver; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment