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

  1. Z

    Keystrokes emulation error with dot in Google

    Hi, im using keystrokes emulation in google.com. Is is working. The only problem i have is that when i try to enter a word that has a dot (.) in it. In that case it acts as if i wold press "ENTER" after the dot. I debuged this char by char and indded the dot acts as if i would press ENTER...
  2. Z

    Geolocation

    Hi, in Chrome there is this option to set the Geolocation (Latitude, Longitude). Is it possible to set this in Zenno?
  3. Z

    Compare strings with quotes in them

    Hi, i have a logical IF. "{-Variable.keyword1-}"=="{-Variable.keyword2-}" this returns TRUE if the keywords are the same. But if the keywords are keywords with a quote like "apple" then the IF returns FALSE. The "Executed" in "Action properties" shows ""apple"" == ""apple"" and it returns...
  4. Z

    SERP scrapper memory problems

    Hi, i have a Google SERP scrapper that uses keyboard emulation to write the keyword into the "search box" on google.com. I have a loop that gets the results and continues with the following keywords. All working perfectly. My problem is that after a couple of hours of work the memory...
  5. Z

    Trouble upgrading on Server 2012R2

    Hi, i tried to upgrade my zenno on windows server 2012R2 but i get the message in the attachment. What should i do?
  6. Z

    No sound in Project Maker

    Why is there no sound in Project Maker? I browsed to youtube.com and played a video but i can hear no sound. I also cannot hear audio captchas.
  7. Z

    Please upgrade to a supported browser to get a reCAPTCHA challenge

    I get a lot of those messages from Google and no captcha is displayed: "Please upgrade to a supported browser to get a reCAPTCHA challenge. Alternatively if you think you are getting this page in error, please check your internet connection and reload." What should i do?
  8. Z

    Plans to update Browser profile?

    Hi, i see many people have problems with old UserAgent etc. browser fields in Zenno (websites like Google telling that the browser is old). I have read some other threads and the problem can not be solved only by setting the UserAgent header with Profile processing (Reassign fields). Other...
  9. Z

    Proxy stops to work after Reassing profile

    Hi, i have a script working with private proxies. I use the "Set proxy" settings action to set the proxy. This works fine. But now i wanted to change the User Agent of the browser because the built in are really old ones. I did this using the "Reasign prifile fileds" action as shown bellow...
  10. Z

    Table processing, Bind to the file decimal error

    Hello, i have a file with data like this: 170;0.36 260;0.60 3;0.80 When i want to get this data into a table with Table processing->Bind to the file action, I get the 170 correctly, but in the last number the decimal point is missing and i get 36 (instead of 0.36) into the table. Whats...
  11. Z

    Zenno Action for waiting on specific port

    Hi, i would like to have a Zenno template controlled by an external action. So i was thinking that it would be nice to have a functionality (action) that would stop the execution of the template and wait on specific port (like http://localhost:123/zenno/command=apple) for a command to continue...
  12. Z

    Count of threads in one process

    Hi, what does the setting "Count of threads in one process" really mean? Are the "browsers" in one process somehow connected? For example are there any disadvantages with multiple threads in one process versus 1:1, if i for example scrape Google and want to look naturally ? re, Mike
  13. Z

    The Procedure entry point GetNamedPipeServerProcessId could not be located

    Hello, from recently uppon starting a Zennoposter job i get this error message: "The Procedure entry point GetNamedPipeServerProcessId could not be located in the dynamic link library Kernel32.dll" Im using 5.4.3.0. Any idea whats that?
  14. Z

    csharp owncode cannot have multiple DTSs

    Hello, if i run the template with max # of threads set to 1 everythink is OK. But if i increase this to lets say 3, then i get this error during execution: "perform the csharp owncode cannot have multiple DTSs. line 86, position 8" and also somethimes this: "perform csharp owncode object...
  15. Z

    How to delete all data in a table

    In "Lists" we have the option to choose "Delete lines"->"Remove all elements". How to do the same for a Table ?
  16. Z

    Speeding up text presence checks in a DOM

    Hello, let me explain. 1. I visit a site and save it into a DOM. 2. I check this DOM if there is a "text" present (i take the "text" from a list). So each line in the list is a "text". And i have a loop to take one line at a time check its presence in a DOM. Now the problem is that checking in...
  17. Z

    getRow on tables stopped working

    Hello, after i upgraded to the newest version of Zennoposter, the C# code in my block (inside PM) returns an error (Action not executed). There is more code but i figured out this lines (the second line) is the cause of the error. I have like 7 rows in a table. var appleTable =...
  18. Z

    GET request increases the number of errors

    Hello, i have a script that does this: 1) i have a list A of 200 URLs 2) i have a list of B 50 domains Then for each URL in list A(i open each url), i check if there is any of the domains on list B. In other words, checking all URL for all domains. Now to the problem: If i check this inside...
  19. Z

    High speed crawling

    Hey, i have a list of pages i want to crawl for SEO puproses(lets say 100.000). Using a software like Screaming From i can check those sites at a rate of 10 pages/sec. (like google..so without loading images, flash etc.). I want to do something like that is Zennoposter. What are the key...
  20. Z

    Tab settings - timeout

    How does the "Timeout" setting in "Tab settings" work? Should it always take 10 sec.(if i set it to 10 sec) or just in case that the page doesn't load faster?
  21. Z

    Calling REST services in C#

    Hi, How would be the best way to call a REST type web service in Zennoposter C# code? How to do it?
  22. Z

    Inspecting tabes just as variables?

    Hello, is there a way to see whats happening to "Tables" during debugging (just as we can with variables)? re, G
  23. Z

    Copy table to temp table

    I would like to copy an existing Table(not file) to a new "temporary Table" that i would then use(so i dont modify the original Table). Can i do this in Designer or using C# ? I tired this in C# but for some reason the project Fails to even start: Created "orgTable" and "orgTableTemp" in...
  24. Z

    Get XML data into table

    I would like to do this: 1.Call a XML file: http://domain.com/webservice.xml that would contain all the data that is needed for execution of one thread. For example: <xml> <company_name> Company Ltd. </company_name> <to-do> <property> domain1.com </property> <location> US...