windows screenshot shortcut
# Windows screenshot tool shortcut keys
Windows key + Shift + S
windows screenshot shortcut
# Windows screenshot tool shortcut keys
Windows key + Shift + S
how to take a screenshot
---------- Screenshot on WINDOW ----------------
>> Windows + Shift + S
---------- Screenshot on MAC ----------------
>> Shift + Command + 4
how to take a screenshot
HOW TO TAKE SCREENSHOT IN ANY TEST CASE WITHOUT FAILURE
TakesScreenshot screen=(TakesScreenshot)Driver.getDriver();
File screenshot=screen.getScreenshotAs(OutputType.FILE);
FileUtils.copyFile(screenshot, new File("<your folder path here>"));
HOW TO TAKE SCREENSHOT FOR FAILED SCENARIOS
I have a tearDown method in my Hooks Class.
I keep my screenshot codes in it. It takes screenshot
as soon as any scenario fails.
@After
public void tearDown(Scenario scenario) {
if(scenario.isFailed()) {
TakesScreenshot screen=(TakesScreenshot)Driver.getDriver();
final byte[] screenshot =
screen.getScreenshotAs(OutputType.BYTES); ==> taking screenshot
scenario.embed(screenshot, "image/png");
==> adding screenshot to the report
}
}
==========================================================================================
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us