@@ -228,13 +228,6 @@ public class Example {
228228 - `height` (number): Height of the region.
229229 - `elementXpath` (string): The XPath selector for the element.
230230 - `elementCSS` (string): The CSS selector for the element.
231- - `padding` (optional)
232- - Specifies additional padding around the selected region.
233- - Properties:
234- - `top` (number): Padding from the top.
235- - `left` (number): Padding from the left.
236- - `right` (number): Padding from the right.
237- - `bottom` (number): Padding from the bottom.
238231 - `algorithm` (mandatory)
239232 - Specifies the snapshot comparison algorithm.
240233 - Allowed values: `standard`, `layout`, `ignore`, `intelliignore`.
@@ -252,12 +245,6 @@ public class Example {
252245 Map<String, Object> elementSelector = new HashMap<>();
253246 elementSelector.put("elementCSS", ".ad-banner");
254247
255- Map<String, Object> padding = new HashMap<>();
256- padding.put("top", 10);
257- padding.put("left", 20);
258- padding.put("right", 15);
259- padding.put("bottom", 10);
260-
261248 Map<String, Object> configuration = new HashMap<>();
262249 configuration.put("diffSensitivity", 2);
263250 configuration.put("imageIgnoreThreshold", 0.2);
@@ -270,7 +257,6 @@ public class Example {
270257
271258 Map<String, Object> obj1 = new HashMap<>();
272259 obj1.put("elementSelector", elementSelector);
273- obj1.put("padding", padding);
274260 obj1.put("algorithm", "intelliignore");
275261 obj1.put("configuration", configuration);
276262 obj1.put("assertion", assertion);
0 commit comments