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

  1. 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.
  2. 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.
  3. 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.
  4. 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.
  5. 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.
  6. 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.
  7. 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.
  8. 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?
  9. 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.
  10. 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...
  11. 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...
  12. 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...
  13. 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.
  14. 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...
  15. 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.
  16. 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...
  17. 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.
  18. 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...
  19. shabbysquire

    Check for text presence issue.

    Re latest ver: 5.9.9.0 When I highlight any text > check presence of text, nothing displays in the box.
  20. shabbysquire

    Using regex to point to a table file?

    I have a csv downloaded to a folder everyday, but the file has a different name. In tables file path, can I use a regex to point to the csv file? I've tried, but it doesn't seem to work.
  21. shabbysquire

    General question re third-party SMS services in Zenno

    Does anyone in the UK have any experience with the SMS services in Zenno? With sites like: SMS Activate, SMS-Reg.com, etc? I've asked the site owners some questions, but hoping to get any feedback here.
  22. shabbysquire

    How to divide list total number?

    I'm looking to count the no of lines in a list, then divide it by 50. How can I achieve this? Thanks.
  23. shabbysquire

    Emulate a mobile browser

    So I need to emulate a mobile browser. Is it enough to just set UserAgent parameter to a mobile browser (ie iphone 6), or are most sites need other info to convince them I'm using a mobile? Update: tried to input a mobile UA into Reassign Profile (under value), and save, but when I reopen, the...
  24. shabbysquire

    Wanted - paid work for regex issue.

    I need someone to compile a regex for ZP, and am willing to pay £20 (Paypal gift) to whoever completes it, and provides the correct regex that works with ZP. Some guy on Fiverr was unable to do it, so looking to the finest in this forum to have a shot. :D Ok, so if you look on this Amazon...
  25. shabbysquire

    Trying to match up words

    Facing an issue with matching words to product titles. I'm scraping a site for the product titles, ie: 'Bamboo 8 piece kitchen knife set'. I have a list of 100 banned items that I need to compare to the product title. So if the banned item is: 'kitchen knife', how do I compare it? Some banned...
  26. shabbysquire

    Handy tip if you're working with HTTP GET request

    Just a simple tip re: HTTP GET request, it's sometime difficult to see what page you're getting (sometimes the wrong page, or errors, or decaptcha triggers, etc). I just copy 'n' paste into this website. And view the page:
  27. shabbysquire

    How to assign correct profit margin?

    I need to add a certain profit margin to various prices, i.e. £1 - £20 Add £2 profit; £20.01 - £50 Add £3.50 profit; £50.01 - £100 Add £5 profit. I'm able to calculate the profit ok, but what's the best way to check the price brackets? i.e. check if £17.55 will go into £1 - £20?
  28. shabbysquire

    Table bug.

    Issue with latest build. Read all about it here. Works ok with build: 5.9.7.1 Update: now it doesn't work with 5.9.7.1
  29. shabbysquire

    Text processing issue

    In latest build, I'm experiencing issues with action: text processing. Due to pulling data from a csv file (related to this issue), the prices come with random characters which I clean via text processing: When doing it via text processing, it has a habit of missing some of the price data...
  30. shabbysquire

    Extracting relevent data from a CSV file?

    A bit rusty with table processing, so looking for some advice. I have a CSV file with approx 10 columns, but I only need to extract the data from 4 columns, like this: And in table processing, I thought I could match up the CSV columns (A, B, F, I), like: But when I get a new line, all...
  31. shabbysquire

    Wanted - someone to develop user interface

    I'm looking for an experienced ZP user to do some paid work for my project. I need someone to develop a user interface that will be used for my upcoming bot. The interface is where the user can input their own values. For example, the bot will scrape a price from a website, then add 10% on top...
  32. shabbysquire

    [Resolved] PM - issues with c# action

    PM v.5.9.5.1 (latest). Ok, so I started a thread re a solution to an problem, which you can read here. So every time I add the c# action, I add in my (price) variable into it, like this: double price ={-Variable.amazon_price-}; double percent =13.5; double total = price+price*percent/100...
  33. shabbysquire

    Can ZP calculate percentages?

    Would like to know how to get ZP to calculate percentages. i.e. I need to take a price, then add, say, 13.5% to the total. Is this possible?
  34. shabbysquire

    Minimum VPS specs for ZP?

    Tried to search the ZP forum, but couldn't find an answer. What is the min requirement to run ZP with max of 5 threads? Also, can you recommend a decent UK provider? Thanks.
  35. shabbysquire

    Anyone recommend decent back connect proxy provider?

    As per the title. Just need a provider that changes them quickly, and the proxy speed is fast enough.
  36. shabbysquire

    Issue with text processing > replace via regex

    In latest v. 5.9.5.1 Just stumbled on an issue with text processing feature. I use regex to replace spaces with: +, i.e. how to fish, ends up as: how+to+fish. (This is used as a search string in a url). It works fine in PM, but in ZP it screws everything up. Example: Via PM...
  37. shabbysquire

    Append to file in list processing

    Process files has append to file (save all on same line). Can we also have this feature in list processing? See my thread: http://zennolab.com/discussion/threads/list-processing-need-list-in-certain-format.22457/
  38. shabbysquire

    PM - settings never saved, and more issues

    Re the latest v5.9.5.1; In settings > debug, both: continue project execution, and executing project from start, are never saved properly (always have to tick boxes). Also in PM, play to next breakpoint is always ignored (project plays to the very end).
  39. shabbysquire

    List processing - need list in certain format

    I need a list of domains to be written in the format: domain.com, domain2.com, domain3.com, etc. It's important to add a comma, and to have all on the same line (not new line). I can't do this via: list processing, only using: process files > write text. But process files lacks features...
  40. shabbysquire

    HTTP GET - Auth IP

    Trying to set up (auth) IPs in HTTP GET, but can't get it to work. Can someone tell me the usual settings, so I know I'm on the right track?
  41. shabbysquire

    Regex: limit to the OR operator?

    In regex a list, is there a limit to max number of Or? For example: word1|word2|word3|word4|word5.
  42. shabbysquire

    List processing and remove by regex issue

    Not sure if a bug... In list processing > remove by regex, I use \W (capital w), which is opposite of \w which match any alpha-numeric character, digit, or underscore. \W wipes out all my data in the list - alpha-numeric. Slightly related; how do I regex all empty lines in list by regex? I've...
  43. shabbysquire

    Help with some regex

    Having some issues in crafting a regex, and hope for some advice. I'm scraping domains with the lookahead and lookbehind regex. Here is a sample domains to capture: http://domain.com/ https://domain.com/ http://www.domain.com/ https://www.domain.com/ And my regex...
  44. shabbysquire

    Windows 10 out soon. Any thoughts?

    As per title, will you be upgrading to Win 10? Also, will ZP work on this version?
  45. shabbysquire

    Math question - Percentage

    It's to do with list processing, and deleting a percentage of lines. For example, I count the number of lines, then if >20 (say 100 lines), then only delete 80%. Is this possible? Thanks.
  46. shabbysquire

    Actions designer - can't set value

    In PM 5.8.0.2 (latest), I can't set a value under action designer. Under set, there are only four options: id, inner html, class, style. Used to be value, but it's gone.
  47. shabbysquire

    Creating a new file?

    Just like creating a new directory, can we create a new file? I need to create a new file with my variable name, and also to overwrite an existing one. Is this doable?
  48. shabbysquire

    Issue with email limit

    I'm using a C# action to retrieve emails (code was taken from ZP forums), but I'm having issues with a limit. The Outlook inbox has approx 500 mail, but I keep getting the following message: Error ID: 01ac3260-fa72-4da2-85e9-30a03c16d48d I tried to adjust the 24*100, 1000, but no luck. The...
  49. shabbysquire

    Advice on Post action

    Just trying to get my head around creating new accounts via the Post action, but would appreciate some help. Here is my plan: 1) Use Get for the registration page, and grab the header for cookies, 2) Regex the cookies (to use in Post)
  50. shabbysquire

    Getting the image size?

    Is there a way to get the size of an image in my folder? I need both the height & width in pixels. Thanks.