@Documented @Retention(value=RUNTIME) @Target(value=METHOD) public @interface Attachment
Attachment returns
either String or byte array which should be added to report:
@Attachment(value = "Page screenshot", type = "image/png")
public byte[] saveScreenshot(byte[] screenShot) {
return screenShot;
}
Copyright © 2017 Yandex. All rights reserved.