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

  1. S

    Install VPS WIndows 2008 RC2

    FYI, I use liquid web VPS and it works fine - no problems, my configuration has 2.7gb RAM
  2. S

    A problem with multi threading.

    You mention to check every element is loaded or values passed to element - Checking element load is easy but how do you check is a click is passed to a button, for example with - he.RiseEvent("click", instance.EmulationLevel);?
  3. S

    Data leaking across threads

    I guess it will depend how zenno launches each instance. Typically when multithreading with c# any class defined as "internal class ClassName" will allow all methods defined as public or public static to be accesible to any thread which is run on the same assembly, and I assume that each thread...
  4. S

    Data leaking across threads

    I make my projects in Code Creator, so I can fix this but for those who don't this could be a problem for Project maker also. I notice that when I make projects with the record function it automatically declares the classes as internal and then the methods as public. This means that any...
  5. S

    Converting v3 code creator project to Zenno v5

    HTMLElement, all the emulations seem to have changed //he.RiseEvent("click", false); he.RiseEvent("OnClick", "none"); //he.SetValue(input, true); he.SetValue(input, "Middle", true);
  6. S

    Converting v3 code creator project to Zenno v5

    No overload for method 'Execute' takes 1 arguments. The way we executed an instance now has changed two two arguments change Step1.Execute(instance); to Step1.Execute(instance, project) From what I can tell the " public interface IZennoPosterProjectModel " allows you to store lists, tables...
  7. S

    Converting v3 code creator project to Zenno v5

    Error(s) The best overloaded method match for 'ZennoLab.CommandCenter.Instance.SetProxy(string, int, string, string, string)' has some invalid arguments. [Row 75; Column 4] cannot convert from 'bool' to 'string'. [Row 75; Column 41] This is because the Parameters to set a proxy has changed...
  8. S

    Converting v3 code creator project to Zenno v5

    The old emulations file no longer exists, it provides an error. Just delete the reference because it has been replace with using ZennoLab.Emulation;
  9. S

    Converting v3 code creator project to Zenno v5

    I've already logged a support request for some errors I have come across. I am listing here some items that I have uncovered in my own analysis hoping that it might also help someone else and that hopefully the zenno team can implement fixes when converting these files in future builds. *...
  10. S

    Thread Locking

    What are you talking about??? This is code creator, I'm not using the zenno functions I'm using C# to write to a file.. The problem is clearly stated because you do not impose thread locking in your mulithreaded setup
  11. S

    New build 4.5.0.1 (06 March 2013)

    WOOOOOOOO!!! FINALLY AN UPDATE TO CODE CREATOR... Just what I've been waiting for, this is better than Christmas!
  12. S

    Negative feature selection in Actions Designer

    you can do this via regex or regex within a regex
  13. S

    Thread Locking

    ZP crashes when threads/instances try and write to a file or DB at teh same time. This can be tested by launching over 100 threads and timing them to all execute a write at the same time. In code creator this is resolved by implementing thread locking - I am surprised that each instance...
  14. S

    Wait for element

    The only problem with the work around is that when you implement a loop in zenno poster it creates a memory leak and ZP will crash
  15. S

    Add/Remove items in teh task list in ZP from code creator or template

    I would like to have a feature where I can define criteria that causes a task to be removed from ZP. For example I have 1000 threads running, scraping data from a URL list/File/DB When my program reaches the end of the list it would be good to remove the task from ZP, if there are multiple...
  16. S

    ZennoPoster Mental Power

    That click anywhere on pic feature sounds awesome, not sure about running in firefox though, that browser chews wind resources if left open... Can't wait for the CC update, will test then.
  17. S

    Looking for a Tutor

    I don't think this is still going on, but a skype group or a chat room dedicated to zenno would be a good idea. Anyone know how o set one up?
  18. S

    DeathByCaptcha not working zenno poster

    Can you define what you mean by a "good working" proxy? What caused the other proxies not to work?
  19. S

    Install last version of Phalanger with Zenno tools ?

    You will need to install v 2.0 http://www.codeplex.com/Phalanger/Release/ProjectReleases.aspx?ReleaseId=11564#ReleaseFiles
  20. S

    Inititating session from file or database

    Thanks HB, exactly what I was thinking but would this work with multi-threading? or would it restrict to only execute one template at a time?
  21. S

    Inititating session from file or database

    :bump
  22. S

    Helpful code snippets

    It's for code creator - not for Project Maker... You put it in your source code
  23. S

    Helpful code snippets

    how to pull dom, html or text tb.DOmText //get page dom tb.PageText; //get page text tb.GetSourceText; //get source text Method() to write to file - call this with WriteFile.WriteToFile(string goes here) using System; using System.IO; using Zennolab.CommandCenter; namespace...
  24. S

    Helpful code snippets

    Thought I would start a thread that contains some quick snippets of code that may benefit others . Most of the stuff I have come across isn't in the help files, or forums, or sometimes anywhere so I hope this helps someone
  25. S

    How to Check for Parsed Text on CC?

    Thats because your above code is getting the text of the entire page that your on (your not actually on a page in the code you pasted) You need to navigate to a page, direct the code to what you want to search - search it - and do something or navigate to a page, get the dom or text or...
  26. S

    Private proxy usage?

    Hey guys did anyone manage to get this to work?
  27. S

    Inititating session from file or database

    Hi guys, I'm wondering if someone can help me figure out how to run a session based on an input from a web site. For example, lets say I have a site that gets prices of airfares from airline a, airline b and airline c. The user would go to my site and enter the dates for their flights and other...
  28. S

    Templates in C#

    Hi guys, Is there anyone out there who can create templates in c#? I've got a few sites that I need done - very customised work. Basically needs to read from file, use this data to post to site, navigate through site and copy information from the site into a text file. Let me know if your...
  29. S

    looking for a ZennoLab freelancer to code a few scripts

    I'm also looking for someone to freelance some scripts for me in c#. Same process as above. Please contact me on skype t.smolcic
  30. S

    How do you run a script through a webpage?

    I would think that you would have to somehow tell zennoposter to action the script?