Skip to content

Commit

Permalink
Added field to share screenshot file path with the plugins. getgauge/…
Browse files Browse the repository at this point in the history
  • Loading branch information
negiDharmendra committed Sep 3, 2019
1 parent 111c0b4 commit 77e995a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions spec.proto
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,10 @@ message ProtoExecutionResult {
bytes failureScreenshot = 9;
/// Bytes array containing screenshots at the time of it invoked
repeated bytes screenshots = 10;
/// Path to the screenshot file captured at the time of failure.
string failureScreenshotFile = 11;
/// Path to the screenshot files captured using Gauge screenshsot API.
repeated string screenshotFiles = 12;
}

/// A proto object representing a pre-hook failure.
Expand All @@ -317,6 +321,8 @@ message ProtoHookFailure {
int32 tableRowIndex = 4;
///Bytes holding the screenshot taken at the time of failure.
bytes failureScreenshot = 5;
/// Path to the screenshot file captured at the time of failure.
string failureScreenshotFile = 6;
}

/// A proto object representing the result of entire Suite execution.
Expand Down

0 comments on commit 77e995a

Please sign in to comment.