User Tools

Site Tools


Sidebar



en:objects:browser:navigate:set_wait_params

set_wait_params

set_wait_params($Try_Navigate_Second=-1,$Try_Navigate_Count=-1); - set default wait parameters for the function wait_for();. The wait_for function is built into all human commands related to navigation. This function allows you to set parameters that will be passed to this function in all internal calls.

the input Function accepts parameters:

  • $Try_Navigate_Second – the time allowed for one navigation attempt (in seconds). At -1, reset to the default value.
  • $Try_Navigate_Count – number of navigation attempts. At -1, reset to the default value.

    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";
    //IE + CEF +
    //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> browser->".basename(__FILE__)."</font> <hr>";
     
    //1
    echo "1.Let's set that there is no need to wait for navigation:";
    echo $browser->set_wait_params(0,0)."<br>";
     
    //2
    echo "2.Let's go to Yandex:";
    echo $browser->navigate("http://msn.com")."<br>";
     
    //3
    echo "3.Let's wait for the end of the transition:";
    while($browser->is_busy())
    {
       echo ".";
       usleep(100000);
    }
     
    //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 set not to wait for navigation:")
    echo(browser.set_wait_params(0,0), "<br>")
     
    # 2
    echo("2.Let's go to Yandex:")
    echo(browser.navigate("http://yahoo.com"), "<br>")
     
    # 3
    echo("3.Wait for the end of the transition:")
    while browser.is_busy():
       echo(".")
       sleep(0.01)
     
    # 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_for </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 the end of the transition(30 seconds and 2 transition attempts):");
    echo(browser.wait_for(30,2) + "<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> browser.set_wait_params </font> <hr>");
     
    //1 step
    echo("1.Let's set that there is no need to wait for navigation:");
    echo(browser.set_wait_params(0,0) + "<br>");
     
    //step 2
    echo("2.Let's go to Yandex:");
    echo(browser.navigate("http://msn.com") + "<br>");
     
    //step 3
    echo("3.Let's wait for the end of the transition:");
    while(browser.is_busy())
    {
       echo(".");
       browser.usleep(100000);
    }
     
    //end
    echo("<hr> <br>");
     
    //Quit
    app.quit();
  • en/objects/browser/navigate/set_wait_params.txt · Last modified: 2026/08/05 22:33 (external edit)