set_default_authorization

set_default_authorization($login,$password); - set http authorization by default

The input function accepts parameters:

  • $login – default http authorization username
  • $password – default http authorization password

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

    PHP example: browser->".basename(__FILE__)."
    "; //enter username and password from the human forum $login = "xxx"; $login = $app->get_dlg_input_string("Enter a login:", "Enter a login:"); $password = "xxx"; $password = $app->get_dlg_input_string("Enter a password:", "Enter a password:"); //1 echo "1.Reset the default authorization:"; echo $browser->reset_default_authorization().""; echo $browser->clear_cookies("", true, true)."
    "; //2 echo "2.Let's move on:"; echo $browser->navigate("https://webemulator.com/upanel/")."
    "; sleep(1); //3 echo "3.Set the default authorization:"; echo $browser->set_default_authorization($login, $password)."
    "; //4 echo "4.Let's move on:"; echo $browser->navigate("https://webemulator.com/upanel/")."
    "; //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
    ") # enter username and password from the human forum login = "login" login = app.get_dlg_input_string("Enter a login:", "Enter a login:") password = "password" password = app.get_dlg_input_string("Enter a password:", "Enter a password:") # 1 echo("1.Reset default authorization:") echo(browser.reset_default_authorization(), "") echo(browser.clear_cookies("", true, true), "
    ") # 2 echo("2.Let's go to the emulator forum:") echo(browser.navigate("http://www.humanemulator.net/forum/"), "
    ") # 3 echo("3.Set default authorization:") echo(browser.set_default_authorization(login, password), "
    ") # 4 echo("4.Let's go to the emulator forum:") echo(browser.navigate("http://www.humanemulator.net/forum/"), "
    ") # 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.set_default_authorization
    "); //1 step echo("1.Reset the default authorization:"); echo(browser.reset_default_authorization() + ""); echo(browser.clear_cookies("", true, true) + "
    "); //step 2 echo("2.Let's go to the emulator forum:"); echo(browser.navigate("http://www.humanemulator.net/forum/") + "
    "); //step 3 echo("3.Set the default authorization:"); echo(browser.set_default_authorization("login", "password") + "
    "); //step 4 echo("4.Let's go to the emulator forum:"); echo(browser.navigate("http://www.humanemulator.net/forum/") + "
    "); //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("
    browser.set_default_authorization
    "); //enter username and password from the human forum login = "login"; login = app.get_dlg_input_string("Enter a login:", "Enter a login:"); password = "password"; password = app.get_dlg_input_string("Enter a password:", "Enter a password:"); //1 step echo("1.Reset the default authorization:"); echo(browser.reset_default_authorization() + ""); echo(browser.clear_cookies("", true, true) + "
    "); //step 2 echo("2.Let's go to the emulator forum:"); echo(browser.navigate("http://www.humanemulator.net/forum/") + "
    "); //step 3 echo("3.Set the default authorization:"); echo(browser.set_default_authorization(login, password) + "
    "); //step 4 echo("4.Let's go to the emulator forum:"); echo(browser.navigate("http://www.humanemulator.net/forum/") + "
    "); //end echo("

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