send_double_click
send_double_click($x="",$y="",$scroll=true); - this function is used to send a double-click with the left mouse button at a specified point in the browser, even if the program is hidden in the tray.
the input Function accepts parameters:
$x – x - coordinate of the point to send the double click to, relative to the upper-left corner of the browser. (int)
$y – y - coordinate of the point to send the double-click to, relative to the upper-left corner of the browser. (int)
$scroll – whether to scroll the browser to the specified point. If false, a double click will be made at the specified point. if true, automatic scrolling to the specified point will be performed (boolean).
If the coordinates are empty, the click is made at the current point.
After testing, the function returns the result of its work to the script :
true – successfully double-clicked at the specified point(boolean)false – operation failed (boolean)