wait_js

wait_js($Try_Second=30); - waits for the browser to process all currently active Java scripts. Used after navigation commands if the page has a lot of active JS that haven't been worked out yet.

the input Function accepts parameters:

  • $Try_Second – time allowed for all JS execution (in seconds)

    After testing, the function returns the result of its work to the script :
  • true – successfully waited, navigation was drained
  • false – navigation failed

    PHP example: script->".basename(__FILE__)."
    "; //1 echo "1.Let's go to adwords:"; echo $browser->navigate("https://adwords.google.com/o/Targeting/Explorer?__c=5130069821&__u=5155362581&__o=cues&ideaRequestType=KEYWORD_IDEAS")."
    "; //2 echo "1.Waiting for JS to complete:"; echo $browser->wait_js(); //end echo "

    "; //Quit $app->quit(); ?>
    Python example: # Additional paths import sys sys.path.insert(0, '../../../Templates PY/') xhe_host = "127.0.0.1:7013" from xweb_human_emulator import * # Start echo("
    browser.xxxxxxxxx
    ") # 1 echo("1.Let's go to adwords:") echo(browser.navigate("https://adwords.google.com/o/Targeting/Explorer?__c=5130069821&__u=5155362581&__o=cues&ideaRequestType=KEYWORD_IDEAS"), "
    ") # 2 echo("1.Waiting for JS to complete:") echo(browser.wait_js()) # end echo("

    ") # Quit app.quit()
    C# example: #region using using System; using System.Diagnostics; using System.Collections.Generic; using System.Linq; using System.IO; using System.Text; using System.Threading; using XHE; using XHE.XHE_DOM; using XHE.XHE_System; using XHE.XHE_Window; using XHE.XHE_Web; #endregion class Program: XHEScript { static void Main(string [] args) { //init XHE server = "127.0.0.1:7010"; InitXHE(); //Start echo("
    browser.wait_js
    "); //1 step echo("1.We do navigation without waiting:"); echo(browser.set_wait_params(0,0) + "
    "); //step 2 echo("2.Let's go to Yandex:"); echo(browser.navigate("http://ya.ru") + "
    "); //step 3 echo("3.Waiting for all JS to finish executing:"); echo(browser.wait_js() + "
    "); //end echo("

    "); app.quit(); } }
    Java Script example: //connect the object to control the emulator, if not already connected xhe_host = "127.0.0.1:7010"; echo = require("../../../Templates JS/xweb_human_emulator.js"); //Start echo("
    script.wait_js
    "); //1 step echo("1.Let's go to adwords:"); echo(browser.navigate("http://bigfozzy.com") + "
    "); //step 2 echo("2.Waiting for JS to complete:"); echo(browser.wait_js()); //end echo("

    "); //Quit app.quit();