Недавний контент emperorjones

  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