Недавний контент EtaLasquera

  1. EtaLasquera

    GET and POST request advice please

    You can make it a littbe bit easy, just navigate to your api on browser and watch traffic window, right click on desired data and create action from request.
  2. EtaLasquera

    Removing everything before and after a word, does that help?

    You must process it as json.
  3. EtaLasquera

    Recaptcha Enterprise - Solve captcha on current page

    I'ts done, forget it. Need to code a lot. And english support is this, do it by yourself or die.
  4. EtaLasquera

    Are Browser agents injected on their own or do we need to set this manually?

    I send it manualy on every project. Sometimes they show ghost instances on ZP but devs says this is because I've changed user agent manualy. A C# code to do it: string tp = instance.BrowserType.ToString().ToLower(); if (tp.Equals("chrome")){ tp = "Mozilla/5.0 (Windows NT 10.0; Win64; x64)...
  5. EtaLasquera

    VBCSCompile.exe - High CPU Usage

    I've solved it after format c:
  6. EtaLasquera

    Recaptcha Enterprise - Solve captcha on current page

    Today I have a projeto who receive challange from Recaptcha Enterprise and I't always solved the project with capmonster cloud plugin, always until today. Now it says "can't find recaptcha key", I follow the docummentation...
  7. EtaLasquera

    cpu size and diminishing returns.

    both are important.
  8. EtaLasquera

    downloads

    You can set a download directory and before download, delete and create it. Now download and use directory file path with random file. If file exists, continue, else, still wait. Remember to check if downloaded file is a temp file or complete download, you can do it using a wildcard.
  9. EtaLasquera

    How to "Force" instance.GetTraffic() to get traffic?

    Sometimes I need to navigate into tabs 1~10 min until "traffic" capture the traffic data as data. And, when it was captured, sometimes it comes with "null" information in traffic request headers. There is another way to get data directly from traffic? As example, here is my traffic: And here...
  10. EtaLasquera

    How to kill zombie tasks?

    Yes, all the time I set user agent / browser profile by this code: string tp = instance.BrowserType.ToString().ToLower(); if (tp.Equals("chrome")){ tp = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36"; } else{ tp =...
  11. EtaLasquera

    How to kill zombie tasks?

    Usually a bad end hava a simple breakpoint and there is a lot of bad end in the projects. The last one bad end execute a SQL Server query. ZennoLab.OwnCode.CommonCode.project = project; string cn = project.Variables["cn"].Value; string pv = project.Variables["pv"].Value; string ad =...
  12. EtaLasquera

    Compare file in string with content of a txt file

    ["myIP"] << your variable It's a C#
  13. EtaLasquera

    How to kill zombie tasks?

    I'll put it into 120 and check if it will solve. But zombie instances appear after a project end into a bad end, I don't think it is related with load base, its something like unload.
  14. EtaLasquera

    Compare file in string with content of a txt file

    string myIP = project.Variables["myIP"].Value; string txtIP = System.IO.File.ReadAllText("C:\Temp\IPfile.txt"); project.Variables["exists"].Value = txtIP.Contains(myIP).ToString();
  15. EtaLasquera

    How to kill zombie tasks?

    7.7.3 I think it's default settings: 7.4.0 Default settings too