本文整理匯總了Java中org.junit.runner.notification.RunNotifier.pleaseStop方法的典型用法代碼示例。如果您正苦於以下問題:Java RunNotifier.pleaseStop方法的具體用法?Java RunNotifier.pleaseStop怎麽用?Java RunNotifier.pleaseStop使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.junit.runner.notification.RunNotifier
的用法示例。
在下文中一共展示了RunNotifier.pleaseStop方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: takeScreenShot
import org.junit.runner.notification.RunNotifier; //導入方法依賴的package包/類
/**
* Méthode takeScreenShot.
* @throws SaladiumException
*/
public String takeScreenShot() {
String pathScreenShot = "";
try {
String capturePath = AbstractWorker.capturePath;
File scrFile = ((TakesScreenshot) this).getScreenshotAs(OutputType.FILE);
FileUtil.upload(scrFile.getAbsolutePath(), capturePath + "/" + scrFile.getName());
pathScreenShot = capturePath + "/" + scrFile.getName();
this.logger.info("ScreenShot effectué" + pathScreenShot);
} catch (Exception e1) {
this.logger.info("takeScreenShot échoué");
e1.printStackTrace();
}
// try {
// // déconnexion
// By decoLocator = By.cssSelector("#logoff > a");
// WebElement webElement = wait.until(ExpectedConditions.elementToBeClickable(decoLocator));
// webElement.click();
// } catch (TimeoutException e) {
// Assert.fail("Tentative de forçage de déconnexion après un sreenshot échouée");
// }
// A activer si vous souhaitez arrêter les tests dès le premier screenshot effectué (idéal en mode dev ou debug)
RunNotifier notifier = new RunNotifier();
Result result = new Result();
RunListener listener = result.createListener();
notifier.addFirstListener(listener);
notifier.pleaseStop();
return pathScreenShot;
}