Основной сайт хуманэмулятор.рф | Демо | Купить | API | Wiki
Window / window
wait_for_window_open_by_text
wait_for_window_open_by_text($text,$exactly=true,$main=false,$visibled=false,$wait_count=300,$wait_step=1,$is_verbose=true); - Ожидать пока окно с заданным текстом не откроетсяФункция на вход принимает параметры:
После выполнения функции возвращаемое значение будет равно одному из двух :
Пример использования
<?php // Scenario: Wait for window to open by text content $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 text $windowText = "Viber"; $exactly = false; $visible = true; $main = true; $caseSensitive = true; echo("Example 1: Wait for Viber window to open by text\n"); $result = WINDOW::$window->wait_for_window_open_by_text($windowText, $exactly, $visible, $main, $caseSensitive); echo("Window open wait result: " . ($result ? "Success" : "Failed") . "\n"); // Quit the application WINDOW::$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_text("Viber",true,true,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_text("Viber",true,true,true)); // конец echo("\n"); // Quit app.quit();
=============================================
Window Объекты DOM System Vision Web Window
=============================================
если что-то непонятно или необходимо узнать или считаете что надо добавить по работе этой функции, пишите в комментарии или на наш форум
.