Search found 210 matches

by support
Fri Oct 25, 2019 4:15 pm
Forum: News
Topic: Human Emulator Studio 7.0.67 (based on Chromium)
Replies: 137
Views: 81749

Re: Human Emulator Studio 7.0.41 (based on Chromium)

update in 7.0.41 bug fix is_visible for floating elements with negative coordinates small interface strangulation bug fix (scroll) mouse commands for floating elements with negative coordinates adding the mouse->send_touch_to method to move your finger along the path memory optimization made displa...
by support
Wed Oct 23, 2019 4:37 pm
Forum: Support
Topic: best version for web testing
Replies: 2
Views: 5746

Re: best version for web testing

Hi, All versions of the program can using for web testing. Difference by versions is Human Emulator Studio based on Chromium browser(Chrome) and Human Emulator based on Internet Explorer . Human Emulator Studio Single is a single-threaded version of Human Emulator Studio. All versions of the program...
by support
Wed Oct 23, 2019 7:16 am
Forum: Support
Topic: How do I pause my script
Replies: 1
Views: 6919

Re: How do I pause my script

Hi,
You can use the function $app->pause($timeout); at $timeout=0, there will be a pause until the user decides to continue with the execution.
by support
Fri Oct 18, 2019 9:08 pm
Forum: News
Topic: Human Emulator Studio 7.0.67 (based on Chromium)
Replies: 137
Views: 81749

Re: Human Emulator Studio 7.0.41 (based on Chromium)

Small update for 7.0.41:
- bug fix mouse->left_button_up
- improving popup performance
by support
Fri Oct 18, 2019 8:48 pm
Forum: Feedback
Topic: What do write about us
Replies: 0
Views: 8460

What do write about us

Process Automation with the Human Emulator - Profit Hunter - https://papillon-guadeloupe.com/process ... fit-hunter
by support
Wed Oct 16, 2019 5:03 pm
Forum: News
Topic: Human Emulator Studio 7.0.67 (based on Chromium)
Replies: 137
Views: 81749

Re: Human Emulator Studio 7.0.41 (based on Chromium)

changes in 7.0.41:

- the Disable RAW option has been added to the advanced browser settings to speed up and cancel the preprocessing of browser headers
- set_time_zone - now time_zone is passed as GMT (3 = GMT+0300, -3 = GMT -0300 )
- bug fix memory leaks
by support
Wed Oct 16, 2019 10:42 am
Forum: Support
Topic: How to run a script from the command line
Replies: 3
Views: 7399

Re: How to run a script from the command line

You should use a batch file for that.

Here is an example of a batch file:

Code: Select all

start "Human Emulator Studio" "C:XWeb StudioHuman Emulator StudioXWeb Human Emulator Studio.exe" /port:"7010" /script:"C:XWeb StudioHuman Emulator StudioMy Scripts.php"
by support
Wed Oct 16, 2019 8:42 am
Forum: Support
Topic: How to run a script from the command line
Replies: 3
Views: 7399

Re: How to run a script from the command line

Code: Select all

C:XWeb StudioHuman Emulator StudioPHPphp.exe C:XWeb StudioHuman Emulator StudioMy Scripts.php
Human Emulator Studio must be running, otherwise the program functions will not work in the script.
by support
Tue Oct 15, 2019 11:22 pm
Forum: Support
Topic: press ctrl+a
Replies: 2
Views: 6730

Re: press ctrl+a

Hello, use keyboard function send_key

Code: Select all

// send_key($key,$is_key=false,$ctrl=false,$alt=false,$shift=false)
$keyboard->send_key(65,false,true);
// or
$keyboard->send_key('A',true,true);
by support
Tue Oct 15, 2019 3:45 pm
Forum: News
Topic: Human Emulator Studio 7.0.67 (based on Chromium)
Replies: 137
Views: 81749

Re: Human Emulator Studio 7.0.41 (based on Chromium)

update of version 7.0.41:

- improvement set_time_zone
- done raw->set_hook_on_response
- raw - >add_replace_rule now replaces not only the first element but also all found ones
- added raw->set_hook_on_readed function to change on-the-fly content received from the server