Jump to content
UBot Underground

cob007

Members
  • Content Count

    352
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by cob007

  1. I wanted to take a screenshot, that's why I opened it to show all parameters I added in inside. Let me record a video for it, i am sure im doing something wrong but I did exactly what video showed.
  2. Hi dan, Thanks, the example below worked for me for the query i asked you, but when I tried as per screenshot according to the video (xpath plugin tutorial) of how to use generic xpath parser nothing was returned as u see in screenshot.
  3. Hi dan, To give you a real life example, see the screenshots as below.. I am trying to scrape the videos which have ads beginning in them, 2. Which have a optin box showing up. So my bot will tell which videos have ads or which videos have opt-in box. Now the exbtrowser loops through a list and play each of these youtube videos..... while looping it scrapes the informaton of videos which have ads or optins Now I am using the xpath expressions for these as: //div[@class=videoAdUiAttribution] and 2. //a[@class=iv-promo-txt iv-click-target] Now the xpath expression worked fine but not a
  4. To give u an example. xbrowser is going in a loop to list of youtube urls and scraping the vidoes which have ads beginning in them using xpath //div[@class=videoAdUiAttribution] the scraping is working fine but what if a video does not have ads, it does not return an empty item for that video oto the list, so the synchonozing is wrong. Actually you had recorded a video for this somewhere in the forum replying to somebody but I dont seem to find it. I cant find it in members area as well. So can you show me that video again
  5. Hi dan, You had created a video somewhere where you shwoed how to make exbrowser return an empty item if nothing is to be scraped , because currently in my bot it is not returning an empty item while it is looping through a list of youtube URL's. So if for a particular URL there is nothing to be returned it should return an empty element so that list column stays consistent. I think you recorded a video for that if im not mistaken.
  6. I know this a old post but can somebody tell me what will be the javascript or jquery code to get the colour picker to choose colour in UI?
  7. Hi dan, I ran into a unusual issue bcause of youtube changing html. You had created a video on howtocode xbrowser in of your videos where you scrape the youtube URL and the xpath for that is: x://h3[@class=yt-lockup-title]/a This worked fine for 15 days or so until my bot stopped scraping the title URL, so on checking my bot program, I had to change xpath to x://h3[@class=yt-lockup-title contains-action-menu]/a Now all of sudden when I checked today the new xpath didnt work So I had to revert back to; x://h3[@class=yt-lockup-title]/a So now the software is working again wi
  8. Can this work with stripe? I am planning to integrate stripe for payment processing, as soon as someone purchases, I want to be able to create same license key and same license email for one buyer for all the softwares in the store.
  9. Hi dan, Thanks for all fast customer support, one question I wanted to ask is can a website come to know that some automation is going on and people are using the website to get some data if i distribute my software to lot of customers using exbrowser plugin? For example let us say we have a website like xyz that allows to scrape tags and and lot of people use their bot programmed by me with exbrwowser to get data using headless browsing i.e phantom JS from the website , so can the website owner know in any way that some sort of automation is going on?
  10. Okay,the same thing is happening with twitter as well? I have asked the question here; http://network.ubotstudio.com/forum/index.php/topic/19355-twitter-connction-issue/ And are there any tutorials on how to use fiddler with phantom JS?
  11. Hi dan, I am able to use exbrowser in incognito mode in chrome( because else fb shows shows a pop-up to enable or disable notification) to post a status update fb. However on switching to headless browing in phantom it didnt work... This is the code which works with chrome but doesnt with phantom, what could be issue. ui text box("Username",#Username) ui text box("Password",#Password) plugin command("ExBrowser.dll", "ExBrowser CleanUp") plugin command("ExBrowser.dll", "ExBrowser Launcher", "Chrome", "", " {$plugin function("ExBrowser.dll", "$ExBrowser Incognito Mode")}") plugin command("E
  12. Okay i was able to get to post update woth chrome but then ive to run it on incognito mode or else the chrome facebook status notification appears. but if i try to do same thing with phantom js it doesnt work
  13. Hi TJ, I followed your video and also was able to get the exbrowser to post tweet with CHROME as well but as soon as I switched to phantom JS it is not posting tweet. You can see my code below. I even changed the user agent to mozilla firefox and it still didnt post the tweet with phantom JS. What could be the issue? ui text box("Username",#Username) ui text box("Password",#Password) plugin command("ExBrowser.dll", "ExBrowser CleanUp") plugin command("ExBrowser.dll", "ExBrowser Launcher", "PhantomJS", "", $plugin function("ExBrowser.dll", "$ExBrowser Set User Agent", "Mozilla/5.0 (Windows
  14. I am having trouble finding the xpath for status update, Do you guys now what will be xpath for writing a status update?
  15. thanks TJ and pash that worked.Iam trying to find a command that clears the log file, so that it doesn't overwrite it each time but starts fresh but unable to find any command.. How do you clear a file that is in your hardrive as log.txt?
  16. Hi TJ, I used as you said the command like this but it still didn't work: I even added a 2 second wait, I am looping for each list item and adding log file for each list item. set(#thumbs,0,"Global") loop($list total(%thumbnails)) { plugin command("Advanced Systems.dll", "create custom log file", "Thumbnails", " Success : {$list item(%thumbnails,#thumbs)}", "{$special folder("Desktop")}\\test.log") wait(2) increment(#thumbs) }
  17. Hi pash, Sorry I was not clear.. What I meant was... I used your command like this in image... It only prints time and success only for the first list item. For remaining list items it is not showing success or time. Thumbnails 06/12/2016 20:08:59: Success : https://i.ytimg.com/...bA/hqdefault.jp [Note: time and success is showing only for first list item,,) https://i.ytimg.com/.../maxresdefault. [ Note: remaining list items are not having time or success appeded to them) https://i.ytimg.com/.../maxresdefault. So if i have scraped a list of items and i want each list item
  18. Hi pash, after scraping a list of thumbnails and using your command like this to create log file, the time is shown only for the first image and after that no time is shown for remaining images. plugin command("Advanced Systems.dll", "create custom log file", "Thumbnails", " Success : {%thumbnails}", "{$special folder("Desktop")}\\test.log") ========================================================================================== Thumbnails 06/12/2016 20:08:59: Success : https://i.ytimg.com/vi/JvnABGut5bA/hqdefault.jp https://i.ytimg.com/vi/r39Fqh2sNPg/maxresdefault. https://i.ytimg.
  19. I wanted to confirm the above method worked for me as well. Thanks pash and everyone for help
  20. can we create log file like the attached image using this plugin?
  21. Hi CJ, Thanks a ton. I did use a event button but still the right-click datagrid open URL did not work, can you share code of what u did exactly if at all its okay with you.
  22. Thanks CJ, I hope its sorted as I dont want to add another button inside UI
  23. I have 2 datagrids attached to my XAML UI. The datagrid context menu function of opening a URL(right-clicking and open URL) is not working with XAML UI. Also the delete rows is not working. Is anyone else facing this issue? define open_website { shell("cmd.exe /c start {$plugin function("DataGridUI.dll", "$datagridUI get value", $plugin function("DataGridUI.dll", "$datagridUI selected index"), "URL")}") }
  24. Hi itexpert, I tried to find your twitter thread but I couldn't find it, so I am replying here. Moreover I sent you a PM almost a week back, regarding issues with twitter software and updates needed for both twitter and linkedin for which I haven't received any reply. So I would appreciate if you can look into it and get back , I can even record a video showing the issue. Also thanks for putting up great products and helping ubot community.
×
×
  • Create New...