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

get_all_parents

get_all_parents(); - получить все родительские интерфейсы элемента DOM (доступна с 7.0.63 версии)

После отработки функция возвращает результат своей работы в скрипт :
  • список DOM интерфейсов элементов – объект позволяющий быстро выполнять любые операции со всеми найдеными элементами (по факту массив интерфейсов к DOM элементам позволяющий выполнять вместе все операции, что можно выполнить по отдельности), тип возвращаемого значения XHEInterfaces

    Пример использования
    <?php
    
    // Scenario: For the current page, find a DOM element and get the tag names of all its parents in the DOM tree
    // Description: For the current page, find a DOM element as XHEInterface and get the tag names of the chain of all its parents in the DOM tree
    // Classes used: XHEAnchor, XHEBrowser, XHEApplication, XHEInterface, XHEInterfaces
    
    // Connection string to XHE API
    $xhe_host = "localhost:7010";
    
    // Path to init.php file
    if (!isset($path))
    {
        // Path to init.php file for connecting to XHE API
        $path = "../../../Templates/init.php";
        // When connecting the init.php file, all functionality of classes for working with XHE API will be available
        require($path);
    }
    
    // Navigate to the polygon page if the page was not loaded earlier
    WEB::$browser->navigate(TEST_POLYGON_URL . "anchor.html");
    
    // Example 1: Get the DOM element anchor by id with text 'onclick' and get the tag names of all its parents in the DOM tree
    
    // Get the anchor object by id with text 'onclick', attribute value is not an exact match and get it as XHEInterface
    $targetAnchor = DOM::$anchor->get_by_attribute('id', 'onclick', false);
    
    // Get all parent elements for the current anchor DOM element, as a collection object of type XHEInterfaces
    $divParents = $targetAnchor->get_all_parents();
    
    // For the collection object of type XHEInterfaces, call the get_tag() method on each element of the collection to get its tag name.
    // As a result of execution, an array of tag name strings for parent elements of the current DOM element will be returned.
    $targetDivParentTags = $divParents->get_tag();
    // Output all tags to the console one by one
    foreach ($targetDivParentTags as $parentTag)
        echo($parentTag . "\n");
    
    // Stop the application
    WINDOW::$app->quit();
    ?>
    # Additional paths
    import sys
    sys.path.insert(0, '../../../Templates PY/')
    
    xhe_host = "127.0.0.1:3035"
    from xweb_human_emulator import *
    
    # начало
    echo("<hr><font color=blue>interface.xxxxxxxxx</font><hr>")
    
    # чтобы быстрее
    browser.set_wait_params(5,1)
    
    # 1 
    echo("1. Перейдем на полигон : ")
    echo(browser.navigate("https://rpa-bot.ru/wiki/poligon/anchor.html"),"<br>")
    
    # 2 
    echo("2. Получим тэги родительских элементов: ")
    objs=anchor.get_by_name("seonote").get_all_parents()
    echo(objs.get_tag(),"\n")
    
    # конец
    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 = "localhost:7010";
    			InitXHE();
    
    			// начало
    			echo("<hr><font color=blue>interface.get_parent</font><hr>");
    							
    			// чтобы быстрее
    			browser.set_wait_params(5,1);
    			
    			// 1 шаг
    			echo("1. Перейдем на полигон : ");
    			echo(browser.navigate("rpa-bot.ru/wiki/poligon/anchor.html")+"<br>");
    			
    			// 2 шаг
    			echo("2. Получим тэги родительских элементов  : \n");
    			XHEInterfaces objs=anchor.get_by_name("seonote").get_all_parents();
    			for (int i=0;i<objs.get_count();i++)
    				echo(objs.get(i).get_tag()+"\n");
    
    			// конец
    			echo("\n\n");
    
    			app.quit();            
    	  }
    }
    // IE + Chrom
    
    // подключим функциональные объекты, если еще не подключен
    xhe_host="127.0.0.1:3035";
    echo=require("../../../Templates JS/init.js");
    
    // начало
    echo("<hr><font color=blue>interface.get_parent</font><hr>");
    
    // чтобы быстрее
    browser.set_wait_params(5,1);
    
    // 1 шаг
    echo("1. Перейдем на полигон : ");
    echo(browser.navigate("https://rpa-bot.ru/wiki/poligon/anchor.html")+"<br>");
    
    // 2 шаг
    echo("2. Получим тэги родительских элементов : ");
    objs=anchor.get_by_name("seonote").get_all_parents();
    echo(objs.get_tag()+"\n");
    
    // конец
    echo("\n");
    
    // Quit
    app.quit();

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