Результаты поиска

  1. myndeswx

    Quora issues

    Working with website - https://www.quora.com/ While working in projectMaker - everything is good When loaded into zennoposter(v 5.11.4.0) Page loads for 10-20 minuttes ( timeout set to 20sec) Page opens visually , but on the left bottom corner it says loading in red ) Project attached
  2. myndeswx

    Bug with BotUI

    But other projects work fine without other settings, and this project also worked , i think until i added boolean check . not sure what's the issue really
  3. myndeswx

    Bug with BotUI

    Settings from BotUI does not open in zennoposter Config file -
  4. myndeswx

    Download all mail (gmail)

    Solution found - code ZennoPoster.BulkMailDownload thread- http://zennolab.com/discussion/threads/help-something-wrong-about-c-to-download-email.13090/
  5. myndeswx

    Download all mail (gmail)

    Hello, wanted to ask if there is a way to download all email messages, there are about 8.000 messages in my Gmail that I need to get URLs from. Tried playing around with receive mail function, but no luck, maybe something with C# ?)) Thank you
  6. myndeswx

    Wait for elements to load

    Yes, it loads , but if you select '500 results' it loads somewhere around 5-10 seconds, also i think it depends on the internet and PC, so might be 30sec on someones Pc, so using 10sec static delay is not very convenient
  7. myndeswx

    Wait for elements to load

    Thank you @lokiys , but that does not help, now i am just using static 10sec delay, could you please share the C# snippet? )
  8. myndeswx

    Wait for elements to load

    Working on a website - https://gb.auctions.godaddy.com/ Problem with button from the screenshot - The problem - When clicked this button page 'loads' , but instance.activetab.waitdownloading(); Does not help with this kind of 'loading' So the question, is there a way to wait for...
  9. myndeswx

    If logic in global variables

    SOLVED It took me like 3 hours to realize what was wrong. :ar: I had 2 variables- Local - variable.url Global - variable.url To get Local variable.url i used this code to get from mysql- project.Variables["url"].Value = read["url"].ToString(); And used zenno block "Variable processing"...
  10. myndeswx

    If logic in global variables

    Trying to compare 2 url's 1 is local variable 2 is global variable Works with simple number Does not work with url- Edit. i think my zenno is broken )) What could be the issue here? Maybe possible to do in C#? ) Thank you
  11. myndeswx

    C# click radio box

    Solved with xpath HtmlElement he = instance.ActiveTab.FindElementByXPath("//*[@id=\"domainSubdomain\"]/div[1]/input",0); if (he.IsVoid) return -1; he.RiseEvent("click", instance.EmulationLevel);
  12. myndeswx

    C# click radio box

    Hello, it's been about 3 hours and i can't find outt how to click radio box with C# please help. Example 1 - works (with builder) But #form changes, so i would like to make it in C# Thank you
  13. myndeswx

    Module training help

    One more question, how do i save project as ".cm" not ".cm2" format? I have tried adding module in CM , but it does not allow .cm2 format
  14. myndeswx

    Save image

    Thank you
  15. myndeswx

    Module training help

    Thank you
  16. myndeswx

    Save image

    tl;dr how to save captchas image Hello, need to save captcha image url - http://rekvizitai.vz.lt/security.php?a=cbe&id=38148&r=6343132 job i want to do is - go to website > solve this captcha in capmonster> save captcha image with correct answer on PC Problem - image to solve is parsed...
  17. myndeswx

    Module training help

    Hello, need help with this kind of captcha(CM2 does not recognize it) - Made a module , but with these settings recognition only 9% what could be wrong? Thank you Filters- Mass Centers- Also adding 3000 example captchas .rar- http://rgho.st/8rfnkrswN
  18. myndeswx

    HTTP requests and cookies

    Understood. Thank you
  19. myndeswx

    HTTP requests and cookies

    I do understand this, but the main question is - do i have to use browser or is it possible to make this only with http requests
  20. myndeswx

    HTTP requests and cookies

    no, not really, it's in the data that's being posted, no idea how it is generated
  21. myndeswx

    HTTP requests and cookies

    Yes, @SOS Cartões i have tried this, and this does work to get some cookies but the token is generated at the very end of the process , so if i wanted to get token from browser i had to make 80% of the code on browser not http reqests
  22. myndeswx

    HTTP requests and cookies

    Hello, trying to automate freenom.com registration with http requests, with cookies everything is good, but in fiddler (when making manual request) i can see such parameter 'token' 40 random strings . I have never had experience with it, any sources about how to emulate it? Is it even...
  23. myndeswx

    Instagram account creator

    works through desktop version, or api? Spoofs phone details? Thank you
  24. myndeswx

    RAM issue

    Hello, i have a simple project that goes like this >take text>put to list>remove dublicates>merge list>keyboard emulation - loop I have also disabled pictures and flash, but running 1 project adds up 10Mb ram every second , looking for a solution , also adding project itself here. Thank you
  25. myndeswx

    How to insert table to mysql

    Is there a faster way to insert large table to MySql than looping each line 1 by 1 ? I came across this example - INSERT INTO tbl_name (a,b,c) VALUES(1,2,3),(4,5,6),(7,8,9); but can't think of a way how to use it with a list. Thank you