Jump to content
UBot Underground

db00

Fellow UBotter
  • Content Count

    50
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by db00

  1. Filtering doesn't seem to be working . These expression won't bring up nothing

    set(#BookswithISBNnumber,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$..book[?(@.isbn)]"),"Global")
    set(#CheaperThan10Books,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$..book[?(@.price<10)]"),"Global")

    set(#LastBook,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$..book[(@.length-1)]"),"Global")

    set(#Priceis899,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$..book[?(@.price==8.99)]"),"Global")

    set(#Morethan10price,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$..book[?(@.price>10)]"),"Global")

    The expressions used above seem to be working in http://jsonpath.com/?

     

    all the code below

    set(#testdata,"\{ \"store\": \{
        \"book\": [ 
          \{ \"category\": \"reference\",
            \"author\": \"Nigel Rees\",
            \"title\": \"Sayings of the Century\",
            \"price\": 8.95
          \},
          \{ \"category\": \"fiction\",
            \"author\": \"Evelyn Waugh\",
            \"title\": \"Sword of Honour\",
            \"price\": 12.99
          \},
          \{ \"category\": \"fiction\",
            \"author\": \"Herman Melville\",
            \"title\": \"Moby Dick\",
            \"isbn\": \"0-553-21311-3\",
            \"price\": 8.99
          \},
          \{ \"category\": \"fiction\",
            \"author\": \"J. R. R. Tolkien\",
            \"title\": \"The Lord of the Rings\",
            \"isbn\": \"0-395-19395-8\",
            \"price\": 22.99
          \}
        ],
        \"bicycle\": \{
          \"color\": \"red\",
          \"price\": 19.95
        \}
      \}
    \}","Global")
    set(#AuthorOfBooksOnly,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$.store.book[*].author"),"Global")
    set(#AllAuthors,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$..author"),"Global")
    set(#AllStoreThings,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$.store.*"),"Global")
    set(#PriceOfEverythingInstore,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$.store..price"),"Global")
    set(#ThirdBook,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$..book[2]"),"Global")
    set(#LastBook,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$..book[(@.length-1)]"),"Global")
    set(#LastBook2,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$..book[-1:]"),"Global")
    set(#First2books,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$..book[0,1]"),"Global")
    set(#First2books2,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$..book[:2]"),"Global")
    set(#BookswithISBNnumber,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$..book[?(@.isbn)]"),"Global")
    set(#CheaperThan10Books,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$..book[?(@.price<10)]"),"Global")
    set(#AllElementsInJson,$plugin function("JSONpath.dll", "$JSONpath parser", #testdata, "$..*"),"Global")

  2. Hey fellas, 

     

    Need some help in  adding data into a google doc spreadsheet, dropbox paper , zoho, or other similar system.

     

    atm with google spreadsheet Ubot's browser is crashing with Chrome 39.

    https://tracker.ubotstudio.com/issues/1054

     

    but with dropbox paper or zoho, seems alright. but I still can't add data into it. 

     

     

    1. I did find an alternative:

    http://www.portailseo.com/macros-seo/how-to-grab-data-with-imacro-scripts-into-google-sheets/

     

    making a google form, posting data into it, and set it to link that data in a google spreadsheet > publish to web. ( data will be added in the spreadsheet one row after another... and I don't need old values...

    I could use limit 1 post per user, and just edit that data)

    But I'd like a normal way of adding data into it . 

     

    2. tried to add data via copy paste... tried a few plugins but seems there isn't a command for Paste, just a function to read paste data... and with Type Text it won't work correctly ( it won't save the format, it will add all the data just in 1 cell), while Pasting manually ( ctrl + V) works just fine, adds the data in all the needed cells.

     

    3. played around with keyboard event . ctrl down , key V press. Didn't had much success with it, also its annoying having to focus the file with the data, select all, copy > focus ubot browser paste data

     

    4. Google spreadsheet + exbrowser replace element with clipboard seems to be working, but I'd like a standard ubot method

     

    Thank you

  3.  

    >> ExBrowser Captcha Tutorial<<

     

    A lot have asked for it, here it is.

     

    Covers regular captchas

    Covers the NEW Google Recaptcha

     

    >>Click here to watch the video<<

     

     

    1. Hey, in order to use your browser and to solve google rechapcha (4-16 boxes) do we need other paid plugins (Advanced Image) ( I saw on your list that you activated just the free rechaptcha plugin) ?2.

    2. I saw that your browser supports http proxies, does it support socks 5 proxies? ( ubot's browser doesn't)

×
×
  • Create New...