Jump to content
UBot Underground

nichewebstrategies

Fellow UBotter
  • Content Count

    22
  • Joined

  • Last visited

  • Days Won

    2

nichewebstrategies last won the day on July 29 2016

nichewebstrategies had the most liked content!

Community Reputation

12 Good

About nichewebstrategies

  • Rank
    Member

Profile Information

  • Gender
    Not Telling

System Specs

  • OS
    Windows 10
  • Total Memory
    4Gb
  • Framework
    unsure
  • License
    Developer Edition

Recent Profile Visitors

2783 profile views
  1. If you are interested in a JavaScript only solution, give this a try: ui html panel("<!DOCTYPE html> <html> <head> <script type=\"text/javascript\" src=\"http://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.0.min.js\"></script> <script type=\"text/javascript\" src=\"https://cdn.jsdelivr.net/clipboard.js/1.5.12/clipboard.min.js\"></script> </head> <body> <textarea data-clipboard-text=\"\" id=\"txtWords\" cols=\'50\' rows=\'10\'></textarea> <button id=\"btnReplace\">Replace Words&
  2. What you are saying is that instead of passing in the Document HTML from the built in browser via a variable to your plugin, you want to access the browser document HTML directly from the custom plugin that you are writing, correct? Looking at the plugin API, there is no way to access the browser HTML directly in a custom plugin using the plugin API. That is something basic that needs to be made available via the plugin API in my opinion. That said, it might be possible to walk the WPF object tree and gain access to the browser object and retrieve it, but that is a pretty advanced topic an
  3. Yes, I just noticed this today. Not good. As soon as the compile process completes, Kaspersky deletes the file saying its a Generic Win32 Trojan.
  4. If you are selling bots and need to test how it works on different operating systems you can take advantage of Microsoft's Free Virtual Machine program. You can download Windows XP, Vista, Windows 7 and Windows 10 virtual machines here: https://dev.windows.com/en-us/microsoft-edge/tools/vms/windows/ You will save yourself some headaches and support requests by doing a little testing ahead of time.
  5. Are you a developer? If so, you can code your own Firefox/Chrome integration using Selenium. http://www.seleniumhq.org/ I believe the other plugins that you mentioned are powered by this toolkit. It's the only way that I know of to add the functionality you are wanting to UBot.
  6. Hey Frank, You will want to take a look at SQL.js to accomplish this. https://github.com/kripken/sql.js I've used this, but not in UBot. The challenge is loading the db file and saving the db file and I had to use the persistent database example to make it work for my project. I don't think that method will translate well to UBot though. https://github.com/kripken/sql.js/wiki/Persisting-a-Modified-Database Take a look at the web worker example as I think that will be the best bet unless you are using node.js. Hope this helps.
  7. Just a heads up. If you are planning on code signing your ubot exe files you may be in for a surprise. I've tried signing basic bots using my code signing cert and they don't execute after the signing process. No error, no message. They simply don't work. If I build a custom c# app and code sign it, everything runs as expected, no issues. I'd be curious if anyone else has run into the same issues and if it is even possible to get it working.
  8. Are the UPC or item stock numbers available and consistent across all sites? That would be one way that you could link the products together without having to match on product title which is going to be extremely hard to do.
  9. Give this a try.... navigate("http://ushomeworkforce.com/rss/index.htm","Wait") wait for element(<id="menu">,"","Appear") change dropdown(<id="menu">,"Random") wait(3) set(#theURL,$scrape attribute($element offset($element child(<tagname="h4">),0),"fullhref"),"Global") Adjust the wait time as needed.
  10. If you don't mind me asking, how are you reaching buyers? Do you have a large list you send offers to on a regular basis or do you create review web sites and offer your bots as a bonus from there? Social media promotion (twitter, facebook, etc.)?
  11. At the bottom of the page, there is a dropdown box that shows the number of pages that are available. The value attribute of each option in that dropdown has the url for that particular page. What I would do is use the following code to grab those urls and put them in a list, then you can loop through the list and navigate to each page to grab the data. add list to list(%pages,$scrape attribute(<value=w"/en-gb/auction-catalogues/1818-auctioneers/catalogue-id-sr1810075/search-filter*">,"value"),"Delete","Global") Hope this helps.
  12. I'm putting together a tutorial website centered around web automation, but a big part of that will be based on UBot. I've created 4 tutorials on how to create UBot plugins which seems to be a pretty popular topic these days. Most people don't know how to get started and what software is involved so hopefully this will help those who want to learn get started. Let me know if there is a particular concept you would like for me to focus on for upcoming tutorials. I'd much rather write tutorials around what people want to see or want to learn about. http://www.webbottutorials.com/
  13. Step by step tutorials with more to come. Starting with the basics now, but more complex/real world examples are on the way. How to Create Ubot Plugins
×
×
  • Create New...