PHP example:
<?php $xhe_host = "127.0.0.1:7013"; //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> anchor->".basename(__FILE__)."</font> <hr>"; //1 echo "1.Let's go to the polygon:"; echo $browser->navigate("http://humanemulator.net/poligon/anchor.html")."<br>"; //2 echo "2.Check if there is an element with the specified href:"; echo $anchor->is_exist_by_attribute("href", "http://www.bigfozzy.com/", true)." n"; //2 echo "3.Check if there is an element with the given href part:"; echo $anchor->is_exist_by_attribute("href", "23", false)." n"; //4 echo "4.Check the non-existent element:"; if($anchor->is_exist_by_attribute("href", "ptych", false) === false) echo "element not exist n"; //five echo "5.Let's check if there is an element with the specified href in the zero frame:"; echo $anchor->is_exist_by_attribute("href", "http://bigfozzy.com/", true, 0)." n"; //6 echo "6.Check if there is an element with the given href part in the zero frame:"; echo $anchor->is_exist_by_attribute("href", "23", false, 0)." n"; //7 echo "7.Check for non-existent element in frame zero:"; if($anchor->is_exist_by_attribute("href", "babuets", false, 0) === false) echo "element not exist"; //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:7010" from xweb_human_emulator import * # Start echo("<hr> <font color = blue> common.xxxxxxxxx </font> <hr>") # 1 echo("1.Let's go to the polygon:") echo(browser.navigate("http://www.humanemulator.net/poligon/anchor.html"), "<br>") # 2 echo("2.Check if there is an element with the specified href:") echo(anchor.is_exist_by_attribute("href", "http://www.bigfozzy.com/", true), " ") # 2 echo("3.Check if there is an element with the given href part:") echo(anchor.is_exist_by_attribute("href", "23", false), " ") # 4 echo("4.Check for non-existent element:") if not anchor.is_exist_by_attribute("href", "ptych", false): echo("element not exist ") # five echo("5.Check if there is an element with the specified href in the zero frame:") echo(anchor.is_exist_by_attribute("href", "http://www.bigfozzy.com/", true, 0), " ") # 6 echo("6.Let's check if there is an element with the given href part in the zero frame:") echo(anchor.is_exist_by_attribute("href", "23", false, 0), " ") # 7 echo("7.Check for non-existent element in frame zero:") if not anchor.is_exist_by_attribute("href", "granny", false, 0): echo("element not exist") # 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> is_exist_by_attribute </font> <hr>"); //1 step echo("1.Let's go to the polygon:"); echo(browser.navigate("www.humanemulator.net/poligon/anchor.html") + "<br>"); //step 2 echo("2.Let's check if there is a link with this href = 'http://www.humanemulator.net/23':"); if(anchor.is_exist_by_attribute("href", "http://www.bigfozzy.com/", true)) echo("there is such a <br>"); //step 3 echo("3.Let's check if there is a link whose href contains the string '23':"); if(anchor.is_exist_by_attribute("href", "23", false)) echo("there is such a <br>"); //step 4 echo("4.Let's check if there is a link, the href of which contains the string 'granny':"); //no such element if(!anchor.is_exist_by_attribute("href", "babuets", false)) echo("no such"); //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:7010"; echo = require("../../../Templates JS/xweb_human_emulator.js"); //Start echo("<hr> <font color = blue> anchor.is_exist_by_attribute </font> <hr>"); //1 step echo("1.Let's go to the polygon:"); echo(browser.navigate("http://www.humanemulator.net/poligon/anchor.html") + "<br>"); //step 2 echo("2.Check if there is an element with the specified href:"); echo(anchor.is_exist_by_attribute("href", "http://www.bigfozzy.com/", true) + " n"); //step 2 echo("3.Check if there is an element with the given href part:"); echo(anchor.is_exist_by_attribute("href", "23", false) + " n"); //step 4 echo("4.Check the non-existent element:"); if(anchor.is_exist_by_attribute("href", "ptych", false) === false) echo("element not exist n"); //step 5 echo("5.Check if there is an element with the specified href in the zero frame:"); echo(anchor.is_exist_by_attribute("href", "http://www.bigfozzy.com/", true, 0) + " n"); //step 6 echo("6.Let's check if there is an element with the given href part in the zero frame:"); echo(anchor.is_exist_by_attribute("href", "23", false, 0) + " n"); //step 7 echo("7.Check for non-existent element in frame zero:"); if(anchor.is_exist_by_attribute("href", "granny", false, 0) === false) echo("element not exist"); //end echo("<hr> <br>"); //Quit app.quit();