humanemulator.net — справка. Продукт, демо и покупка — на хуманэмулятор.рф | Демо | Купить | API | Changelog

wait_for_window_open_by_class

wait_for_window_open_by_class($class_name,$exactly=true,$main=false,$visibled=false,$wait_count=300,$wait_step=1,$is_verbose=true); -

Функция на вход принимает параметры:

  • $class_name
  • $exactly
  • $main , false -
  • $visibled true - , false -
  • $wait_count
  • $wait_step 1000
  • $is_verbose " "

    :
  • true
  • false

    Пример использования
    <?php
    // Scenario: Wait for window to open by class name
    
    $xhe_host = getenv("RPABOT_HOST_URL");
    if (!isset($path)){
        // Path to the init.php file for connecting to the XHE API
        $path = "../../../Templates/init.php";
        // Including init.php grants access to all classes and functionality for working with the XHE API
        require($path);
    }
    
    // Example 1: Wait for Viber window to open by class
    $windowClass = "Qt5152QWindowOwnDCIcon";
    $visible = true;
    $main = false;
    $caseSensitive = true;
    echo("Example 1: Wait for Viber window to open by class\n");
    $result = WINDOW::$window->wait_for_window_open_by_class($windowClass, $visible, $main, $caseSensitive);
    echo("Window open wait result: " . ($result ? "Success" : "Failed") . "\n");
    
    // Quit the application
    WINDOW::$app->quit();
    ?>
    # Additional paths
    import sys
    sys.path.insert(0, '../../../Templates PY/')
    
    xhe_host = "127.0.0.1:7026"
    from xweb_human_emulator import *
    
    # начало
    echo("<hr><font color=blue>window.xxxxxxxxx</font><hr>")
    
    # 1
    echo("1. Ожидаем открытия вайбера : ");
    echo(window.wait_for_window_open_by_text("Viber",true,true,true));
    
    # конец
    echo("<hr><br>")
    
    # Quit
    app.quit()
    #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 = Environment.GetEnvironmentVariable("RPABOT_HOST_URL");
    			InitXHE();
    
    			// начало
    			echo("<hr><font color=blue>window.get_text_by_number</font><hr>");
    				
    			// 1
    			echo("1. Ожидаем показа вайбера : ");
    			echo(window.wait_for_window_open_by_class("Qt5152QWindowOwnDCIcon",true,false,true));
    
    			// конец
    			echo("\n\n");
    
    			app.quit();            
    	  }
    }
    // подключим функциональные объекты, если еще не подключен
    xhe_host="127.0.0.1:7026";
    echo=require("../../../Templates JS/init.js");
    
    // начало
    echo("<hr><font color=blue>window.get_text_by_number</font><hr>");
    
    // 1
    echo("1. Ожидаем показа вайбера : ");
    echo(window.wait_for_window_open_by_class("Qt5152QWindowOwnDCIcon",true,false,true));
    
    // конец
    echo("\n");
    
    // Quit
    app.quit();

    =============================================
    Window    Объекты    DOM  System  Vision  Web  Window        
    =============================================
    если что-то непонятно или необходимо узнать или считаете что надо добавить по работе этой функции, пишите в комментарии или на наш форум
    .