commit d40cc15c8f12485d4245a9e11c1c1fac0cd97492
parent f10c85070ec3a8b97ead02db3dd36102d4a364fd
Author: Marcel <MTRNord@users.noreply.github.com>
Date: Fri, 11 Nov 2016 22:12:30 +0100
Fix Async
Diffstat:
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/intel_screenbot/screencap.js b/intel_screenbot/screencap.js
@@ -19,6 +19,7 @@ if (args.length === 1) {
var filepath = args[4];
var search = args[5];
console.log(search)
+ system.stdout.writeLine(filepath);
}
}
}
@@ -76,7 +77,7 @@ function afterCookieLogin(IntelURL, search) {
}
setTimeout(function() {
waitFor({
- timeout: 10000,
+ timeout: 60000,
check: function () {
return page.evaluate(function() {
if (document.querySelector('#percent_text').textContent == "90") {
@@ -133,9 +134,11 @@ function storeCookies() {
function s(file) {
page.render(file);
+ phantom.exit(0);
}
function hideDebris() {
+ system.stdout.writeLine('hideDebris...');
page.evaluate(function() {
if (document.querySelector('#comm')) {document.querySelector('#comm').style.display = 'none';}
if (document.querySelector('#player_stats')) {document.querySelector('#player_stats').style.display = 'none';}
@@ -162,6 +165,7 @@ function hideDebris() {
* @param {number} heightz
*/
function prepare(widthz, heightz, search) {
+ system.stdout.writeLine('prepare...');
if (search == "nix") {
var selector = "#map_canvas";
setElementBounds(selector);
@@ -265,6 +269,7 @@ function addTimestamp(time) {
* Main function.
*/
function main() {
+ system.stdout.writeLine('main...');
if (true){
page.evaluate(function() {
if (document.getElementById('watermark-ice')) {
@@ -279,5 +284,4 @@ function main() {
file = filepath;
s(file);
}, 5000);
- phantom.exit();
}