From 34115728fe0cdfeacdfb39755bad4187f56d207e Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Mon, 2 Sep 2024 21:41:35 +0900 Subject: [PATCH] Update chrome.js --- lib/chrome.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/chrome.js b/lib/chrome.js index b423437..56ae30f 100644 --- a/lib/chrome.js +++ b/lib/chrome.js @@ -690,7 +690,7 @@ var ChromeObject = function() { if (!(this.debuggingPort > 0)) return; - var i = 0, k = 5; + var i = 0, k = 60; while (i < k && title != this.getTitle()) { sleep(1000); this.evaluate('document.title = ' + this.__escape(title)); @@ -1414,7 +1414,7 @@ exports.startDebugInPrivate = function(url, proxy, profileName, debuggingPort, i ; }; -exports.VERSIONINFO = "Chrome Web Browser Debugging Interface (chrome.js) version 0.4.11"; +exports.VERSIONINFO = "Chrome Web Browser Debugging Interface (chrome.js) version 0.4.12"; exports.AUTHOR = "abuse@catswords.net"; exports.global = global; exports.require = global.require;