-
Content Count
603 -
Joined
-
Last visited
-
Days Won
52
Everything posted by deliter
-
here is the playlist url https://www.youtube.com/playlist?list=PLBS2_VJs2CPZSWZdQLMKbtx2Yd9P5sfxX
-
Ubot has not changed since then I suggest YouTube "Automation League Ubot studio" that got me started, short video series but it is excellent
-
the target="_blank" is the problem, it opens the link in a new window, either scrape the href and navigate to there, or change the target value to nothing, with "change attribute"
-
How To Get @font-Face Icon Fonts To Render Inside Of Ui Html Panel
deliter replied to PRO's topic in General Discussion
yes Jquery should always be put at the end also other jquery plugins, after the jquery, as the jquery needs to be loaded before the plugins can work -
No just the URL decodeI think, which is in the ubot socket commands, or Ayman has a http text encode function if you do not have the socket commands
-
also this if you want to use ubot selector tools on the http data http://network.ubotstudio.com/forum/index.php/topic/20577-use-ubots-scraping-tools-with-socketayman-http-gets/
-
You try this method http://network.ubotstudio.com/forum/index.php/topic/20500-asynchronous-http-gets-when-logged-into-a-site-from-ubot-browser/
-
sorry for the tone of that, I can see what you mean
-
Sorry Im not looking to make a clone or real alternative to Exbrowser, I probably will not make any more adds to this, I just needed it
-
heres another example plugin command("DeliterCSS.dll", "In New Browser Chrome", "") { plugin command("DeliterCSS.dll", "Navigate Chrome", "http://www.google.com/") plugin command("DeliterCSS.dll", "Chrome Wait For Element", "#lst-ib", 10) plugin command("DeliterCSS.dll", "Type Chrome", "#lst-ib", "ubot studio") plugin command("DeliterCSS.dll", "Click Chrome", "[value=\"Search\"]") plugin command("DeliterCSS.dll", "Chrome Wait For Element", "#foot", 10) alert($plugin function("DeliterCSS.dll", "Deliter CSS Selector", $plugin function("DeliterCSS.dll", "Chrome Page Sourc
-
yeah, though it doesn't have even close to the features that plugin offers, I just needed to use a chrome browser for a project, and made the commands that I would need to accomplish that Run Javascript Type Text Switch Frame Click Wait For Element I new Browser Navigate Eval Page Source
-
I'd suggest to read the forum, this question pops up from a newbie about every month, the reason it has been requested so much, and has never been implemented is because far better solutions already exist
-
Hey Its pretty basic, I designed for my own use, will keep you posted if I add anything else or fix the things that do not work https://1drv.ms/u/s!AgO9AudYbciJheoHbEYsVRJrOkmn0w You will need to download the chromedriver.exe from https://chromedriver.storage.googleapis.com/index.html and store it in C:\Program Files (x86)\UBot Studio 5 plugin command("DeliterCSS.dll", "In New Browser Chrome", "") { plugin command("DeliterCSS.dll", "Navigate Chrome", "http://www.google.com/") plugin command("DeliterCSS.dll", "Chrome Wait For Element", "#lst-ib", 10) plugin command("Delite
-
you can do this with the commands features ubot provides built in
-
I havnt checked the site but heres a few things, I have checked the picture you uploaded set(#var0,$scrape attribute(<innertext=92>,"value"),"Global") this code is actually looking for an attribute called value, and not actually looking for the innertext inside the tag the code for this is <span>92</span> for the above code to work, the html would need to be <span value="SpanValue">92</span> the result of your above would be "SpanValue" as that is the value of the value attribute of the element that has an innertext of 92 your code above needs to be
-
if you want to make apps like ubot that have a web browser built in and you drive the web browser from outside of it, like Ubot, then C#, Ubot is also built on C# I think C# over Python, to elaborate on HelloInsomnias answer, the intellisense added by Visual Studio, is absolutely amazing, really really incredible I cannot code in C# but I built a Ubot plugin for it which is available to anyone here, the intellisense just guided me through, it tells me instantaneously why code will not work, and tells me what properties an object has, was an amazing experience, but it does look incredibly d
-
Had two jobs on both, it just gives me an error, including adding a photo to a business on google maps, any solutions? Chrome 21 is no good as google limit its features on google maps so I have to use 49, have tried a few user agents too thanks
-
Nice ideas will add these features later today and also a way to dynamically insert a full html table from your Ubot Table too It appears Ubot has blocked me from starting threads in the free bots/plugins thread, so I am awaiting the outcome as to why this is
-
Heres a full replica, I have been meaning to make some UI Table commands for the community, I guess I might make a start on it, on this you can select the row, give it a color and a message, just like the UI above, and the delete button works too ui html panel("<!DOCTYPE html> <html lang=\"en\"> <head> <title>Bootstrap Example</title> <meta charset=\"utf-8\"> <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"> <link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css\"> &
-
making a bot to have access to your money... as someone who's made 100's of bots, I think this is a very bad idea
-
Error With Youtube Channel Operations (Load More Button)
deliter replied to steelersfan's topic in Scripting
Thanks man, very flattered you really appreciate it and are trying to learn from it, I like helping people, kind of sucks when someone just copy pastas your work, doesn't "like" the post, nor tries to learn from it the second part "moreUserVideos" is basically like if you were doing it manually, it hits the load more button, scrapes the titles, then the last thing is it checks if the load more button is present, if so, it keeps calling itself "moreUserVideos" to do that process again until the button is there no longer,if not present do nothing if you want to start learning CSS Selectors, -
Error With Youtube Channel Operations (Load More Button)
deliter replied to steelersfan's topic in Scripting
use the script I posted above that , it doesn't use his parser, not as good but its still fine, but change the code to not delete duplicates in the titles list, I forgot to do that -
Error With Youtube Channel Operations (Load More Button)
deliter replied to steelersfan's topic in Scripting
Just run the code above, and check the titles list in your debugger, no need to understand it really when you loaded you'l see an input for whatever youtube channel you want to scrape, it has yale loaded in there now