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

  1. shabbysquire

    How to use anti-captcha (antigate.com) for Google recaptcha?

    Thanks Morgan for the template! I didn't realize that 2captcha also solved reCaptcha V.2. So I tried your template for the signup page: https://www.quora.com/ But the 1st Dom wasn't able to capture any info. What do I need to capture?
  2. shabbysquire

    What other tools do you use with ZP?

    Didn't know you could do this in ZP?
  3. shabbysquire

    What other tools do you use with ZP?

    Looks ideal, will check it out when I next upgrade ZP. Thanks.
  4. shabbysquire

    What other tools do you use with ZP?

    Does anyone use Fiddler when working with ZP? If so, do you only use it for GET/POST or just with a normal browser? Are there any other tools you find helps you when working on a project? Thanks.
  5. shabbysquire

    Saving a range to a list?

    Thanks guv'nor! :bz:
  6. shabbysquire

    Question re: keystrokes emulation

    I don't think this is possible in ZP (for now), and is a shame as alot of social media sites have this. There must be a workaround. Maybe assign a blank space to a variable, and then add it to the text may work.
  7. shabbysquire

    Saving a range to a list?

    I need to match all the regex results: 1 to 5 to a list. I'm able to specify one match (ie no. 1), so are we able to specify a range? Tried the following, but it wouldn't work.
  8. shabbysquire

    Question re: keystrokes emulation

    In some text messaging boxes (ie Facebook, etc), in order to create a new blank line, you do: shift + enter on the keyboard. How can we achieve this via the action keystrokes emulation? Thanks.
  9. shabbysquire

    Check if form submitted successfully

    Sometimes a text isn't available to check (kinda rare), but you can check for the presence of an element, ie a graphic.
  10. shabbysquire

    Text processing replace issue

    Thanks, will try that soon. :bt:
  11. shabbysquire

    Issue loading iContacts

    Hey there. Using PM ver. 5.9.9.1 Having issues loading the log in page for Apple iContacts. Sometimes the sign in page loads, but most of the time it doesn't. It works ok in my normal browser, so the site is up. Once signed in, it works ok. Here is a example if anyone wants to try it. Thanks.
  12. shabbysquire

    Text processing replace issue

    Like this? It doesn't work, as it replaces the characters like:*&^, with: [\W]
  13. shabbysquire

    Text processing replace issue

    In text processing, I use this regex to replace unwanted characters: [!"£$%^&*()-_+=#~@;:/><.,/?\\|¬`] It works, but it also strips out all numbers. This is how it's set up. Does anyone know why it strips out any numbers? Thanks.
  14. shabbysquire

    Text Processing - How to replace characters with spaces?

    That works a treat! Thanks given.
  15. shabbysquire

    How to check if result is a mobile number?

    Thanks Tobbe. Just ran it through text processing > regex, then check for any results via the IF statement. Another issue. Because UK mobile numbers are 11 digits in total, I need to grab only 11. I use this: 07.{9} But my regex also matches with mob nos that are longer, like this example...
  16. shabbysquire

    How to check if result is a mobile number?

    When scraping telephone numbers, I need to only collect mobile numbers that start with: 07. Is it possible to check if a no begins with: 07? I suppose regex first two digits, then ensure that they match both 0 and 7. Thanks.
  17. shabbysquire

    Text Processing - How to replace characters with spaces?

    In the action text processing, I need to replace the plus sign '+' with a space; ie the+fat+cat becomes: the fat cat. I use regex [+] to target the plus sign, but in ZP there are no spaces between the words, like this. Can someone tell me where I'm going wrong? Thanks.
  18. shabbysquire

    zennodroid

    Cool. I'll buy it when the EN version is released.
  19. shabbysquire

    New ZennoDroid. What does it do?

    Does anyone have a picture of the Russian layout? I can get someone to translate the actions, and post it on the wall for reference!
  20. shabbysquire

    New ZennoDroid. What does it do?

    Thanks Lokiys. Gonna be a real game changer!
  21. shabbysquire

    New ZennoDroid. What does it do?

    Just seen this on the site. Looks like an Android emulator. Any news re release, and the price? Will it be in Russian only?
  22. shabbysquire

    Possible issues with browser settings actions?

    Sometimes when I open a project in PM, the browser setting actions have red broken lines around them like: http://imgur.com/Dvqbx1R Btw, add image function in forum is broken.
  23. shabbysquire

    How to delete several non alpha-numeric characters?

    I'm looking to delete several non alpha-numeric characters, ie: !"£$%^&*()-=+{}[]'#~:;@<>,./?|\`¬ In text processing, I'm using the replace function with regex. When I use: \W, it deletes the characters ok, but it also deletes spaces. I've also tried using the match regex like...
  24. shabbysquire

    Issue copy 'n' pasting into Go to page action

    In latest version: 5.9.9.1, I keep seeing the same bug quite often. Sometimes when I copy a url (from text or browser), and I go to paste into the Go to page action, nothing happens. Like this. I often close PM, and restart, but it takes many attempts until it works. Note: ctrl + v is same...
  25. shabbysquire

    Possible to calculate an RFC 2104-compliant HMAC?

    Yeah, a right pain in the arse! :aq:. I too use ZP with HTTP GET to check 10k + Amazon product prices, but they tend to ban proxies quickly. I have another plan which includes using dummy Amazon accounts to achieve this. Just found a possible answer here. I understand most of it (secret keys...
  26. shabbysquire

    Possible to calculate an RFC 2104-compliant HMAC?

    Ok, a real complex case and not sure I can use ZP to pull this off. According to Amazon API, as a means to identify myself as a unique sender, I need to run my secret Amazon key (to access their product database) through a security algorithm. Here is a quote here, part 8: Someone managed to...
  27. shabbysquire

    HTTP Get question

    Anyone tried this with success?
  28. shabbysquire

    Highlight ingoing/outgoing lines

    Another great feature in PM, is to highlight any ingoing/outgoing line with a thick colour. This will aid in problem solving, as sometimes I have a load of lines mixed up. We can then follow the whole process better.
  29. shabbysquire

    Calculating stock sales over certain period

    True, can use that but it's take a while to scrape eBay. I'm going to do the following: 1) Grab the auction start date, and work out how many days have lapsed with this c#: string someDate = project.Variables["listing_start_date"].Value; // 1. // Parse the date and put in DateTime object...
  30. shabbysquire

    Calculating stock sales over certain period

    Thanks Lokiys, it's a good plan, but the data that I download from eBay doesn't include the last sale date - only when the auction went live.
  31. shabbysquire

    Calculating stock sales over certain period

    A unique problem that requires calculation, but I'm stumped in how to come up with a solution. I sell items online and need to find a way to delete items that are selling, but not doing very well over a certain time period. For example; if an item sells once every 30 days (say twice in 60...
  32. shabbysquire

    HTTP Get question

    When I keep scraping a site, I sometimes get captcha messages via HTTP Get. Is it possible to create a browser instance, solve captcha, then continue Get? I need to save the cookie, so that I can reuse it next time. Thanks.
  33. shabbysquire

    uBot review - Why it sucks

    Just a general post re uBot. Feel free to delete this if it doesn't add anything to the forum. Been working with this piece of trash for the last month, or so. Man, it sucks donkey balls. Unlike ZP, you can't even perform basic functions with .txt files, ie grab a line and then delete it...
  34. shabbysquire

    Xpath builder?

    Instead of using a regex builder, can we use an Xpath one? I find Xpath is more laser targeted (compared to regex). Just a thought.
  35. shabbysquire

    Recaptcha audio solve 2captcha

    Tried Google Translate, but it loses alot of meaning.
  36. shabbysquire

    how use content from http GET request?

    I use to enable it during debugging, to ensure everything was ok. Then disable it.
  37. shabbysquire

    Forum registration

    The other issue is that a forum built using, say, vBulletin, may have different set ups and various extra fields that other forums don't. This will trip up ZP.
  38. shabbysquire

    how use content from http GET request?

    Maybe he means on the fly, or while ZP is running?
  39. shabbysquire

    how use content from http GET request?

    Try this.
  40. shabbysquire

    Date puzzle

    Man, that's what it was. Now working like a dream! :D
  41. shabbysquire

    Date puzzle

    Just tried it on 5.9.8.0, but exactly same errors in ZP: String was not recognized as a valid DateTime. Strangely enough, it works in PM for both versions. Is it possible to use JS instead of c#? Anyway, here is the c# that I'm using: string someDate = "{-Variable.listing_start_date-}"; //...
  42. shabbysquire

    Date puzzle

    Ok, won't work in ZP with any date format. I've also tried: 17/05/2016.
  43. shabbysquire

    Date puzzle

    Update: It works ok in ZP with: 17-May-2016 (year must be full, not just: 16).
  44. shabbysquire

    Date puzzle

    The c# worked ok in PM, but in ZP it keeps throwing up: String was not recognized as a valid DateTime. I think I should change the format from: 17-May-16 to one that ZP recognizes, ie: 17/05/2016
  45. shabbysquire

    Project maker insane lag

    How does this speed up ZP?
  46. shabbysquire

    Date puzzle

    Hey Lokiys, that right there is the shizzle! 8-) Works perfectly.
  47. shabbysquire

    Date puzzle

    Just a question re dates, and how to calculate the number of days that have lapsed. I download a .csv file, and the date format is always: 01-Dec-15 Is it possible to 1) Get ZP to understand the date? Maybe regex it, and then put it into a format that ZP understands. 2) Then work out how...
  48. shabbysquire

    Capmonster or paid service?

    I too am stumped with this (not able to put it together). If someone is willing to create a solution, and sell it in the marketplace, I'd be willing to pay (and sure others would too).
  49. shabbysquire

    Help required solving google Recaptcha

    Thanks rostonix, but the info on the DBC site goes over my head! I've PM'd someone here, and see if they can perform this task.
  50. shabbysquire

    Help required solving google Recaptcha

    I see, I don't know how to create a template to use DBC API. Maybe I'll ask them directly and see if they know of one (they are familiar with ZP). How does Capmonster cope with the new generation of captchas?