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

  1. zenfreak

    How to Check if a Variable Exists or Not?

    I need to assign many values to different variables using the c# code: project.Variables["myVariable0"].Value = myValue0; project.Variables["myVariable1"].Value = myValue1; project.Variables["myVariable2"].Value = myValue2; project.Variables["myVariable3"].Value = myValue3...
  2. zenfreak

    Assign Global Variable Value to Field

    Is there a way to assign a global variable to a field just like it is possible when doing Right Click >> "Set Value From Variable"?
  3. zenfreak

    Create Own Variables from C#

    Is it possible to create own/local variable from the C# code box just like the global variables? project.GlobalVariables.SetVariable("MyNamespase", "NewVariableName", "NewValue");
  4. zenfreak

    Simple drag and drop question

    I would still like to know what does the delayed drawing?
  5. zenfreak

    How to change reCaptcha2 recognition module if one fails

    Thanks for the heads-up @PHaRTnONu ! I still getting those errors for no particular reason, apparently. Did anyone bump into those before?
  6. zenfreak

    What Reference Should I add for TextInfo and Cultureinfo?

    I see now I should have seen this myself. Thank you for your time!
  7. zenfreak

    How to change reCaptcha2 recognition module if one fails

    Sometime recaptcha is present and other times it's not. When captcha it's not present, the snippet will throw: Perform the CSharp OwnCode Waiting time of element load is over Executing action ProjectInProject Failed to process Also, how can I change to a different captcha solver if...
  8. zenfreak

    What is the window property and how to use it?

    I've seen may methods involving a "window" property such as this one: Emulator.SendKey("Window", 200, 200, System.Windows.Forms.Keys.A, KeyboardEvent.Press); What is the window property and how can I use it. I am sorry if this has been already discussed or it's explained in the documentation...
  9. zenfreak

    What Reference Should I add for TextInfo and Cultureinfo?

    When trying to use : TextInfo textInfo = new CultureInfo("en-US", false).TextInfo; title = textInfo.ToTitleCase(title); I'm getting this errors: Compile code of Error in action "CS0246" "The type or namespace name 'TextInfo' could not be found (are you missing a using directive or an...
  10. zenfreak

    How to Scroll Inside a Window

    I would like to be able to scroll inside a javascript window that pops out. Just to make it clear, it's not a pop-up window, so it's inside the same tab. Als, I would like to move the mouse inside of that window and I think this is what I should use: Emulator.MouseMove("Window", x, y, false)...
  11. zenfreak

    How to stop project execution in Code Creator?

    I am in a middle of a c# function and would like to stop everything and exit. I've tried using Environment.Exit(1); but when running my project in Zennoposter it's closing the program itself. Not sure if a bug or common behavior but obviously I would like Zennoposter to keep running and execute...
  12. zenfreak

    Getting "The pipe has been ended" When Using GetItems

    Still needing this one
  13. zenfreak

    Getting "The pipe has been ended" When Using GetItems

    Every time I try to GetItems from a list like this: string randomListValues = rnd.Next(1, 7).ToString(); string myListItem = string.Join(" ", project.Lists["List 1"].GetItems("random" + randomListValues + "(1,12-15,35-end)")); I get a popup error saying: If I'm only getting 1 item by using...
  14. zenfreak

    Project works in code creator but not in zennoposter

    Yes, I know it should. This is really frustrating because after months of digging my way into developing projects into Code Creator I see that actually, I cannot use them in zennoPoster so they are useless!
  15. zenfreak

    Project works in code creator but not in zennoposter

    @lokiys The GetItem method is found here: https://help.zennolab.com/en/v5/zennoposter/5.11.7.0/webframe.html#topic791.html and the main benefit is that I can also delete that record after I take it using true I will try your code right away but the main issue here is this: Why the same come...
  16. zenfreak

    ZennoDroid: Basic Questions

    Managed to properly install bluestacks but I still need answers for those questions 1. 2. 3. I'm still unable to install apps through PlayStore. Is this normal behavior?
  17. zenfreak

    Project works in code creator but not in zennoposter

    Still needing this figured out
  18. zenfreak

    Project works in code creator but not in zennoposter

    As far as I can tell, the tracking does not work for .zpproj projects but only for .xmlz because when I run a .zpproj project there is no folder being created under \documents\zennolab\traces and if I run a .xmlz I get a folder there. Here are the requested screenshots: The weird thing is...
  19. zenfreak

    Project works in code creator but not in zennoposter

    I have no proxies and did not even tried multithreading. I am also monitoring the execution by "Show Instance" and I see the browser loading and then closing. How can tell if it's stuck on some action if I'm in zennoposter? If I cannot debug my project in Code Creator how can I develop my...
  20. zenfreak

    Project works in code creator but not in zennoposter

    Is this normal behavior that a project to run well in code creator and to just throw a ".zpproj was completed successfully!" in zennoposter without running? Is this a bug? Who should I address this matter?
  21. zenfreak

    Project works in code creator but not in zennoposter

    I am done building a project in code creator and it works fine but if I run the same project in zennoposter it just ends and the log shows that ".zpproj was completed successfully!" It's not the first time I get different results from code creator to zennposter. Does Code Creator work? Should...
  22. zenfreak

    Get Random List Items Using GetItems

    Thank you for taking the time to provide this answer. When I look at it now it makes sense :)
  23. zenfreak

    Get Random List Items Using GetItems

    Still needing this ...
  24. zenfreak

    How to change reCaptcha2 recognition module if one fails

    I'm also getting this error from time to time when using that snippet
  25. zenfreak

    How to change reCaptcha2 recognition module if one fails

    I still need t know how to change the captcha solver if capMonster fails
  26. zenfreak

    Set Document and Form -1 by Default

    Most websites don't keep the Document and Form # so it would be nice to be able to set them to -1 by default or at least a way to apply those settings after recording by selecting them all and setting them to -1.
  27. zenfreak

    Get Random List Items Using GetItems

    I would like to be able to get a random number of items from my list. return string.Join(";", project.Lists["List 1"].GetItems("random20(1,12-15,35-end)")); Following the documentation example, I would like to be able to replace 20 with another random value generated like this: Random rnd =...
  28. zenfreak

    How to change reCaptcha2 recognition module if one fails

    @VladZen Thank you! The snippet works well as far as I can tell but how can I switch to a different recognition module in case CapMonster fails?
  29. zenfreak

    How to change the filepath in multiple .xmlz files at once

    Not sure we are talking about the same thing - could you please provide an example or link to such a case you are describing?
  30. zenfreak

    Get a list of local variables The method or operation is not implemented

    Tried e different approach, same result/error: List<string> logins = project.Lists["logins"].ToList(); string password = logins.FirstOrDefault(stringToCheck => stringToCheck.Contains(profileEmail))
  31. zenfreak

    Get a list of local variables The method or operation is not implemented

    I am trying to get the password based on the username from a text file containing multiple user|pass lines. I was trying to accomplish that using the following code but I got this error: string filePath = project.Directory + @"logins.txt"; string pass =...
  32. zenfreak

    How to change reCaptcha2 recognition module if one fails

    1. I am currently solving reCaptcha2 with capMonster but I would like to be able to switch to a paid service such as Anti-Captcha or Ru-Captcha if CapMonster fails. Is there an easy way to do that? 2. I am currently using the reCaptcha2 module like this: so I can dynamically change the...
  33. zenfreak

    How to change the filepath in multiple .xmlz files at once

    @lokiys You are right and it makes sense to do this but I'm pretty sure I've tried to do just that a few months ago, but the list won't load if it didn't have the file path upfront. I mean if the file path that points to the list was null then the list would not load even if you make it...
  34. zenfreak

    How to change the filepath in multiple .xmlz files at once

    I have 200+ .xmlz files that share the same filepath for locating a list, is there a way to change that filepath without manually editing each project?
  35. zenfreak

    ZennoDroid: Basic Questions

    I finally bought the zennDroid and now I'd like to make it useful but run into different other issues Like I said before, it would be really great if we could change the IMEI from ZD's interface. Meanwhile, I've found the files you are referring to but I have no idea how to use them. How can I...
  36. zenfreak

    Script Works Well in Code Creator but In ZennoPoster it Acts Weird

    This is getting frustrating. I've chosen to make my scripts in Code Creator so I can finetune them and to get detailed debugging and while 2 weeks ago another script would not work in 2 or more instances now I've run into a similar problem when it runs perfectly in CodeCreator but when I run it...
  37. zenfreak

    Missing an assembly reference when using SendKey

    Yes, I own 2 licenses
  38. zenfreak

    Missing an assembly reference when using SendKey

    It seems I cannot PM you. Is there anything I should do in order to be able to?
  39. zenfreak

    Serious Multi-threading Error: Zennoposter Failed to complete project

    They also have 2 global variables. Is it possible that they get overwritten somehow?
  40. zenfreak

    Serious Multi-threading Error: Zennoposter Failed to complete project

    I say it's related to multithreading because the script runs well on both code creator debug and zennoposter if only 1 instance is run. The issues show up when using more than 1 instance of the same script. What could be incompatible in my script other than the zenno version (which is the same)...
  41. zenfreak

    How can I read/capture/view source of content that show only on mouseover?

    still needing this ...
  42. zenfreak

    FullEmulationMouseMoveAboveHtmlElement gets Stuck on the bottom of the page

    Any thoughts, anyone?
  43. zenfreak

    Нужен бот для автоматического заполнения контактных форм на веб-сайтах

    I can't edit my msg and I feel I made a mistake. This is what I meant: Забавно, как работает русский на английский перевод :)) Теперь я могу, наконец, понять весь переведенный текст. Да, я сам переводил с английского. Что касается вашего запроса, сам бот не такой уж большой, но сбор отпечатков...
  44. zenfreak

    Нужен бот для автоматического заполнения контактных форм на веб-сайтах

    Забавно, как работает русский на английский перевод :)) Теперь я могу, наконец, понять весь переведенный текст. Да, я сам переводил с английского. Что касается вашего запроса, сам бот не такой уж большой, но сбор отпечатков пальцев на разных сайтах, на которые вы хотите отправить сообщения, -...
  45. zenfreak

    Serious Multi-threading Error: Zennoposter Failed to complete project

    I have written a project in code creator and it works well in the code creator debug And now it gets really weird! If I open and run 1 thread 10 times in zennoposter it works well. If I open and try to run another thread of the same script while the first one is running, it throws an error...
  46. zenfreak

    Missing an assembly reference when using SendKey

    @VladZen .NET Framework 4.7 or a later update is already installed on this computer. What else should I do?
  47. zenfreak

    ZennoDroid: Basic Questions

    @VladZen Yes, using the demo version but I'm pretty sure that will buy it after it expires. I didn't have the time to check out the competition as I've seen similar products out there. I guess I'll stick with zenno even if the main downside here is the language barrier and the fact that the RU...
  48. zenfreak

    ZennoDroid: Basic Questions

    Since this is the first zennodroid EN thread I would like to add here all the basic question I have or you might have so we can later group them into a nice startup tutorial. Here we go: 1. When I first started zennodroid I couldn't find a way to choose or configure between BS or AVD but...
  49. zenfreak

    Bugs in new version 5.11.5.0

    Could this be considered a bug? http://zennolab.com/discussion/threads/fullemulationmousemoveabovehtmlelement-gets-stuck-on-the-bottom-of-the-page.40278/
  50. zenfreak

    Where is the ZennoDroid Forum?

    I am pretty sure it's ready already :-) I'm banging my head against the RU forum translating and trying to put the pieces together Check this out: http://zennolab.com/en/products/zennodroid/ Oh, I just saw you're an admin :( You must know better ... but what's this version I'm using right now...