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

  1. zenfreak

    Where can I see the Console.Writeln output?

    I am using Console.WriteLine(heCol.Count); and I see it's executed but where can I see the output?
  2. zenfreak

    The Quick scan debugger is unable to show the element values

    When I add C # and use the Quick scan option for things like he.OuterHtml I always get something like this: [CODE = csharp] Exception: "System.Exception: Unable to get the value. Perhaps the variable is not initialized at ZennoLab.ZennoDebugger.Debugger.quickWatch (Object forwatch) "in"...
  3. zenfreak

    How to emulate zoom in and zoom out with zennodroid

    How to emulate the 2 fingers closing or opening just as you zoom in and zoom out on your phone?
  4. zenfreak

    How to get all text

    I have the Facebook messenger chat open and I would like to be able to select all the text/conversation to a file. Basically, I'm looking for the "Examine the DOM source code and page text" button as in ProjectMaker for Zenno.
  5. zenfreak

    ForceBindIP with Zenno

    I am trying to use different network connections for projectmaker so I tried ForceBindIP and even if I can get it to work with chrome or firefox using something like this: "C:\Program Files (x86)\ForceBindIP\ForceBindIP64.exe" 192.168.0.100 "C:\Program Files\Mozilla Firefox\firefox.exe" but it...
  6. zenfreak

    How can I run another Project while in C# Code

    I'm basically searching for the "Project in Project" box alternative inside the C# Code. So just to make things clear, I have a code running in the C# Code and from there I would like to run another .xmlz project while still inside the C# code. Something like: for (int x=0; x < limit; x++) {...
  7. zenfreak

    Find Element Based on 2 or more Attributes

    How can I find elements that match 2 or more attributes Something like this for example: HtmlElement he = instance.ActiveTab.FindElementByAttribute("input", "class", "email", "regexp", 0); AND HtmlElement he = instance.ActiveTab.FindElementByAttribute("input", "role", "login", "regexp", 0);
  8. zenfreak

    How can I get the BoundingClientHeight Value?

    This should be pretty explanatory: https://help.zennolab.com/en/v5/zennoposter/5.18.0.0/webframe.html#topic160.html but I'm a newb in C# and don't know how to use it
  9. zenfreak

    Setting the FullEmulationMouseCurrentPosition Property

    How can I set the FullEmulationMouseCurrentPosition Property to x=200 and y=200 for example?
  10. zenfreak

    Best way to click a button available only on hover

    What is the best way to click a button that's showing only on mouseover? Tried instance.ActiveTab.FullEmulationMouseMoveToHtmlElement(he); - where he is the div containing the button but when I try to find the button using instance.ActiveTab.FindElementByAttribute it doesn't seem to find it ...
  11. zenfreak

    Capmoster Sitekey: Where to Get it From?

    I've read the documentation here: https://zennolab.com/wiki/en:addons:capmonster:sitekey and I'm stuck here: You should insert sitekey value In action properties, which can be parsed from webpage with captcha, and url-address of that webpage. So where should I get the sitekey value from? I...
  12. zenfreak

    cloud.google.com/vision and imgur.com don't upload picures properly in projectmaker

    I am having a hard time trying to upload some pictures on https://cloud.google.com/vision/ and https://imgur.com/. When trying to upload them using project maker the image doesn't seem to upload properly on google vision and not at all on imgur.com I have included an archive of a test project...
  13. zenfreak

    Perform the CSharp OwnCode Input string was not in a correct format.

    I have 300 lines of code in a c# code box playing in Project Maker. The code includes a loop and sometimes, apparently without reason, it stops and throws this error. Perform the CSharp OwnCode Input string was not in a correct format. It doesn't say the line number so how can I tell where is...
  14. zenfreak

    Can I expect the BrowserBack Key to Work?

    Using this Emulator.SendKey(instance.ActiveTab.Handle,System.Windows.Forms.Keys.BrowserBack, KeyboardEvent.Press); doesn't seem to have any effect. Does anyone know a way I can emulate a browser back?
  15. zenfreak

    XPath HtmlElementCollection: Get Only 1st Level Elements

    Having this as an example I'm trying to build an XPath expression for creating a HtmlCollection. <AAA> <BBB> <CCC> <CCC> <DDD> <EEE> <CCC> <FFF> <GGG> <CCC> I want to get all CCC elements that are direct descendants of AAA So the result...
  16. zenfreak

    Unprotected Template to Surf Websites Anonymous

    I need an unprotected zenno template (that I can later edit myself), that will allow me to surf webpages while generating a new profile for every new IP change (proxy or VPN). The template should follow all the anonymization elements described here...
  17. zenfreak

    Implementation of IZennoList comparisons occur on the contrary

    Please see this thread for details: http://zennolab.com/discussion/threads/how-to-check-if-string-is-in-list.44141/ Thanks to @LaGir for confirming this
  18. zenfreak

    Changes in Firefox 45 vs Firefox 52

    What are the differences between 45 and 52 in regards to zennoposter? I've noticed that after using firefox 52, some websites require some sort of field validation meaning that simply setting the field value it's not enough and the form doesn't "see" that the field has been filled. The only...
  19. zenfreak

    How to Check if String is in List

    I am trying to check if my list contains a certain string and not only part of the string but the exact mach. Live example: My postLinks list has the following strings: "car", "house", "firecracker", "laptop", "mouse" Using this c# Block Code I get unexpected results: IList<string> postLinks...
  20. zenfreak

    How to Download a File?

    After clicking a link, it will generate a .csv file for download. How can I download that file using zenno?
  21. zenfreak

    Does Anyone Knows any ICO's Worth Investing?

    With the current rise of cryptocurrency hype does anyone knows any ICO worth investing in?
  22. zenfreak

    What is the backspace key?

    I am trying to emulate a backspace key using Handle.System.Windows.Forms.Keys.... and can't figure out what should I use for backspace. Also, where can I find documentation for all the keys options so I know what key corresponds to each of them? What does .Add .Attn .D0 etc keys do?
  23. 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...
  24. 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"?
  25. 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");
  26. 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...
  27. 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...
  28. 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)...
  29. 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...
  30. 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...
  31. 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...
  32. 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.
  33. 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 =...
  34. 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 =...
  35. 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...
  36. 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?
  37. 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...
  38. 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...
  39. 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...
  40. zenfreak

    Where is the ZennoDroid Forum?

    I have alot of questions about zennodroid but can't find the proper place to ask them. I noticed the RU forum is already populated with posts but as you can imagine, I find it hard to translate and understand russian
  41. zenfreak

    FullEmulationMouseMoveAboveHtmlElement gets Stuck on the bottom of the page

    When using FullEmulationMouseMoveToHtmlElement and FullEmulationMouseMoveAboveHtmlElement and it's trying to "lock" the htmlElement by scrolling up and down the page, it gets stuck when it reaches the bottom margin of the document. Also tried to play with the FullEmulationMouseSetOptions but...
  42. zenfreak

    What reference should I add for the namespace 'Keys'?

    I am trying to use: string result = Emulator.SendKey(instance.ActiveTab.Handle,System.Windows.Forms.Keys.Enter, KeyboardEvent.Down);and I'm getting this error: The type or namespace name 'Keys' does not exist in the namespace 'System.Windows.Forms' (are you missing an assembly reference?)...
  43. zenfreak

    Missing an assembly reference when using SendKey

    I'm getting: When trying this: result = Emulator.SendKey(CT.Instance.ActiveTab.Handle, System.Windows.Forms.Keys.Enter, KeyboardEvent.Down); I have also used: using System.Windows.Forms; using System.Windows; And added WindowsFormsIntegration.dll into my References.
  44. zenfreak

    DisplacementInTabWindow vs DisplacementInDocument

    What is the main difference between DisplacementInTabWindow and DisplacementInDocument? This gets down to understanding the difference between TabWindow and Document
  45. zenfreak

    CodeCreator won't properly show Element Properties

    When trying to get the element properties of an element selected in the Element tree window CodeCreator won't refresh. Doing the same in ProjectMaker works like a charm. See the video below:
  46. zenfreak

    DisplacementInTabWindow and DisplacementInDocumentWindow

    Can anyone explain the difference between DisplacementInTabWindow and DisplacementInDocumentWindow. A reallife example would be great.
  47. zenfreak

    What is the blank char when doing a replace in Text Processing

    I want to do a text replace using the Text Processing module for a string with nothing. What should I use in the "What to replace" field?
  48. zenfreak

    Error when choosing the ReCaptcha2 recognition module from variable

    I am trying to make the Recognition module dynamic by assigning the "DeCaptcher.dll" to the reCaptcha2 variable so I can change it on the fly. But doing so I'm getting this error: 23:02:56 Executing action ReCaptcha2 recognitionof actions group id : 50c3e46c-8474-44b6-9764-8ebb0884cd4c...
  49. zenfreak

    How to get a line from list by number using the webframe

    I'm having troubles getting a line from list by number, mainly because I didn't fully understood how to work with this method here: https://help.zennolab.com/en/v5/zennoposter/5.11.3.0/webframe.html#topic759.html Can someone provide a simple example for getting the 5th element from a list?
  50. zenfreak

    How do I reveal a ProjectMaker bug without exposing the website?

    I am having trouble uploading an image on a website and more likely it's PM's browser fault as I can do that on every other browser. Just to make it clear, even if recording or not, it does not upload the image. This happens on a particular (popular) website and I'm pretty sure I've met this...