Добавил еще ведущие нули к миллисекундам, если кому-то еще когда-то этот код понадобится
log = function (text, color, define){ var id, time, thread, logHtml, textLog; define = (typeof define == 'string') ? define.split(/[\s,.|:;]+/g) : define; if(typeof define === 'object' && define !== null){ if(Array.isArray(define)){ id = define.indexOf('id') > -1; time = define.indexOf('time') > -1; thread = define.indexOf('thread') > -1; } else{ id = define.id == true; time = define.time == true; thread = define.thread == true; } } else id = time = thread = true; id = id ? '<a href="action://action' + ScriptWorker.GetCurrentAction() + '" style="color:gray;">[' + ScriptWorker.GetCurrentAction() + ']</a>' : ''; time = time ? ' ' + getTime() : ''; thread = thread ? ' Поток №' + thread_number() : ''; logHtml = (id || time || thread) ? id + '<span style="color: white">' + time + thread + ' : </span>' : ''; logHtml += '<span style="color:' + (color ? color : 'white') + '">' + text + '</span>'; textLog = '[' + ScriptWorker.GetCurrentAction() + ']' + time + thread + ' : ' + text function getTime(){ var checkTime = function(i){ return (i < 10) ? "0" + i : i; }; var checkMilliSeconds = function(ms){ if (ms < 10) { return "00" + ms; } else if (ms < 100) { return "0" + ms; } else { return ms; } }; var d = new Date(); var hh = checkTime(d.getHours()); var mm = checkTime(d.getMinutes()); var ss = checkTime(d.getSeconds()); var ms = checkMilliSeconds(d.getMilliseconds()); return '[' + hh + ':' + mm + ':' + ss + '.' + ms + ']'; }; Logger.WriteHtml(logHtml, textLog); }683760989 таймаут во время выполнения script for[documentRoot]
-
var counter = 0; // Ініціалізуємо лічильник
var xpathTextList = [[XPATH_TEXT_LIST]];
for (var i = 0; i < 4 && i < xpathTextList.length; i++) {
var currentValue = parseFloat(xpathTextList[i].replace('x', ''));
if (currentValue < 1.20) {
counter++;
}
}[[XPATH_TEXT_LIST]] = xpathTextList;
[[CRASH_COUNTER]] = counter;XPATH_TEXT_LIST - те 40 елементов что я получаю, ия проверяю первые 4, если оны меньше 1.20 каунтер = 4
Все супер работает, но только 2 часа(
-
683760989 - у вас код страницы, оберните его в игнор ошибок, чтобы поток аварийно не завершался, а дальше разбирайтесь, почему код страницы не грузится.
-
После WAS_ERROR обычно предпринимаются какие-то контрдействия, например сброс, прокси, сон... Вы же просто повторяете команду, вызывающую ошибку, что приводит к их накоплению.
В отчете о работе, где у вас ошибки? -
-

-
@Vituskosoy Проблема в том что мне надо авторизироватся на сайт при запуске програмки, а через куки не получается это сделать
-
Если сон пробовали ставить, то можно избавиться от получения кода страницы, а текст получать через кубик браузера "Яваскрипт":
[[XPATH_TEXT_LIST]] = []; res=document.evaluate([[YOU_XPATH]] + "//text()", document, null, XPathResult.ANY_TYPE, null); while(node=res.iterateNext()) [[XPATH_TEXT_LIST]].push(node.textContent);


