Created
December 3, 2021 14:13
-
-
Save TuHuynhVan/38b2ad4998fe6eb07943b3ea6285d533 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
package test; | |
import driver.DriverFactoryEx; | |
import io.appium.java_client.AppiumDriver; | |
import io.appium.java_client.MobileElement; | |
import io.qameta.allure.Allure; | |
import org.apache.commons.io.FileUtils; | |
import org.openqa.selenium.OutputType; | |
import org.openqa.selenium.TakesScreenshot; | |
import org.testng.ITestResult; | |
import org.testng.annotations.AfterMethod; | |
import org.testng.annotations.AfterSuite; | |
import org.testng.annotations.BeforeSuite; | |
import java.io.File; | |
import java.io.InputStream; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.nio.file.Paths; | |
import java.util.*; | |
public class BaseTest { | |
private final static List<DriverFactoryEx> driverThreadPool = Collections.synchronizedList(new ArrayList<>()); | |
private static ThreadLocal<DriverFactoryEx> driverThread; | |
@BeforeSuite(alwaysRun = true) | |
public static void beforeSuite() { | |
// () -> {} anonymous function | |
driverThread = ThreadLocal.withInitial(() -> { | |
DriverFactoryEx driverThread = new DriverFactoryEx(); | |
driverThreadPool.add(driverThread); | |
return driverThread; | |
}); | |
} | |
@AfterSuite(alwaysRun = true) | |
public static void afterSuite() { | |
for (DriverFactoryEx webDriverThread : driverThreadPool) { | |
webDriverThread.quitAppiumSession(); | |
} | |
} | |
public static AppiumDriver<MobileElement> getDriver() { | |
return driverThread.get().getAppiumDriver(); | |
} | |
// TODO: this can be enum type | |
// public static AppiumDriver<MobileElement> getDriver(String mobileDriverName){ | |
// return driverThread.get().getDriver(browserName); | |
// } | |
@AfterMethod(alwaysRun = true) | |
public void afterMethod(ITestResult result) { | |
if (result.getStatus() == ITestResult.FAILURE) { | |
// 1. Get the test Method name | |
String testMethodName = result.getName(); | |
// 2. Declare the file location | |
Calendar calendar = new GregorianCalendar(); | |
int y = calendar.get(Calendar.YEAR); | |
int m = calendar.get(Calendar.MONTH); | |
int d = calendar.get(Calendar.DATE); | |
int hr = calendar.get(Calendar.HOUR_OF_DAY); | |
int min = calendar.get(Calendar.MINUTE); | |
int sec = calendar.get(Calendar.SECOND); | |
String dateTaken = y + "-" + (m + 1) + "-" + d + "-" + hr + "-" + min + "-" + sec; | |
String fileLocation = System.getProperty("user.dir") + "/screenshot/" + testMethodName + "_"+ dateTaken + ".png"; | |
// 3. Declare the file name | |
// 4. Save the screenshot to the system | |
File screenShot = driverThread.get().getAppiumDriver().getScreenshotAs(OutputType.FILE); | |
try { | |
FileUtils.copyFile(screenShot, new File(fileLocation)); | |
Path content = Paths.get(fileLocation); | |
try (InputStream is = Files.newInputStream(content)) { | |
Allure.addAttachment(testMethodName, is); | |
} | |
} catch (Exception e) { | |
e.printStackTrace(); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment