User Tools

Site Tools


Sidebar

en:objects:browser:navigate:wait_js

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:

    <?php $xhe_host = "127.0.0.1:7013";
     
    //connect the object to control the emulator, if not already connected
    if(!isset($path))
       $path = "../../../Templates/xweb_human_emulator.php";
    require($path);
     
    //Start
    echo "<hr> <font color = blue> script->".basename(__FILE__)."</font> <hr>";
     
    //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")."<br>";
     
    //2
    echo "1.Waiting for JS to complete:";
    echo $browser->wait_js();
     
    //end
    echo "<hr> <br>";
     
    //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("<hr> <font color = blue> browser.xxxxxxxxx </font> <hr>")
     
    # 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"), "<br>")
     
    # 2
    echo("1.Waiting for JS to complete:")
    echo(browser.wait_js())
     
    # end
    echo("<hr> <br>")
     
    # 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("<hr> <font color = blue> browser.wait_js </font> <hr>");
     
    //1 step
    echo("1.We do navigation without waiting:");
    echo(browser.set_wait_params(0,0) + "<br>");
     
    //step 2
    echo("2.Let's go to Yandex:");
    echo(browser.navigate("http://ya.ru") + "<br>");
     
    //step 3
    echo("3.Waiting for all JS to finish executing:");
    echo(browser.wait_js() + "<br>");
     
    //end
    echo("<hr> <br>");
     
    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("<hr> <font color = blue> script.wait_js </font> <hr>");
     
    //1 step
    echo("1.Let's go to adwords:");
    echo(browser.navigate("http://bigfozzy.com") + "<br>");
     
    //step 2
    echo("2.Waiting for JS to complete:");
    echo(browser.wait_js());
     
    //end
    echo("<hr> <br>");
     
    //Quit
    app.quit();
  • en/objects/browser/navigate/wait_js.txt · Last modified: 2020/12/14 20:24 (external edit)