Scripts for Web Human Emulator
Does anyone have experience writing scripts for the Web Human Emulator? Scripts for the program are as follows:
<?php
// The following code is required to properly run Web Human Emulator
require("../Templates/xweb_human_emulator.php");
$browser->navigate('h..ps://siteexplorer.search.yahoo.com/submit');
$browser->wait_for(240,1);
$anchor->click_by_inner_text('Submit a Website or Webpage','true');
$browser->wait_for(240,1);
$input->set_value_by_name('site_url','h..p://website.com');
$button->click_by_inner_text('Submit URL');
$browser->wait_for(240,1);
// Quit
$app->quit();
?>
|