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

  1. E

    Appending to a cell

    Hi all, I am wondering how to have ZP append to a cell instead of overwriting it? I see the command to append lines or append rows. is there any way to have ZP just add a "; XXXX" at the end of the found data in cell? Thanks
  2. E

    Get Line from file, search & place in table

    Thanks lokiys. I guess i can do this lol. I already have a file that searches a list for specific text. I search the forum and found code for searching a table for specific text and fount this: We need to check if there is a cell that contains a specific text. It can be solved using this C#...
  3. E

    Get Line from file, search & place in table

    Not sure if zenno can do this... I want to take a line from a list of emails I have and then have zenno search a table for the matching domains and if there is a match, add the email to a cell in the table. So for example, the list reads: 1. [email protected] 2. [email protected] 3...
  4. E

    How can I have an event click open in a new tab?

    Thanks but in this example, the link is hidden with java, so I have to click on the link. I don't have a url to copy.
  5. E

    How can I have an event click open in a new tab?

    hello guys. Quick question. Is it possible to have an event "click" added via Actions Designer open in a new tab? Thanks
  6. E

    Google Search Scraping - how is google detecting me?

    I'm scraping google using "site:" modifier but after a few pages, I get blocked. I'm using rotating proxies from Storm Proxies that change on each http request, user agents, clearing cache & cookies. I have long pauses between page requests and am only searching 4 pages before starting a new...
  7. E

    How to extract a link/url from java onclick=

    Thanks. How would a post request work in this instance? I've built my project to just click one by one & its working fine, but I'm interested in other ways that might also work.
  8. E

    How to extract a link/url from java onclick=

    Hi everyone, I am trying to extract links from this site/page: http://find.coolsculpting.com/find-a-center/?z=60601 The link I'm looking for is the "Contact this Practice" link. In the source code its hidden as a code. I can use regex:(?<=\ onclick="ContactPractice\(').*?(?='\)">) and grab...
  9. E

    how to open new tab instead of clicking?

    nevermind. I see my problem
  10. E

    how to open new tab instead of clicking?

    When I do this, it opens up a new tab that I named, but the action still clicks in the original tab not the new tab. How do I get the "Click" Event to open in the new tab?
  11. E

    check for muliple occurances of an element on page

    actually, not an element - just a link.
  12. E

    check for muliple occurances of an element on page

    How do i check for multiple occurrences of an element on a page (i.e. member "contact link") and then have ZP click on each one? I know how to check for text presence, but I'm not sure how to get ZP to click if the Text check returns positive. Plus if there are 20 on a page how should I go about...
  13. E

    Check list for data in PM

    I see. simple - Thanks!!
  14. E

    Check list for data in PM

    So if my variable is "City" and my list is "MasterCityList" Does it look like this? // take search text from variable var textContains = city.Value; // get a list or search var sourceList = MasterCityList; // search in each line of list lock(SyncObjects.ListSyncer) { for(int i=0; i <...
  15. E

    Check list for data in PM

    Thanks!!, i guess now I finally have to learn how to use C# o_O
  16. E

    Check list for data in PM

    Is it possible in PM to have ZP load a list, check each line for data against a variable and report back whether or not the data exists? Thanks.
  17. E

    blocked from creating an account

    Thanks, I'm using mouse and keyboard emulation for all navigation and inputs. Still being blocked. I didn't use javascript for the offsets. Is that just so you won't always be clicking in the same space?
  18. E

    blocked from creating an account

    I'm getting this error from the site: Error: Invalid spinner. Please try again. This usually happens because an automated script attempted to submit this form.
  19. E

    blocked from creating an account

    Thanks. Is there a thread here that I can review that discusses strategies to combat this generally?
  20. E

    blocked from creating an account

    I'm creating accounts with ZP and recently the website is not letting accounts get created. Proxies are used and good. I have not used ZP to create accounts on this particular site. I was doing it manually - and manual creation still works. Is there a way for a site to block ZP?
  21. E

    Anyone use Proxymesh with Zenno?

    Actually, I talked with the tech team and bought the service. Works seemlessly with ZP!
  22. E

    Anyone use Proxymesh with Zenno?

    Hi all, I use the Zenno Proxy Checker for account creation, but for using accounts on a particular site, I was looking at Proxymesh for great proxy stability. The site in question is really cracking down on me, so the private proxies I was using (100 private proxies roted twice a month) are no...
  23. E

    Trying to take DOM, source code hidden?

    damn it....why doesn't it show up for me. lol thanks
  24. E

    Trying to take DOM, source code hidden?

    yes. that link does not show up in the source code or when trying to take the DOM for me.
  25. E

    Trying to take DOM, source code hidden?

    OK. lokiys - maybe you can help with this: On this page (same site): https://www.indiegogo.com/projects/rhize-power-people-power-change I am trying to take the facebook link at the bottom under "Find This Campaign On" In firefox & chrome I can see the link when I hover over it. And using a...
  26. E

    Trying to take DOM, source code hidden?

    thanks. didn't know about the limit.
  27. E

    Trying to take DOM, source code hidden?

    I'm trying to take DOM on this page: https://www.indiegogo.com/explore?filter_browse_balance=true&filter_quick=new It works fine to take first page DOM and get the information that I want. However, If I click "Show More" and add pages and then take the DOM it only takes what is on page 1 - The...