Jump to content
UBot Underground

ugakebet

Fellow UBotter
  • Content Count

    235
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by ugakebet

  1. Hi guys, I'm not sure if anyone has been able to do this.. But I have been trying to scrape Insta insights using the Content Studio option provided by FB.. I've taken a screenshot of this (though you might have tolog in via your own account to see the HTML code and stuff) The problem I'm having with this is as follows: 1. Lazy load - When first loaded, uBOT only picks up the posts that are visible on the screen due to lazy loading. But if I scroll down either manually (or via run javascript("window.scrollTo(0,document.body.scrollHeight);")), what happens is that the top half of post
  2. Hey guys, Does anyone have a video tutorial for how to use the popups (Allow, No, In New window)? I am having trouble in loading the popups for websites that have the FB/Gmail login option. In Firefox when I click on FB or Gmail login it loads a popup window, but in uBot it must be happening behind the scenes because nothing happens in the main uBot interface. So do I get to visually see the popup loading in uBot or something? Any help would be greatly appreciated... This is the website I was trying https://organizer.eventshigh.com/app2/#/app/add/
  3. Hi all, I'm trying to upload an image to this site https://allevents.in/manage/create.php?ref=cityhome-topbar, but for some reason the Open dialog box shows up in regular Chrome, but not in uBot (neither thtough scripting nor if I manually click it). Note to get to the image upload section you'll have to fill up some dummy details in the above link & then click CONTINUE & log in via Google (I haven't tried logging in via the fb option). This will take you to the second page so that you can try uploading the image
  4. Hey, So finally got some time to reply back... So #1 i.e. the image, you can see it without logging in though Google.. just click on the create event button at the top right & you should come to this step. Here is the code that I'm using as my workaround I mentioned in my first post. I use a table so you would have to edit that bit etc... Also for reference below is a sort of the table Im using so you get an idea of what I have as the date bit (notice how I type it as 155 & then via uBot delete out the last '5' This is a demo 2019/12/155 if($exists(<innertext="PUBLISH YOUR EV
  5. Hey Buddy, Thanks for getting back to me - I shall have to try out the code you gave for #2 and will let you know. For #1 guess I wasn't very clear on that. Is the box where you select the date for the event. I have added in an image below. What happens is that the todaysdate is automatically populated in it so I was under the impression that if I wanted to change the date, I could either use the type text funciton or the change attribute to $nothing function so that it gets cleared out. Post the text box is cleared, type in the new date from my csv. But this doesnt work. I also tried to d
  6. Hi folks, I've been away for a while, but tried my hand at uBot again and am having some problems with the site https://allevents.in/ (you'll have to sign in if you want to test any code) 1. The first issue I'm having is where it mentions start_time. I'm reading the values from a table (ex - 2019-11-13) & tried the change attribute value to $nothing / the type text to $nothing and neither of them work. The workaround I have is looping the backspace/delete keys so that any previous text in the box gets deleted out. But then the next issue is when I type in the date by using $table cell,
  7. Hi team, I’m creating a rather simple Instagram bot, but am getting a bit stuck, with the below queries. What I’d like to do is: Search through the posts shown on my Instagram homepage, and for the first 15 items IF {less than 500 likes / views} THEN Click the heart (like) button AND Comment on the postI’m not quite sure on how to scrape the “class” attributes of Instagram to create a list and then cycle through them. For instance, from the below image, each post has a class called “article”, but is there a way I can tell uBot to start with the first “class article” then see if the likes/views
  8. Hey thanks both for replying to me. @Buddy, that was so epic, I am completely clueless of what you spoke ( don't worry, Im going to go over it word by word and understand this completely!) Glad that you mentioned structured programming practices
  9. Hi guys, I have the follow code from a website, and I am trying to get ubot to scrap all the mentions within the red box? Any ideas how I would go about this?
  10. I'm surprised that i don't know about this (guess i must have forgotten about it) Can someone point out what I'm doing wrong here? if($search page("No ideas were returned for your query") OR $search page("You must enter at least one keyword, category, or web site")) { then { alert(1) increment(#row) clear list(%list1) } basically, the ELSE statement should start since none of those 2 texts exist, however the ALERT 1 is always generated? What's wrong? If I try single search (rather than multiple - search for only No id
  11. I dont see what is the difference with what I wrote, but I'll give it a shot
  12. That's why I mentioned that I substituted the run javascript with the WAIT command, which didn't get executed either. I think there is a problem in the If else statement?
  13. Hey guys, this is my code if($search page("You must enter at least one keyword, category, or web site")) { then { run javascript("alert(\"POP\");") } else { run javascript("alert(\"POPelse\");") } } But none of the alerts activate? What is wrong? Either POP or POPelse should pop up, correct? I tried to replace alert with the WAIT function, so wait for 20 seconds if ...... happens, but still neither the THEN, nor the ELSE runs?
  14. I know this might be huge, but wanted to know what logic structure to follw: I have a huge excel sheet with many columns. Some of the words in each column contain places (San Diego, phoenix, Mumbai, Rio de Janeiro,Manchester, shanghai). I need to use ubot to determine which of these phrases within the excel file are places (not countries, just cities, towns etc) and either highlight them or delete them. I was thinking that the best way would be to break up each cell into the words that it contains and then have ubot search wikipedia for them (high probability wikipedia would have the n
  15. MySQL.. that seems interesting. but Isnt mysql also similar to an excel sheet? I would then have to create 100 tables for the main KW's, correct?
  16. What do you mean by reference? Do you mean each KW would be on a new sheet in the excel file and then the 1st sheet would contain hyperlinks to these other tabs? There simply has to be some other way in which it becomes possible to save these KW's.. Think ugakebet.. think!
  17. Thanks Aymen, any idea how I could communicate with the mysql database, especially after it is on my VPS? Tell me, since I see that you have created many bots over time, do you think this is something that seems really feasible? As in, is it something that you would create. The way I see it, there is quite a lot that needs to be done, registration on forums/clicking the verification emails/ - (basically stuff that xrumer would do); similarly has to be done for social bookmarking websites. Then if I want blog commenting, that needs to be incorporated in as well. Hey Kev, thanks for t
  18. I was thinking about creating an online service for links (similar to drip feed blasts). What all would be required to create this, or is this something that uBot simply doesn't have the power to do and I should outsource it?
  19. Hmmm, but I wanted to know whether there any other way to do that! Creating folders for each main KW, is not at all feasible. Consider that I have 100 main KW's that would mean 100 folders. That is way too much. How do you guys go about the automation of KW research bots? Do you guys not save things in such tree structures?
  20. http://docs.oracle.com/cd/E19455-01/806-2901/images/fmroottree.tiff.gif The above tree structure is what Im trying to achieve in a file (as a sort of reporting system based on what data ubot pulls in) Simply put, I have 1 keyword (like the HOME folder in the img). ubot uses that KW to scrape another 4 (fish, freshwaterfish,new folder,oceanfish in the pic). Then it uses thosenewly scrapped KW's to scrape new ones (bait and seafood in the img). My question is how would I go about saving this in a csv file.Initially i thought that HOME would be in csv cell A1 (remember that this image only
  21. I have a question about this. I have 3 tabs, I want to run tab 3 from the second tab. Now I put everything of tab 3 in a 'define command' function, but it asks me for parameters also? (why do I need that) All i want is something simple, so that from tab 2, after a certain point it would run tab 3, then once that is finished, it would continue with the remaining portion of tab 2. (similar to sub/run sub from the earlier versions of uBot)
×
×
  • Create New...