User Tools

Site Tools


Sidebar



en:objects:browser:cookies:flash_cookies_save

flash_cookies_save

flash_cookies_save($folder,$site=""); - save current flash cookies to the specified folder.

The function accepts parameters as input:

  • $folder – folder for saving flash cookies
  • $site – flash cookies of which site should be saved, if set to "" - it saves all flash cookies

    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:7010";
     
    //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 go to Yandex:");
    echo($browser->navigate("http://www.wordstat.yandex.ru")." n");
     
    //2
    $path = "C: \ FlashCookies1";
    echo("2.Save the flash cookie:");
    echo($folder->create($path)."");
    echo($browser->flash_cookies_save($path)." n");
     
    //3
    echo("3.Delete flash cookies:");
    echo($browser->flash_cookies_delete()." n");
     
    //4
    echo("4.Restore flash cookies from the saved folder:");
    echo($browser->flash_cookies_restore($path)." n");
     
    //five
    $path = "C: \ FlashCookies2";
    echo("5.Save the flash cookie for the given domain:");
    echo($folder->create($path)."");
    echo($browser->flash_cookies_save($path, "kiks.yandex.ru"));
     
    //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 Yandex:")
    echo(browser.navigate("http://www.wordstat.yandex.ru"), "
    ")
     
    # 2
    path = "C: \ FlashCookies1"
    echo("2.Save the flash cookie:")
    echo(folder.create(path), "")
    echo(browser.flash_cookies_save(path), "
    ")
     
    # 3
    echo("3.Delete flash cookies:")
    echo(browser.flash_cookies_delete(), "
    ")
     
    # 4
    echo("4.Restore flash cookies from saved folder:")
    echo(browser.flash_cookies_restore(path), "
    ")
     
    # five
    path = "C: \ FlashCookies2"
    echo("5.Save the flash cookie for the given domain:")
    echo(folder.create(path), "")
    echo(browser.flash_cookies_save(path, "kiks.yandex.ru"))
     
    # 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.flash_cookies_save </font> <hr>");
     
    //navigate to google
    browser.navigate("http://www.wordstat.yandex.ru");
     
    //save all cookies
    path = "C: \ FlashCookies1");
    folder.create(path);
    browser.flash_cookies_save(path);
     
    //delete all
    browser.flash_cookies_delete();
     
    //reestablish
    browser.flash_cookies_restore(path);
     
    //save cookies 'kiks.yandex.ru'
    path = "C: \ FlashCookies2");
    folder.create(path);
    browser.flash_cookies_save(path, "kiks.yandex.ru");
     
    //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:7014";
    echo = require("../../../Templates JS/xweb_human_emulator.js");
     
    //Start
    echo("<hr> <font color = blue> browser.flash_cookies_save </font> <hr>");
     
    //1 step
    echo("1.Let's go to Yandex:");
    echo(browser.navigate("http://www.wordstat.yandex.ru") + " n");
     
    //step 2
    path = "C: \ FlashCookies1";
    echo("2.Save the flash cookie:");
    echo(folder.create(path) + "");
    echo(browser.flash_cookies_save(path) + " n");
     
    //step 3
    echo("3.Delete flash cookies:");
    echo(browser.flash_cookies_delete() + " n");
     
    //step 4
    echo("4.Restore flash cookies from the saved folder:");
    echo(browser.flash_cookies_restore(path) + " n");
     
    //step 5
    path = "C: \ FlashCookies2";
    echo("5.Save the flash cookie for the given domain:");
    echo(folder.create(path) + "");
    echo(browser.flash_cookies_save(path, "kiks.yandex.ru"));
     
    //end
    echo("<hr> <br>");
     
    //Quit
    app.quit();
  • en/objects/browser/cookies/flash_cookies_save.txt · Last modified: 2026/08/05 22:32 (external edit)