Cucumber Java screenshots(黄瓜 Java 截图)
问题描述
Is there a way to take screenshots in between steps in Java Cucumber ?
I have the following scenario :
@Scenario_1
Given I log into url
And I see the home page is displayed in English //Take screenshot
And I click on 'Edit Profile'
And I see the language set to 'English'
When I change the language to Chinese //Take screenshot
And I navigate to home page
Then everything is displayed in Chinese //Take screenshot
I want to take screenshots for certain steps of the scenario.
I am currently taking a screenshot in the 'After' method.
@After()
public void execute_after_every_scenario(Scenario s) throws InterruptedException
{
Thread.sleep(2000);
final byte[] screenshot = ((TakesScreenshot) driver).getScreenshotAs(OutputType.BYTES);
s.embed(screenshot, "image/png");
driver.quit();
}
As expected, this is capturing the image for the last step only.
How can I capture the images for the other 2 steps and embed the image the same way as in the 'After' method ?
I tried to create a new method to take screenshots and call that method when needed. But can any other method , other than the one specified in 'After' , take scenario as an argument ?
take_screenshot(Scenario_1, driver);
public void take_screenshot(Scenario s,WebDriver driver)
{
final byte[] screenshot = ((TakesScreenshot) driver).getScreenshotAs(OutputType.BYTES);
s.embed(screenshot, "image/png");
}
How can I go about this ?
Create a screenshot step. Maybe something like this:
public class YourStepDefinitions {
private Scenario myScenario;
@Before()
public void embedScreenshotStep(Scenario scenario) {
myScenario = scenario;
}
@Then ("^I take a screenshot$")
public void i_take_a_screenshot() throws Throwable {
try {
myScenario.write("Current Page URL is " + driver.getCurrentUrl());
byte[] screenshot = ((TakesScreenshot)driver).getScreenshotAs(OutputType.BYTES);
myScenario.embed(screenshot, "image/png"); // Stick it in the report
} catch (WebDriverException somePlatformsDontSupportScreenshots) {
log.error(somePlatformsDontSupportScreenshots.getMessage());
} catch (ClassCastException cce) {
cce.printStackTrace();
}
}
}
这篇关于黄瓜 Java 截图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:黄瓜 Java 截图


- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 转换 ldap 日期 2022-01-01
- 获取数字的最后一位 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01