Search found 210 matches

by support
Sat Oct 12, 2019 11:54 pm
Forum: News
Topic: Human Emulator Studio 7.0.67 (based on Chromium)
Replies: 137
Views: 84465

Re: Human Emulator Studio 7.0.41 (based on Chromium)

update version 7.0.41:
- done raw->set_hook_on_begin_transaction
- improvement set_time_zone
- bug fix disabling plugins
- in raw->set_hook_on_begin_transaction-added ability to change POST data (input file in2_, output (processed) out2_, in its absence nothing changes)
by support
Fri Oct 11, 2019 12:07 am
Forum: Support
Topic: save and restore cookies
Replies: 2
Views: 7105

Re: save and restore cookies

To work with cookies the program has the following functions: get_cookie - get cookies for the current page get_cookie_for_url - get cookies for a given url set_cookie - set cookies for the current page set_cookie_for_url - set cookies for a given url flash_cookies_save - save flash cookies flash_co...
by support
Thu Oct 10, 2019 10:26 pm
Forum: Support
Topic: Form filling
Replies: 1
Views: 6584

Re: Form filling

Hi,

Our system allows you to solve your problems. The program works with text arrays, xml, xls, databases, etc..
It has the ability of remote operation. Also has user emulation functions such as mouse and keyboard control.
by support
Thu Oct 10, 2019 5:43 pm
Forum: News
Topic: Human Emulator Studio 7.0.67 (based on Chromium)
Replies: 137
Views: 84465

Re: Human Emulator Studio 7.0.40 (based on Chromium)

update 7.0.41
- updated chromium engine to version 77
- improved header handling and support for new FETCH headers
- improving the operation of set time_zone
- minor interface improvements
- small bug fix related to initialization and reboot
by support
Wed Oct 09, 2019 7:45 am
Forum: Support
Topic: How to disable WebRTC
Replies: 3
Views: 7414

Re: How to disable WebRTC

"WebSocket is a communications protocol for a persistent, bi-directional, full duplex TCP connection from a user's web browser to a server."

You can enable or disable it using command $browser->enable_web_socket(true); or $browser->enable_web_socket(false);
by support
Wed Oct 09, 2019 2:19 am
Forum: Support
Topic: How to disable WebRTC
Replies: 3
Views: 7414

Re: How to disable WebRTC

Hello. You can do it using the program settings. Open the settings dialog using menu Service->Settings. Open tab "Browser" and unset check "Enable Web RTC (need restart)". After it restart the program. Or using command $browser->enable_web_socket(false);. When WebSocket is disabled, WebRTC also does...
by support
Mon Oct 07, 2019 9:12 pm
Forum: News
Topic: Human Emulator Studio 7.0.67 (based on Chromium)
Replies: 137
Views: 84465

Re: Human Emulator Studio 7.0.40 (based on Chromium)

updated version 7.0.40:
- added browser->set_internationalization function (Internationalization API control on page https://browserleaks.com/javascript)
- Internationalization page added to profile dialog
by support
Mon Oct 07, 2019 4:22 pm
Forum: Support
Topic: Get value from div
Replies: 3
Views: 7633

Re: Get value from div

If div in frame then: // get div inner html by element inner text "Your login" $login = $div->get_inner_html_by_attribute("innerText", "Your login", false,$frame_num); // get div inner html by element inner text "Your password" $password = $div->get_inner_html_by_attribute("innerText", "Your passwor...
by support
Mon Oct 07, 2019 2:03 am
Forum: Support
Topic: Get value from div
Replies: 3
Views: 7633

Re: Get value from div

php example: // get div inner html by element inner text "Your login" $login = $div->get_inner_html_by_attribute("innerText", "Your login", false); // get div inner html by element inner text "Your password" $password = $div->get_inner_html_by_attribute("innerText", "Your password", false); // $logi...
by support
Sat Oct 05, 2019 2:54 pm
Forum: Support
Topic: Save webpage with all pictures
Replies: 2
Views: 6783

Re: Save webpage with all pictures

$image->save_to_file_by_number($number,$filepath); - can help - first save all images under the names images\1.jpg, images\2.jpg, etc., then save the html, and in order to change all the links to the pictures on the page and again save the html.