User Tools

Site Tools


Sidebar



en:objects:browser:commands:send_get_query

send_get_query

send_get_query($url,$data,$type="application/x-www-form-urlencoded",$set_as_page=false,$add_header=""); - send an HTTP/HTTPS GET request to the specified address

The input function accepts parameters:

  • $url – address of the start page to send the GET request to
  • $data – request data (for example "param1=text" or "param1=text1&param2=text2")
  • $type – request type (available from version 4.10.10)
  • $set_as_page – set the result of the request to the browser (available from version 4.10.10)
  • $add_header – add additional parameters to the GET request (available from version 4.10.10)

    After testing, the function returns the result of its work to the script :
  • true – completed successfully
  • false – failed

    PHP example:

    <?php $xhe_host = "127.0.0.1:7018";
     
    //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 step
    $browser->set_user_agent("Mozilla/4.0(compatible; MSIE 6.0; Windows NT 6.0)");
    echo $browser->send_get_query("http://httpbin.org/get", "test1 = test & test2 = test2");
    echo " n ===================================  n";
    sleep(3);
     
    //step 2
    echo $browser->send_get_query("http://httpbin.org/get", "test1 = test & test2 = test2", "application/x-www-form-urlencoded", 1);
    echo " n ===================================  n";
    sleep(3);
     
    //step 3
    echo $browser->send_get_query("http://httpbin.org/get", "test1 = test & test2 = test2", "", 1, "X-Insta-Forwarded-For  r  n");
    echo " n ===================================  n";
    sleep(3);
     
    //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 step
    browser.set_user_agent("Mozilla/4.0(compatible) MSIE 6.0) Windows NT 6.0)")
    echo(browser.send_get_query("http://httpbin.org/get", "test1 = test & test2 = test2"))
    sleep(3)
     
    # 2 step
    echo(browser.send_get_query("http://httpbin.org/get", "test1 = test & test2 = test2", "application/x-www-form-urlencoded", 1))
    sleep(3)
     
    # 3 step
    echo(browser.send_get_query("http://httpbin.org/get", "test1 = test & test2 = test2", "", 1, "X-Insta-Forwarded-For
    "))
    sleep(3)
     
    # 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:8029";
    InitXHE();
     
    //Start
    echo("<hr> <font color = blue> browser.send_get_query </font> <hr>");
     
    while(true)
    {
     
    //user agent
    browser.set_user_agent("Mozilla/4.0(compatible; MSIE 6.0; Windows NT 5.0)");
     
    //1 step
    echo("1.Let's get a google request not through the browser(and display the length of the response):");
    echo(browser.send_get_query("http://www.google.com/search", "q = web") .Length);
     
    }
     
    //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:7018";
    echo = require("../../../Templates JS/xweb_human_emulator.js");
     
    //Start
    echo("<hr> <font color = blue> browser.send_get_query </font> <hr>");
     
    //1 step
    echo("1.Let's execute get - request:");
    echo(browser.send_get_query("http://www.google.com/search", ""));
     
    //end
    echo("<hr> <br>");
     
    //Quit
    app.quit();
  • en/objects/browser/commands/send_get_query.txt · Last modified: 2026/08/05 22:32 (external edit)