User Tools

Site Tools


Sidebar

en:objects:app:progress:step_progress

step_progress

step_progress(); - make one step of progress

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> app->".basename(__FILE__)."</font> <hr>";
     
    //1
    echo "1.Initialize progress bar:";
    echo $app->show_progress_bar(true)."";
    echo $app->set_progress_range(0.10)."";
    echo $app->set_progress_pos(0)."<br>";
     
    //progress loop
    echo "2.Run progress:";
    for($i = 0; $i <10; $i ++)
    {
        //set the current position of the progress
         $app->step_progress(); sleep(1);
         echo $i."";
    }
     
    //3
    echo "<br> 3.Hide the progress bar:";
    echo $app->set_progress_pos(0)."";
    echo $app->show_progress_bar(false);
     
    //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:7011"
    from xweb_human_emulator import *
     
    # Start
    echo("<hr> <font color = blue> app.xxxxxxxxx </font> <hr>")
     
    # 1
    echo("1.Initialize progress bar:")
    echo(app.show_progress_bar(true), "")
    echo(app.set_progress_range(0,10), "")
    echo(app.set_progress_pos(0), "<br>")
     
    # progress loop
    echo("2.Run progress:")
    for i in range(0.9):
         # set current progress position
         app.step_progress()
         sleep(1)
         echo(i, "")
     
    # 3
    echo("<br> 3.Hide the progress bar:")
    echo(app.set_progress_pos(0), "")
    echo(app.show_progress_bar(false))
     
    # end
    echo("<hr> <br>")
     
    # Quit
    app.quit()

    C# example:

     

    Java Script example:

    //connect the object to control the emulator, if not already connected
    xhe_host = "127.0.0.1:7012";
    echo = require("../../../Templates JS/xweb_human_emulator.js");
     
    //Start
    echo("<hr> <font color = blue> app.step_progress </font> <hr>");
     
    //1 step
    echo("1.Initialize progress bar:");
    echo(app.show_progress_bar(true) + "");
    echo(app.set_progress_range(0,10) + "");
    echo(app.set_progress_pos(0) + "<br>");
     
    //progress loop
    echo("2.Let's run the progress:");
    for(var i = 0; i <10; i ++)
    {
        //set the current position of the progress
         app.step_progress(); browser.sleep(1);
         echo(i + "");
    }
     
    //step 3
    echo("<br> 3.Hide the progress bar:");
    echo(app.set_progress_pos(0) + "");
    echo(app.show_progress_bar(false));
     
    //end
    echo("<hr> <br>");
     
    //Quit
    app.quit();
  • en/objects/app/progress/step_progress.txt · Last modified: 2020/10/14 14:55 (external edit)