send_mouse_move_to

send_mouse_move_to($dx=1,$dy=1,$type="curve",$time=1000); - emulate mouse movement at the event level relative to the upper-left corner of the element along a specified path( available from 7.0.24 )

The function accepts parameters as input:

  • $dx – X – axis offset of the upper-left corner of the element
  • $dy - Y-axis Offset of the upper-left corner of the element
  • $type – the type of path to move to the specified point. It can take the following values:
  • $time - time for which the placement will be performed (milliseconds)

    After testing, the function returns the result of its work to the script (the return value type is boolean):
  • true – completed successfully
  • false – it was not possible to find such an element (for example, there are no elements that meet the specified criteria or there is no such frame)

    PHP example: interface->".basename(__FILE__)."
    "; //1 echo "1.Let's go to Google:"; echo $browser->navigate("http://google.ru")."
    "; //2 echo "2.Move the mouse to the 'I'm lucky' button:"; echo $element->get_by_name("btnI")->send_mouse_move_to(1,1)."
    "; sleep(1); //3 echo "3.Go to bigfozzy.com:"; echo $browser->navigate("http://bigfozzy.com")."
    "; //4 echo "4.Move the mouse over 2 links:"; echo $anchor->get_by_number(110)->send_mouse_move_to(1,1, "curve", 2000).""; sleep(1); echo $anchor->get_by_number(100)->send_mouse_move_to(1,1, "chaotic", 2000).""; sleep(1); echo $anchor->get_by_number(10)->send_mouse_move_to(1,1, "circle", 2000); //five echo " n5.Click on the current point:"; echo $mouse->send_click()." n"; $browser->wait_for(); sleep(5); //end echo "

    "; //Quit $app->quit(); ?>
    Python example: # Additional paths import sys sys.path.insert(0, '../../../Templates PY/') xhe_host = "127.0.0.1:7056" from xweb_human_emulator import * # Start echo("
    interface.xxxxxxxxx
    ") # 1 echo("1.Let's go to google:") echo(browser.navigate("http://www.google.ru"), "
    ") # 2 echo("2.Move the mouse to the 'I'm lucky' button:") echo(element.get_all_by_name("btnI").get(1) .send_mouse_move_to(1,1), "
    ") sleep(3) # 3 echo("1.Go to bigfozzy.com:") echo(browser.navigate("http://www.bigfozzy.com"), "
    ") # 4 echo("4.Move mouse over links:") echo(anchor.get_by_number(110) .send_mouse_move_to(1,1, "line", 1000), "") echo(anchor.get_by_number(100) .send_mouse_move_to(1,1, "curve", 2000), "") echo(anchor.get_by_number(10) .send_mouse_move_to(1,1, "circle", 1000), " ") # five echo("5.Let's click at the current location:") echo(mouse.send_click()); # end echo("

    ") # 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:7056"; InitXHE(); //Start echo("
    interface.send_mouse_move
    "); //1 step echo("1.Let's go to Google:"); echo(browser.navigate("http://www.google.ru") + "
    "); //step 2 echo("2.Move the mouse to the 'I'm lucky' button:"); echo(button.get_all_by_name("btnI").get(1) .send_mouse_move_to(3,3) + "
    "); //step 3 echo("3.Click on the current point:"); echo(mouse.send_click()); //end echo("

    "); app.quit(); } }
    Java Script example: //connect the object to control the emulator, if not already connected xhe_host = "127.0.0.1:7056"; echo = require("../../../Templates JS/xweb_human_emulator.js"); //Start echo("
    interface.send_mouse_move
    "); //1 step echo("1.Let's go to Google:"); echo(browser.navigate("http://www.google.ru") + "
    "); //step 2 echo("2.Move the mouse to the 'I'm lucky' button:"); echo(button.get_all_by_name("btnI").get(1) .send_mouse_move(1,1) + "
    "); //step 3 echo("3.Let's go to bigfozzy.com:"); echo(browser.navigate("http://www.bigfozzy.com") + "
    "); //step 4 echo("4.Move the mouse over the links:"); echo(anchor.get_by_number(120) .send_mouse_move_to(1,1, "curve", 1000) + ""); echo(anchor.get_by_number(110) .send_mouse_move_to(1,1, "line", 1000) + ""); echo(anchor.get_by_number(10) .send_mouse_move_to(1,1, "circle", 1000) + " n"); //step 5 echo("4.press at current point:"); echo(mouse.send_click() + " n"); //end echo("

    "); //Quit app.quit();