From 8040410319628f430a9d005b28565b8d8c5e92c6 Mon Sep 17 00:00:00 2001 From: 100pah Date: Sat, 30 May 2026 22:33:17 +0800 Subject: [PATCH] fix: Make axis.min/max behave consistently with series.data and axis.dataMin - illegal values are ignored. The previous behavior (before v6.1.0) is partially reasonable: `axis.min/max: NaN` coincidentally results in correct series rendering but abnormal axisLabel rendering, and cause axis extent to be series min/max. v6.1.0 introduces a breaking - `axis.min: NaN` causes axis to be blank and series not to be rendered. The current behavior is both reasonable and the closest to previous behavior. --- src/coord/scaleRawExtentInfo.ts | 22 ++-- test/axis-extreme2.html | 130 +++++++++++++++++++++++- test/lib/testHelper.js | 11 +- test/runTest/actions/__meta__.json | 2 +- test/runTest/actions/axis-extreme2.json | 2 +- 5 files changed, 157 insertions(+), 10 deletions(-) diff --git a/src/coord/scaleRawExtentInfo.ts b/src/coord/scaleRawExtentInfo.ts index 71e2ce34af..3773ff7334 100644 --- a/src/coord/scaleRawExtentInfo.ts +++ b/src/coord/scaleRawExtentInfo.ts @@ -243,15 +243,22 @@ export class ScaleRawExtentInfo { fixMM[0] = true; } else { - noZoomEffMM[0] = parseAxisModelMinMax( + const parsedMin = parseAxisModelMinMax( scale, isFunction(modelMinRaw) // This callback always provides users the full data extent (before data is filtered). ? modelMinRaw({min: dataMM[0], max: dataMM[1]}) : modelMinRaw ); - // If `xxxAxis.min: null/undefined`, min should not be fixed. - fixMM[0] = noZoomEffMM[0] != null; + if (isValidNumberForExtent(parsedMin)) { + // Follow the treatment of seriesData and axis.dataMin - illegal values are ignored. + // MEMO: The previous behavior (before v6.1.0) is partially reasonable: `axis.min: NaN` + // coincidentally results in correct series rendering but abnormal axisLabel rendering, + // and cause `fixMM[0] = true`. The current behavior is both reasonable and the closest + // to previous behavior. + fixMM[0] = true; + noZoomEffMM[0] = parsedMin; + } } const modelMaxRaw = model.get('max', true); @@ -260,15 +267,18 @@ export class ScaleRawExtentInfo { fixMM[1] = true; } else { - noZoomEffMM[1] = parseAxisModelMinMax( + const parsedMax = parseAxisModelMinMax( scale, isFunction(modelMaxRaw) // This callback always provides users the full data extent (before data is filtered). ? modelMaxRaw({min: dataMM[0], max: dataMM[1]}) : modelMaxRaw ); - // If `xxxAxis.max: null/undefined`, max should not be fixed. - fixMM[1] = noZoomEffMM[1] != null; + if (isValidNumberForExtent(parsedMax)) { + // Follow the treatment of seriesData and axis.dataMin - illegal values are ignored. + fixMM[1] = true; + noZoomEffMM[1] = parsedMax; + } } const boundaryGap = parseBoundaryGapOption(scale, model); diff --git a/test/axis-extreme2.html b/test/axis-extreme2.html index cb50cc0e95..5da1625d5f 100644 --- a/test/axis-extreme2.html +++ b/test/axis-extreme2.html @@ -43,7 +43,7 @@
- +
@@ -154,6 +154,134 @@ + + + + + + + + + diff --git a/test/lib/testHelper.js b/test/lib/testHelper.js index 43d5315580..7652e7c64c 100644 --- a/test/lib/testHelper.js +++ b/test/lib/testHelper.js @@ -1333,7 +1333,12 @@ var found = false; for (var idx = 0; idx < selectCtx._optionList.length; idx++) { if (!selectCtx._optionList[idx].input - && selectCtx._optionList[idx].value === inputDefine.value + && ( + selectCtx._optionList[idx].value === inputDefine.value + || ( + eqNaN(selectCtx._optionList[idx].value) && eqNaN(inputDefine.value) + ) + ) ) { found = true; initOptionIdx = idx; @@ -2500,6 +2505,10 @@ : null; }; + function eqNaN(value) { + return value !== value; + } + function containsDOMElement(parent, child, includeSelf) { if (!includeSelf && child) { child = child.parentNode; diff --git a/test/runTest/actions/__meta__.json b/test/runTest/actions/__meta__.json index c0dc3b70db..c2f37f0764 100644 --- a/test/runTest/actions/__meta__.json +++ b/test/runTest/actions/__meta__.json @@ -19,7 +19,7 @@ "axis-break-4": 5, "axis-data-min-max": 1, "axis-dataset-null": 1, - "axis-extreme2": 1, + "axis-extreme2": 2, "axis-filter-extent2": 1, "axis-interval": 3, "axis-interval2": 5, diff --git a/test/runTest/actions/axis-extreme2.json b/test/runTest/actions/axis-extreme2.json index 1da182d9c4..997ef6744d 100644 --- a/test/runTest/actions/axis-extreme2.json +++ b/test/runTest/actions/axis-extreme2.json @@ -1 +1 @@ -[{"name":"Action 2","ops":[{"type":"mousemove","time":1280,"x":596,"y":459},{"type":"mousemove","time":1481,"x":470,"y":448},{"type":"mousemove","time":1693,"x":406,"y":411},{"type":"mousemove","time":1899,"x":393,"y":393},{"type":"mousedown","time":2007,"x":390,"y":391},{"type":"mousemove","time":2106,"x":390,"y":391},{"type":"mouseup","time":2290,"x":390,"y":391},{"time":2291,"delay":400,"type":"screenshot-auto"},{"type":"mousedown","time":2608,"x":390,"y":391},{"type":"mouseup","time":2725,"x":390,"y":391},{"time":2726,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":3748,"x":390,"y":390},{"type":"mousemove","time":3948,"x":318,"y":144},{"type":"mousemove","time":4157,"x":307,"y":99},{"type":"mousemove","time":4372,"x":293,"y":82},{"type":"mousemove","time":4639,"x":293,"y":83},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"1","time":7062,"target":"select"},{"time":7063,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":7131,"x":290,"y":94},{"type":"mousemove","time":7331,"x":291,"y":92},{"type":"mousemove","time":7540,"x":293,"y":88},{"type":"mousemove","time":10464,"x":294,"y":88},{"type":"mousemove","time":10664,"x":402,"y":105},{"type":"mousemove","time":10864,"x":404,"y":98},{"type":"mousemove","time":11072,"x":403,"y":93},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"1","time":11933,"target":"select"},{"time":11934,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":11965,"x":401,"y":119},{"type":"mousemove","time":12173,"x":400,"y":118},{"type":"mousemove","time":12380,"x":399,"y":116},{"type":"mousemove","time":12581,"x":395,"y":115},{"type":"mousemove","time":12781,"x":325,"y":111},{"type":"mousemove","time":12981,"x":291,"y":100},{"type":"mousemove","time":13188,"x":280,"y":94},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"2","time":14007,"target":"select"},{"time":14008,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":14048,"x":292,"y":81},{"type":"mousemove","time":14248,"x":292,"y":82},{"type":"mousemove","time":14449,"x":292,"y":85},{"type":"mousemove","time":14657,"x":292,"y":86},{"type":"mousemove","time":14898,"x":292,"y":86},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"3","time":16315,"target":"select"},{"time":16316,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":16324,"x":292,"y":110},{"type":"mousemove","time":16525,"x":292,"y":110},{"type":"mousemove","time":19214,"x":292,"y":110},{"type":"mousemove","time":19414,"x":285,"y":112},{"type":"mousemove","time":20164,"x":286,"y":112},{"type":"mousemove","time":20364,"x":338,"y":111},{"type":"mousemove","time":20572,"x":338,"y":111},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"1","time":21766,"target":"select"},{"time":21767,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":21814,"x":351,"y":112},{"type":"mousemove","time":22024,"x":352,"y":111},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"2","time":23513,"target":"select"},{"time":23514,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":23547,"x":345,"y":144},{"type":"mousemove","time":23814,"x":345,"y":143},{"type":"mousemove","time":24024,"x":358,"y":115},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"3","time":25447,"target":"select"},{"time":25448,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":25481,"x":407,"y":130},{"type":"mousemove","time":25681,"x":391,"y":80},{"type":"mousemove","time":25889,"x":391,"y":79},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"2","time":27079,"target":"select"},{"time":27080,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":27130,"x":400,"y":99},{"type":"mousemove","time":27340,"x":397,"y":94},{"type":"mousemove","time":27573,"x":397,"y":94},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"3","time":28531,"target":"select"},{"time":28532,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":28565,"x":397,"y":119},{"type":"mousemove","time":28776,"x":397,"y":114},{"type":"mousemove","time":28980,"x":397,"y":102},{"type":"mousemove","time":29189,"x":397,"y":101},{"type":"mousemove","time":29397,"x":405,"y":85},{"type":"mousemove","time":29606,"x":405,"y":84},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"4","time":30429,"target":"select"},{"time":30430,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":30450,"x":402,"y":118},{"type":"mousemove","time":30662,"x":311,"y":141},{"type":"mousemove","time":30864,"x":342,"y":113},{"type":"mousemove","time":31073,"x":343,"y":113},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"0","time":31946,"target":"select"},{"time":31947,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":32014,"x":362,"y":101},{"type":"mousemove","time":32214,"x":390,"y":123},{"type":"mousemove","time":32414,"x":406,"y":107},{"type":"mousemove","time":32614,"x":409,"y":93},{"type":"mousemove","time":32814,"x":408,"y":89},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"3","time":34230,"target":"select"},{"time":34231,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":34297,"x":385,"y":92},{"type":"mousemove","time":34497,"x":394,"y":91},{"type":"mousemove","time":34706,"x":395,"y":90},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"2","time":35462,"target":"select"},{"time":35463,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":35497,"x":401,"y":71},{"type":"mousemove","time":35697,"x":401,"y":77},{"type":"mousemove","time":35898,"x":398,"y":98},{"type":"mousemove","time":36106,"x":396,"y":104},{"type":"mousemove","time":36331,"x":395,"y":104},{"type":"mousemove","time":36531,"x":406,"y":87},{"type":"mousemove","time":36741,"x":407,"y":85},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"1","time":38095,"target":"select"},{"time":38096,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":38132,"x":352,"y":90},{"type":"mousemove","time":38341,"x":124,"y":133},{"type":"mousemove","time":38548,"x":125,"y":92},{"type":"mousemove","time":38757,"x":127,"y":89},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select>select.test-inputs-select-select","value":"2","time":39766,"target":"select"},{"time":39767,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":39787,"x":179,"y":125},{"type":"mousemove","time":39991,"x":211,"y":125},{"type":"mousemove","time":41315,"x":211,"y":126},{"type":"mousemove","time":41515,"x":233,"y":139},{"type":"mousemove","time":41716,"x":427,"y":305},{"type":"mousemove","time":41925,"x":420,"y":379},{"type":"mousemove","time":42132,"x":397,"y":389},{"type":"mousedown","time":42161,"x":397,"y":389},{"type":"mouseup","time":42275,"x":397,"y":389},{"time":42276,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":42340,"x":397,"y":389},{"type":"mousedown","time":42624,"x":397,"y":389},{"type":"mouseup","time":42757,"x":397,"y":389},{"time":42758,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":43248,"x":397,"y":389},{"type":"mousemove","time":43448,"x":298,"y":179},{"type":"mousemove","time":43648,"x":289,"y":93},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"2","time":44948,"target":"select"},{"time":44949,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":44968,"x":288,"y":70},{"type":"mousemove","time":45174,"x":274,"y":91},{"type":"mousemove","time":45391,"x":274,"y":92},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"1","time":47347,"target":"select"},{"time":47348,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":47368,"x":280,"y":74},{"type":"mousemove","time":47574,"x":274,"y":91},{"type":"mousemove","time":47790,"x":274,"y":94},{"type":"mousemove","time":48091,"x":274,"y":93},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"0","time":49029,"target":"select"},{"time":49030,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":49048,"x":284,"y":66},{"type":"mousemove","time":49248,"x":400,"y":86},{"type":"mousemove","time":49448,"x":431,"y":89},{"type":"mousemove","time":49648,"x":410,"y":92},{"type":"mousemove","time":49856,"x":406,"y":90},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"2","time":50997,"target":"select"},{"time":50998,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":51048,"x":405,"y":95},{"type":"mousemove","time":51247,"x":408,"y":87},{"type":"mousemove","time":51458,"x":409,"y":85},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"3","time":52371,"target":"select"},{"time":52372,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":52432,"x":412,"y":87},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"4","time":54107,"target":"select"},{"time":54108,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":54129,"x":412,"y":115},{"type":"mousemove","time":54330,"x":412,"y":115},{"type":"mousemove","time":54515,"x":412,"y":116},{"type":"mousemove","time":54743,"x":406,"y":134},{"type":"mousemove","time":54948,"x":295,"y":237},{"type":"mousemove","time":55150,"x":420,"y":270},{"type":"mousemove","time":55358,"x":547,"y":225},{"type":"mousemove","time":55567,"x":540,"y":211},{"type":"mousemove","time":55768,"x":355,"y":90},{"type":"mousedown","time":55945,"x":353,"y":88},{"type":"mousemove","time":55977,"x":353,"y":88},{"type":"mouseup","time":56075,"x":353,"y":88},{"time":56076,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":56085,"x":353,"y":88},{"type":"mousemove","time":56294,"x":353,"y":107},{"type":"mousemove","time":56525,"x":353,"y":107},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"1","time":57514,"target":"select"},{"time":57515,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":57565,"x":359,"y":114},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"2","time":59477,"target":"select"},{"time":59478,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":59516,"x":358,"y":140},{"type":"mousemove","time":59726,"x":362,"y":120},{"type":"mousemove","time":59943,"x":365,"y":106},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"3","time":61074,"target":"select"},{"time":61075,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":61099,"x":365,"y":145},{"type":"mousemove","time":61301,"x":337,"y":261},{"type":"mousemove","time":61534,"x":338,"y":261},{"type":"mousemove","time":61745,"x":494,"y":277},{"type":"mousemove","time":61949,"x":148,"y":251},{"type":"mousemove","time":62149,"x":416,"y":191},{"type":"mousemove","time":62352,"x":430,"y":385},{"type":"mousemove","time":62562,"x":402,"y":400},{"type":"mousedown","time":62692,"x":392,"y":391},{"type":"mousemove","time":62764,"x":392,"y":391},{"type":"mouseup","time":62808,"x":392,"y":391},{"time":62809,"delay":400,"type":"screenshot-auto"},{"type":"mousedown","time":63093,"x":392,"y":391},{"type":"mouseup","time":63208,"x":392,"y":391},{"time":63209,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":63349,"x":392,"y":390},{"type":"mousemove","time":63549,"x":392,"y":379},{"type":"mousemove","time":63750,"x":399,"y":329},{"type":"mousemove","time":63950,"x":416,"y":289},{"type":"mousemove","time":64150,"x":445,"y":232},{"type":"mousemove","time":64360,"x":444,"y":232},{"type":"mousemove","time":65150,"x":444,"y":232},{"type":"mousemove","time":65350,"x":443,"y":230},{"type":"mousemove","time":65558,"x":531,"y":112},{"type":"mousemove","time":65764,"x":536,"y":93},{"type":"mousemove","time":65975,"x":537,"y":84},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"1","time":66881,"target":"select"},{"time":66882,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":66915,"x":487,"y":165},{"type":"mousemove","time":67126,"x":434,"y":211},{"type":"mousemove","time":67465,"x":434,"y":211},{"type":"mousemove","time":67666,"x":349,"y":72},{"type":"mousemove","time":67866,"x":286,"y":69},{"type":"mousemove","time":68066,"x":266,"y":81},{"type":"mousemove","time":68275,"x":262,"y":85},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"1","time":69382,"target":"select"},{"time":69383,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":69438,"x":426,"y":103},{"type":"mousemove","time":69643,"x":523,"y":88},{"type":"mousemove","time":69859,"x":529,"y":88},{"type":"mousemove","time":70249,"x":528,"y":88},{"type":"mousemove","time":70450,"x":472,"y":95},{"type":"mousemove","time":70659,"x":423,"y":92},{"type":"mousemove","time":70865,"x":404,"y":87},{"type":"mousemove","time":71065,"x":398,"y":87},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"1","time":72364,"target":"select"},{"time":72365,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":72398,"x":413,"y":28},{"type":"mousemove","time":72600,"x":411,"y":34},{"type":"mousemove","time":72800,"x":406,"y":48},{"type":"mousemove","time":73011,"x":383,"y":149},{"type":"mousemove","time":73216,"x":372,"y":151},{"type":"mousemove","time":73424,"x":364,"y":125},{"type":"mousedown","time":73574,"x":364,"y":121},{"type":"mousemove","time":73640,"x":364,"y":121},{"type":"mouseup","time":73743,"x":364,"y":121},{"time":73744,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":73915,"x":364,"y":124},{"type":"mousemove","time":74128,"x":409,"y":288},{"type":"mousemove","time":74331,"x":405,"y":248},{"type":"mousemove","time":74531,"x":393,"y":134},{"type":"mousemove","time":74744,"x":390,"y":117},{"type":"mousemove","time":75009,"x":379,"y":104},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"2","time":76007,"target":"select"},{"time":76008,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":76065,"x":368,"y":111},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"1","time":77187,"target":"select"},{"time":77188,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":77234,"x":368,"y":110},{"type":"mousemove","time":77442,"x":368,"y":110},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"0","time":78291,"target":"select"},{"time":78292,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":78350,"x":363,"y":191},{"type":"mousemove","time":78560,"x":363,"y":203},{"type":"mousemove","time":78708,"x":362,"y":210},{"type":"mousemove","time":78913,"x":514,"y":212},{"type":"mousemove","time":79115,"x":549,"y":129},{"type":"mousemove","time":79315,"x":558,"y":92},{"type":"mousemove","time":79515,"x":554,"y":89},{"type":"mousemove","time":79726,"x":553,"y":89},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"0","time":80841,"target":"select"},{"time":80842,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":80899,"x":537,"y":91},{"type":"mousemove","time":81099,"x":533,"y":98},{"type":"mousemove","time":81307,"x":548,"y":86},{"type":"mousemove","time":81525,"x":548,"y":86},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"1","time":82680,"target":"select"},{"time":82681,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":82701,"x":487,"y":109},{"type":"mousemove","time":82909,"x":231,"y":111},{"type":"mousemove","time":83125,"x":213,"y":111},{"type":"mousemove","time":83598,"x":213,"y":111},{"type":"mousemove","time":83798,"x":242,"y":96},{"type":"mousemove","time":83998,"x":259,"y":86},{"type":"mousemove","time":84199,"x":267,"y":81},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"3","time":85607,"target":"select"},{"time":85608,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":85667,"x":217,"y":125},{"type":"mousemove","time":85877,"x":183,"y":115},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(5)>select.test-inputs-select-select","value":"2","time":87375,"target":"select"},{"time":87376,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":87416,"x":176,"y":155},{"type":"mousemove","time":88381,"x":176,"y":155},{"type":"mousemove","time":88582,"x":185,"y":136},{"type":"mousemove","time":88782,"x":192,"y":117},{"type":"mousemove","time":88992,"x":192,"y":116},{"type":"mousemove","time":89282,"x":192,"y":116},{"type":"mousemove","time":89491,"x":192,"y":112},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(5)>select.test-inputs-select-select","value":"1","time":90880,"target":"select"},{"time":90881,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":90900,"x":186,"y":88},{"type":"mousemove","time":91110,"x":186,"y":88},{"type":"mousemove","time":91715,"x":186,"y":89},{"type":"mousemove","time":91916,"x":204,"y":92},{"type":"mousemove","time":92126,"x":205,"y":92},{"type":"mousemove","time":92449,"x":205,"y":92},{"type":"mousemove","time":92659,"x":209,"y":102},{"type":"mousemove","time":92865,"x":207,"y":109},{"type":"mousemove","time":93065,"x":205,"y":133},{"type":"mousemove","time":93266,"x":187,"y":125},{"type":"mousemove","time":93468,"x":129,"y":65},{"type":"mousemove","time":93675,"x":117,"y":91},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select>select.test-inputs-select-select","value":"1","time":94782,"target":"select"},{"time":94783,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":94804,"x":125,"y":62},{"type":"mousemove","time":95011,"x":389,"y":141},{"type":"mousemove","time":95225,"x":389,"y":140},{"type":"mousedown","time":95794,"x":389,"y":140},{"type":"mouseup","time":95959,"x":389,"y":140},{"time":95960,"delay":400,"type":"screenshot-auto"}],"scrollY":0,"scrollX":0,"timestamp":1775407762806}] \ No newline at end of file +[{"name":"Action 2","ops":[{"type":"mousemove","time":1280,"x":596,"y":459},{"type":"mousemove","time":1481,"x":470,"y":448},{"type":"mousemove","time":1693,"x":406,"y":411},{"type":"mousemove","time":1899,"x":393,"y":393},{"type":"mousedown","time":2007,"x":390,"y":391},{"type":"mousemove","time":2106,"x":390,"y":391},{"type":"mouseup","time":2290,"x":390,"y":391},{"time":2291,"delay":400,"type":"screenshot-auto"},{"type":"mousedown","time":2608,"x":390,"y":391},{"type":"mouseup","time":2725,"x":390,"y":391},{"time":2726,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":3748,"x":390,"y":390},{"type":"mousemove","time":3948,"x":318,"y":144},{"type":"mousemove","time":4157,"x":307,"y":99},{"type":"mousemove","time":4372,"x":293,"y":82},{"type":"mousemove","time":4639,"x":293,"y":83},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"1","time":7062,"target":"select"},{"time":7063,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":7131,"x":290,"y":94},{"type":"mousemove","time":7331,"x":291,"y":92},{"type":"mousemove","time":7540,"x":293,"y":88},{"type":"mousemove","time":10464,"x":294,"y":88},{"type":"mousemove","time":10664,"x":402,"y":105},{"type":"mousemove","time":10864,"x":404,"y":98},{"type":"mousemove","time":11072,"x":403,"y":93},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"1","time":11933,"target":"select"},{"time":11934,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":11965,"x":401,"y":119},{"type":"mousemove","time":12173,"x":400,"y":118},{"type":"mousemove","time":12380,"x":399,"y":116},{"type":"mousemove","time":12581,"x":395,"y":115},{"type":"mousemove","time":12781,"x":325,"y":111},{"type":"mousemove","time":12981,"x":291,"y":100},{"type":"mousemove","time":13188,"x":280,"y":94},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"2","time":14007,"target":"select"},{"time":14008,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":14048,"x":292,"y":81},{"type":"mousemove","time":14248,"x":292,"y":82},{"type":"mousemove","time":14449,"x":292,"y":85},{"type":"mousemove","time":14657,"x":292,"y":86},{"type":"mousemove","time":14898,"x":292,"y":86},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"3","time":16315,"target":"select"},{"time":16316,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":16324,"x":292,"y":110},{"type":"mousemove","time":16525,"x":292,"y":110},{"type":"mousemove","time":19214,"x":292,"y":110},{"type":"mousemove","time":19414,"x":285,"y":112},{"type":"mousemove","time":20164,"x":286,"y":112},{"type":"mousemove","time":20364,"x":338,"y":111},{"type":"mousemove","time":20572,"x":338,"y":111},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"1","time":21766,"target":"select"},{"time":21767,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":21814,"x":351,"y":112},{"type":"mousemove","time":22024,"x":352,"y":111},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"2","time":23513,"target":"select"},{"time":23514,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":23547,"x":345,"y":144},{"type":"mousemove","time":23814,"x":345,"y":143},{"type":"mousemove","time":24024,"x":358,"y":115},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"3","time":25447,"target":"select"},{"time":25448,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":25481,"x":407,"y":130},{"type":"mousemove","time":25681,"x":391,"y":80},{"type":"mousemove","time":25889,"x":391,"y":79},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"2","time":27079,"target":"select"},{"time":27080,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":27130,"x":400,"y":99},{"type":"mousemove","time":27340,"x":397,"y":94},{"type":"mousemove","time":27573,"x":397,"y":94},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"3","time":28531,"target":"select"},{"time":28532,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":28565,"x":397,"y":119},{"type":"mousemove","time":28776,"x":397,"y":114},{"type":"mousemove","time":28980,"x":397,"y":102},{"type":"mousemove","time":29189,"x":397,"y":101},{"type":"mousemove","time":29397,"x":405,"y":85},{"type":"mousemove","time":29606,"x":405,"y":84},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"4","time":30429,"target":"select"},{"time":30430,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":30450,"x":402,"y":118},{"type":"mousemove","time":30662,"x":311,"y":141},{"type":"mousemove","time":30864,"x":342,"y":113},{"type":"mousemove","time":31073,"x":343,"y":113},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"0","time":31946,"target":"select"},{"time":31947,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":32014,"x":362,"y":101},{"type":"mousemove","time":32214,"x":390,"y":123},{"type":"mousemove","time":32414,"x":406,"y":107},{"type":"mousemove","time":32614,"x":409,"y":93},{"type":"mousemove","time":32814,"x":408,"y":89},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"3","time":34230,"target":"select"},{"time":34231,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":34297,"x":385,"y":92},{"type":"mousemove","time":34497,"x":394,"y":91},{"type":"mousemove","time":34706,"x":395,"y":90},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"2","time":35462,"target":"select"},{"time":35463,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":35497,"x":401,"y":71},{"type":"mousemove","time":35697,"x":401,"y":77},{"type":"mousemove","time":35898,"x":398,"y":98},{"type":"mousemove","time":36106,"x":396,"y":104},{"type":"mousemove","time":36331,"x":395,"y":104},{"type":"mousemove","time":36531,"x":406,"y":87},{"type":"mousemove","time":36741,"x":407,"y":85},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"1","time":38095,"target":"select"},{"time":38096,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":38132,"x":352,"y":90},{"type":"mousemove","time":38341,"x":124,"y":133},{"type":"mousemove","time":38548,"x":125,"y":92},{"type":"mousemove","time":38757,"x":127,"y":89},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select>select.test-inputs-select-select","value":"2","time":39766,"target":"select"},{"time":39767,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":39787,"x":179,"y":125},{"type":"mousemove","time":39991,"x":211,"y":125},{"type":"mousemove","time":41315,"x":211,"y":126},{"type":"mousemove","time":41515,"x":233,"y":139},{"type":"mousemove","time":41716,"x":427,"y":305},{"type":"mousemove","time":41925,"x":420,"y":379},{"type":"mousemove","time":42132,"x":397,"y":389},{"type":"mousedown","time":42161,"x":397,"y":389},{"type":"mouseup","time":42275,"x":397,"y":389},{"time":42276,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":42340,"x":397,"y":389},{"type":"mousedown","time":42624,"x":397,"y":389},{"type":"mouseup","time":42757,"x":397,"y":389},{"time":42758,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":43248,"x":397,"y":389},{"type":"mousemove","time":43448,"x":298,"y":179},{"type":"mousemove","time":43648,"x":289,"y":93},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"2","time":44948,"target":"select"},{"time":44949,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":44968,"x":288,"y":70},{"type":"mousemove","time":45174,"x":274,"y":91},{"type":"mousemove","time":45391,"x":274,"y":92},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"1","time":47347,"target":"select"},{"time":47348,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":47368,"x":280,"y":74},{"type":"mousemove","time":47574,"x":274,"y":91},{"type":"mousemove","time":47790,"x":274,"y":94},{"type":"mousemove","time":48091,"x":274,"y":93},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"0","time":49029,"target":"select"},{"time":49030,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":49048,"x":284,"y":66},{"type":"mousemove","time":49248,"x":400,"y":86},{"type":"mousemove","time":49448,"x":431,"y":89},{"type":"mousemove","time":49648,"x":410,"y":92},{"type":"mousemove","time":49856,"x":406,"y":90},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"2","time":50997,"target":"select"},{"time":50998,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":51048,"x":405,"y":95},{"type":"mousemove","time":51247,"x":408,"y":87},{"type":"mousemove","time":51458,"x":409,"y":85},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"3","time":52371,"target":"select"},{"time":52372,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":52432,"x":412,"y":87},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"4","time":54107,"target":"select"},{"time":54108,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":54129,"x":412,"y":115},{"type":"mousemove","time":54330,"x":412,"y":115},{"type":"mousemove","time":54515,"x":412,"y":116},{"type":"mousemove","time":54743,"x":406,"y":134},{"type":"mousemove","time":54948,"x":295,"y":237},{"type":"mousemove","time":55150,"x":420,"y":270},{"type":"mousemove","time":55358,"x":547,"y":225},{"type":"mousemove","time":55567,"x":540,"y":211},{"type":"mousemove","time":55768,"x":355,"y":90},{"type":"mousedown","time":55945,"x":353,"y":88},{"type":"mousemove","time":55977,"x":353,"y":88},{"type":"mouseup","time":56075,"x":353,"y":88},{"time":56076,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":56085,"x":353,"y":88},{"type":"mousemove","time":56294,"x":353,"y":107},{"type":"mousemove","time":56525,"x":353,"y":107},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"1","time":57514,"target":"select"},{"time":57515,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":57565,"x":359,"y":114},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"2","time":59477,"target":"select"},{"time":59478,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":59516,"x":358,"y":140},{"type":"mousemove","time":59726,"x":362,"y":120},{"type":"mousemove","time":59943,"x":365,"y":106},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"3","time":61074,"target":"select"},{"time":61075,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":61099,"x":365,"y":145},{"type":"mousemove","time":61301,"x":337,"y":261},{"type":"mousemove","time":61534,"x":338,"y":261},{"type":"mousemove","time":61745,"x":494,"y":277},{"type":"mousemove","time":61949,"x":148,"y":251},{"type":"mousemove","time":62149,"x":416,"y":191},{"type":"mousemove","time":62352,"x":430,"y":385},{"type":"mousemove","time":62562,"x":402,"y":400},{"type":"mousedown","time":62692,"x":392,"y":391},{"type":"mousemove","time":62764,"x":392,"y":391},{"type":"mouseup","time":62808,"x":392,"y":391},{"time":62809,"delay":400,"type":"screenshot-auto"},{"type":"mousedown","time":63093,"x":392,"y":391},{"type":"mouseup","time":63208,"x":392,"y":391},{"time":63209,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":63349,"x":392,"y":390},{"type":"mousemove","time":63549,"x":392,"y":379},{"type":"mousemove","time":63750,"x":399,"y":329},{"type":"mousemove","time":63950,"x":416,"y":289},{"type":"mousemove","time":64150,"x":445,"y":232},{"type":"mousemove","time":64360,"x":444,"y":232},{"type":"mousemove","time":65150,"x":444,"y":232},{"type":"mousemove","time":65350,"x":443,"y":230},{"type":"mousemove","time":65558,"x":531,"y":112},{"type":"mousemove","time":65764,"x":536,"y":93},{"type":"mousemove","time":65975,"x":537,"y":84},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"1","time":66881,"target":"select"},{"time":66882,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":66915,"x":487,"y":165},{"type":"mousemove","time":67126,"x":434,"y":211},{"type":"mousemove","time":67465,"x":434,"y":211},{"type":"mousemove","time":67666,"x":349,"y":72},{"type":"mousemove","time":67866,"x":286,"y":69},{"type":"mousemove","time":68066,"x":266,"y":81},{"type":"mousemove","time":68275,"x":262,"y":85},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"1","time":69382,"target":"select"},{"time":69383,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":69438,"x":426,"y":103},{"type":"mousemove","time":69643,"x":523,"y":88},{"type":"mousemove","time":69859,"x":529,"y":88},{"type":"mousemove","time":70249,"x":528,"y":88},{"type":"mousemove","time":70450,"x":472,"y":95},{"type":"mousemove","time":70659,"x":423,"y":92},{"type":"mousemove","time":70865,"x":404,"y":87},{"type":"mousemove","time":71065,"x":398,"y":87},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"1","time":72364,"target":"select"},{"time":72365,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":72398,"x":413,"y":28},{"type":"mousemove","time":72600,"x":411,"y":34},{"type":"mousemove","time":72800,"x":406,"y":48},{"type":"mousemove","time":73011,"x":383,"y":149},{"type":"mousemove","time":73216,"x":372,"y":151},{"type":"mousemove","time":73424,"x":364,"y":125},{"type":"mousedown","time":73574,"x":364,"y":121},{"type":"mousemove","time":73640,"x":364,"y":121},{"type":"mouseup","time":73743,"x":364,"y":121},{"time":73744,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":73915,"x":364,"y":124},{"type":"mousemove","time":74128,"x":409,"y":288},{"type":"mousemove","time":74331,"x":405,"y":248},{"type":"mousemove","time":74531,"x":393,"y":134},{"type":"mousemove","time":74744,"x":390,"y":117},{"type":"mousemove","time":75009,"x":379,"y":104},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"2","time":76007,"target":"select"},{"time":76008,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":76065,"x":368,"y":111},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"1","time":77187,"target":"select"},{"time":77188,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":77234,"x":368,"y":110},{"type":"mousemove","time":77442,"x":368,"y":110},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(6)>select.test-inputs-select-select","value":"0","time":78291,"target":"select"},{"time":78292,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":78350,"x":363,"y":191},{"type":"mousemove","time":78560,"x":363,"y":203},{"type":"mousemove","time":78708,"x":362,"y":210},{"type":"mousemove","time":78913,"x":514,"y":212},{"type":"mousemove","time":79115,"x":549,"y":129},{"type":"mousemove","time":79315,"x":558,"y":92},{"type":"mousemove","time":79515,"x":554,"y":89},{"type":"mousemove","time":79726,"x":553,"y":89},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"0","time":80841,"target":"select"},{"time":80842,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":80899,"x":537,"y":91},{"type":"mousemove","time":81099,"x":533,"y":98},{"type":"mousemove","time":81307,"x":548,"y":86},{"type":"mousemove","time":81525,"x":548,"y":86},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"1","time":82680,"target":"select"},{"time":82681,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":82701,"x":487,"y":109},{"type":"mousemove","time":82909,"x":231,"y":111},{"type":"mousemove","time":83125,"x":213,"y":111},{"type":"mousemove","time":83598,"x":213,"y":111},{"type":"mousemove","time":83798,"x":242,"y":96},{"type":"mousemove","time":83998,"x":259,"y":86},{"type":"mousemove","time":84199,"x":267,"y":81},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(2)>select.test-inputs-select-select","value":"3","time":85607,"target":"select"},{"time":85608,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":85667,"x":217,"y":125},{"type":"mousemove","time":85877,"x":183,"y":115},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(5)>select.test-inputs-select-select","value":"2","time":87375,"target":"select"},{"time":87376,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":87416,"x":176,"y":155},{"type":"mousemove","time":88381,"x":176,"y":155},{"type":"mousemove","time":88582,"x":185,"y":136},{"type":"mousemove","time":88782,"x":192,"y":117},{"type":"mousemove","time":88992,"x":192,"y":116},{"type":"mousemove","time":89282,"x":192,"y":116},{"type":"mousemove","time":89491,"x":192,"y":112},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(5)>select.test-inputs-select-select","value":"1","time":90880,"target":"select"},{"time":90881,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":90900,"x":186,"y":88},{"type":"mousemove","time":91110,"x":186,"y":88},{"type":"mousemove","time":91715,"x":186,"y":89},{"type":"mousemove","time":91916,"x":204,"y":92},{"type":"mousemove","time":92126,"x":205,"y":92},{"type":"mousemove","time":92449,"x":205,"y":92},{"type":"mousemove","time":92659,"x":209,"y":102},{"type":"mousemove","time":92865,"x":207,"y":109},{"type":"mousemove","time":93065,"x":205,"y":133},{"type":"mousemove","time":93266,"x":187,"y":125},{"type":"mousemove","time":93468,"x":129,"y":65},{"type":"mousemove","time":93675,"x":117,"y":91},{"type":"valuechange","selector":"#main0>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select>select.test-inputs-select-select","value":"1","time":94782,"target":"select"},{"time":94783,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":94804,"x":125,"y":62},{"type":"mousemove","time":95011,"x":389,"y":141},{"type":"mousemove","time":95225,"x":389,"y":140},{"type":"mousedown","time":95794,"x":389,"y":140},{"type":"mouseup","time":95959,"x":389,"y":140},{"time":95960,"delay":400,"type":"screenshot-auto"}],"scrollY":0,"scrollX":0,"timestamp":1775407762806},{"name":"Action 2","ops":[{"type":"mousemove","time":1564,"x":642,"y":335},{"type":"mousemove","time":1773,"x":631,"y":335},{"type":"mousemove","time":1980,"x":457,"y":330},{"type":"mousemove","time":2180,"x":331,"y":324},{"type":"mousemove","time":2390,"x":301,"y":322},{"type":"mousemove","time":2563,"x":294,"y":322},{"type":"mousemove","time":2764,"x":217,"y":271},{"type":"mousemove","time":2964,"x":193,"y":252},{"type":"mousemove","time":3164,"x":176,"y":260},{"type":"mousemove","time":3374,"x":174,"y":262},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"0","time":5366,"target":"select"},{"time":5367,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":5391,"x":270,"y":282},{"type":"mousemove","time":5591,"x":350,"y":261},{"type":"mousemove","time":5806,"x":348,"y":258},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"0","time":6686,"target":"select"},{"time":6687,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":6718,"x":275,"y":266},{"type":"mousemove","time":6926,"x":189,"y":260},{"type":"mousemove","time":8613,"x":372,"y":263},{"type":"mousemove","time":8825,"x":372,"y":263},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"2","time":10002,"target":"select"},{"time":10003,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":10097,"x":363,"y":277},{"type":"mousemove","time":10297,"x":364,"y":276},{"type":"mousemove","time":10509,"x":364,"y":276},{"type":"mousemove","time":10863,"x":364,"y":276},{"type":"mousemove","time":11074,"x":366,"y":275},{"type":"mousemove","time":11292,"x":371,"y":266},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"3","time":12701,"target":"select"},{"time":12702,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":12780,"x":383,"y":270},{"type":"mousemove","time":12992,"x":384,"y":270},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"4","time":14631,"target":"select"},{"time":14632,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":14700,"x":392,"y":271},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"5","time":16747,"target":"select"},{"time":16748,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":16830,"x":392,"y":273},{"type":"mousemove","time":17043,"x":394,"y":266},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"6","time":18283,"target":"select"},{"time":18284,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":18380,"x":405,"y":259},{"type":"mousemove","time":18697,"x":405,"y":259},{"type":"mousemove","time":18897,"x":396,"y":267},{"type":"mousemove","time":19108,"x":396,"y":268},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"7","time":19963,"target":"select"},{"time":19964,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":20030,"x":409,"y":265},{"type":"mousemove","time":20241,"x":409,"y":263},{"type":"mousemove","time":20457,"x":409,"y":262},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"8","time":21147,"target":"select"},{"time":21148,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":21230,"x":373,"y":267},{"type":"mousemove","time":21443,"x":325,"y":275},{"type":"mousemove","time":21663,"x":325,"y":275},{"type":"mousemove","time":21864,"x":328,"y":268},{"type":"mousemove","time":22075,"x":329,"y":266},{"type":"mousemove","time":22548,"x":329,"y":266},{"type":"mousemove","time":22758,"x":522,"y":286},{"type":"mousemove","time":22963,"x":535,"y":276},{"type":"mousemove","time":23175,"x":542,"y":265},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(5)>select.test-inputs-select-select","value":"1","time":24097,"target":"select"},{"time":24098,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":24134,"x":525,"y":297},{"type":"mousemove","time":24341,"x":389,"y":268},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"0","time":26232,"target":"select"},{"time":26233,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":26274,"x":273,"y":196},{"type":"mousemove","time":26479,"x":196,"y":270},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"1","time":27554,"target":"select"},{"time":27555,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":27597,"x":173,"y":274},{"type":"mousemove","time":27808,"x":175,"y":267},{"type":"mousemove","time":28025,"x":178,"y":262},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"2","time":28765,"target":"select"},{"time":28766,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":28864,"x":182,"y":262},{"type":"mousemove","time":29077,"x":180,"y":267},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"3","time":29795,"target":"select"},{"time":29796,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":29863,"x":189,"y":260},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"5","time":30864,"target":"select"},{"time":30865,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":30916,"x":189,"y":272},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"4","time":32514,"target":"select"},{"time":32515,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":32599,"x":165,"y":275},{"type":"mousemove","time":32809,"x":167,"y":272},{"type":"mousemove","time":33025,"x":168,"y":269},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"6","time":34062,"target":"select"},{"time":34063,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":34130,"x":170,"y":284},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"7","time":35229,"target":"select"},{"time":35230,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":35297,"x":185,"y":259},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"8","time":36447,"target":"select"},{"time":36448,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":36487,"x":186,"y":281},{"type":"mousemove","time":36693,"x":277,"y":311},{"type":"mousemove","time":36908,"x":283,"y":311},{"type":"mousemove","time":40247,"x":282,"y":311},{"type":"mousemove","time":40447,"x":211,"y":292},{"type":"mousemove","time":40647,"x":187,"y":265},{"type":"mousemove","time":40859,"x":186,"y":262},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"0","time":42380,"target":"select"},{"time":42381,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":42406,"x":340,"y":162},{"type":"mousemove","time":42611,"x":423,"y":244},{"type":"mousemove","time":42814,"x":216,"y":288},{"type":"mousemove","time":43024,"x":206,"y":289},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(7)>select.test-inputs-select-select","value":"2","time":44114,"target":"select"},{"time":44115,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":44181,"x":185,"y":322},{"type":"mousemove","time":44463,"x":186,"y":320},{"type":"mousemove","time":44664,"x":193,"y":298},{"type":"mousemove","time":44875,"x":193,"y":294},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(7)>select.test-inputs-select-select","value":"1","time":46014,"target":"select"},{"time":46015,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":46052,"x":202,"y":281},{"type":"mousemove","time":46259,"x":204,"y":282},{"type":"mousemove","time":46509,"x":201,"y":290},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(7)>select.test-inputs-select-select","value":"3","time":47632,"target":"select"},{"time":47633,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":47702,"x":201,"y":298},{"type":"mousemove","time":47909,"x":203,"y":295},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(7)>select.test-inputs-select-select","value":"4","time":48798,"target":"select"},{"time":48799,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":48897,"x":221,"y":279},{"type":"mousedown","time":48924,"x":223,"y":277},{"type":"mouseup","time":49059,"x":223,"y":277},{"time":49060,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":49131,"x":223,"y":277},{"type":"mousemove","time":49344,"x":215,"y":288},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(7)>select.test-inputs-select-select","value":"5","time":50246,"target":"select"},{"time":50247,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":50314,"x":237,"y":277},{"type":"mousedown","time":50338,"x":237,"y":277},{"type":"mouseup","time":50475,"x":237,"y":277},{"time":50476,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":50547,"x":237,"y":278},{"type":"mousemove","time":50747,"x":234,"y":282},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(7)>select.test-inputs-select-select","value":"6","time":51602,"target":"select"},{"time":51603,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":51654,"x":235,"y":284},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(7)>select.test-inputs-select-select","value":"7","time":52684,"target":"select"},{"time":52685,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":52769,"x":241,"y":277},{"type":"mousemove","time":52975,"x":239,"y":278},{"type":"mousemove","time":53415,"x":241,"y":277},{"type":"mousemove","time":53626,"x":236,"y":279},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(7)>select.test-inputs-select-select","value":"0","time":55499,"target":"select"},{"time":55500,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":55543,"x":262,"y":176},{"type":"mousemove","time":55743,"x":435,"y":293},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(8)>select.test-inputs-select-select","value":"1","time":56963,"target":"select"},{"time":56964,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":57030,"x":440,"y":286},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(8)>select.test-inputs-select-select","value":"2","time":57949,"target":"select"},{"time":57950,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":58031,"x":453,"y":289},{"type":"mousemove","time":58244,"x":453,"y":290},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(8)>select.test-inputs-select-select","value":"3","time":58949,"target":"select"},{"time":58950,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":59014,"x":448,"y":298},{"type":"mousemove","time":59226,"x":450,"y":293},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(8)>select.test-inputs-select-select","value":"4","time":60082,"target":"select"},{"time":60083,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":60166,"x":457,"y":291},{"type":"mousemove","time":60377,"x":457,"y":292},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(8)>select.test-inputs-select-select","value":"5","time":61097,"target":"select"},{"time":61098,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":61163,"x":450,"y":296},{"type":"mousemove","time":61375,"x":455,"y":289},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(8)>select.test-inputs-select-select","value":"6","time":62215,"target":"select"},{"time":62216,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":62281,"x":467,"y":281},{"type":"mousemove","time":62492,"x":463,"y":287},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(8)>select.test-inputs-select-select","value":"7","time":63314,"target":"select"},{"time":63315,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":63381,"x":470,"y":284},{"type":"mousemove","time":63747,"x":470,"y":283},{"type":"mousemove","time":63960,"x":470,"y":282},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(8)>select.test-inputs-select-select","value":"0","time":66753,"target":"select"},{"time":66754,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":66815,"x":316,"y":234},{"type":"mousemove","time":67027,"x":310,"y":245},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select>select.test-inputs-select-select","value":"1","time":68230,"target":"select"},{"time":68231,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":68272,"x":300,"y":267},{"type":"mousemove","time":68477,"x":307,"y":269},{"type":"mousemove","time":68680,"x":525,"y":264},{"type":"mousemove","time":68881,"x":622,"y":261},{"type":"mousemove","time":69093,"x":659,"y":260},{"type":"mousedown","time":69159,"x":659,"y":260},{"type":"mouseup","time":69260,"x":659,"y":260},{"time":69261,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":69964,"x":656,"y":260},{"type":"mousemove","time":70164,"x":590,"y":259},{"type":"mousemove","time":70377,"x":584,"y":259},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(5)>select.test-inputs-select-select","value":"0","time":71598,"target":"select"},{"time":71599,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":71637,"x":628,"y":251},{"type":"mousedown","time":71844,"x":674,"y":283},{"type":"mousemove","time":71857,"x":674,"y":284},{"type":"mouseup","time":71976,"x":674,"y":284},{"time":71977,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":72481,"x":671,"y":284},{"type":"mousemove","time":72681,"x":611,"y":268},{"type":"mousemove","time":72894,"x":609,"y":266},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(5)>select.test-inputs-select-select","value":"2","time":73615,"target":"select"},{"time":73616,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":73658,"x":637,"y":286},{"type":"mousedown","time":73699,"x":683,"y":278},{"type":"mouseup","time":73844,"x":683,"y":278},{"time":73845,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":73884,"x":680,"y":278},{"type":"mousemove","time":74064,"x":683,"y":278},{"type":"mousemove","time":74747,"x":682,"y":278},{"type":"mousemove","time":74952,"x":288,"y":278},{"type":"mousemove","time":75161,"x":149,"y":308},{"type":"mousemove","time":75376,"x":144,"y":297},{"type":"mousemove","time":75747,"x":144,"y":297},{"type":"mousemove","time":75947,"x":147,"y":275},{"type":"mousemove","time":76149,"x":149,"y":264},{"type":"mousemove","time":76361,"x":147,"y":266},{"type":"mousemove","time":76564,"x":140,"y":279},{"type":"mousemove","time":76764,"x":137,"y":280},{"type":"mousemove","time":76977,"x":145,"y":265},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(3)>select.test-inputs-select-select","value":"2","time":78399,"target":"select"},{"time":78400,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":78442,"x":279,"y":300},{"type":"mousemove","time":78644,"x":336,"y":267},{"type":"mousemove","time":78861,"x":336,"y":267},{"type":"valuechange","selector":"#main1>div.test-chart-block-left>div.test-inputs.test-buttons.test-inputs-style-compact>span.test-inputs-select:nth-child(4)>select.test-inputs-select-select","value":"2","time":80018,"target":"select"},{"time":80019,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":80097,"x":360,"y":296},{"type":"mousemove","time":80298,"x":371,"y":295},{"type":"mousemove","time":80714,"x":371,"y":296},{"type":"mousemove","time":80918,"x":370,"y":311},{"type":"mousemove","time":81126,"x":384,"y":313},{"type":"mousedown","time":81428,"x":384,"y":313},{"type":"mouseup","time":81610,"x":384,"y":313},{"time":81611,"delay":400,"type":"screenshot-auto"},{"type":"mousemove","time":81864,"x":384,"y":314},{"type":"mousemove","time":82076,"x":384,"y":320}],"scrollY":251,"scrollX":0,"timestamp":1780150771255}] \ No newline at end of file