Jump to content
UBot Underground

cjacobs

Fellow UBotter
  • Content Count

    30
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by cjacobs

  1. Not sure what changed. Took a break and came back this evening and now it's working. Thanks for your help Varo!
  2. I've tried that as well and still doesn't work. I've attached the csv file I'm working with. I set "Column to Check" = 7 "Desired Keywords" = owner I only get "Not Found" Any other ideas? Real-Estate-Brokers-Owners-CLEANED-1.csv
  3. I am trying to loop through a csv to check if table cells contain any of the specific text (#desiredKeywords) but am not having any luck. Can anyone see what I'm doing wrong? TIA clear table(&data) ui open file("Load CSV",#data) create table from file(#data,&data) ui drop down("Column to Check","0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26",#columnToCheck) ui block text("Desired Keywords",#desiredKeywords) set(#row,1,"Global") loop(5) { if($table cell(&data,#row,$contains(#columnToCheck,#desiredKeywords))) { then { ale
  4. I tried using both wait and wait for element but it's still not working. loop($table total rows(&LinkedIn Data)) { clear list(%reviews) wait(1) plugin command("ExBrowser.dll", "ExBrowser Click Special", "x://span[contains(text(),\"Messaging\")]") wait(1) plugin command("ExBrowser.dll", "ExBrowser Navigate", $table cell(&LinkedIn Data,#row,8)) plugin command("ExBrowser.dll", "ExBrowser Wait For Element", "x://h2[contains(text(),\"Recommendations\")]", "Appear", 30) plugin command("ExBrowser.dll", "ExBrowser Scroll To Element", "x://h2[contains(text(),\"Re
  5. Shoot! I forgot about that key! It's navigating fine but it's not scrolling to 'Recommendations' nor scraping when in Run mode. Stepping through works which is why I put the waits in but still not working.
  6. Hi Guys, I am wondering if you could analyze my code to see why it's not scraping a review from LinkedIn. If I step the bot through it, everything works. When I run it, nothing is getting scraped. TIA. ------- plugin command("ExBrowser.dll", "ExBrowser Set License", "YOUR-EXBROWSER-LICENSE-KEY") clear cookies clear table(&LinkedIn Data) clear list(%LI) ui open file("Load LinkedIn CSV File",#data) ui text box("Email",#loginEmail) ui password("Password",#loginPassword) create table from file(#data,&LinkedIn Data) set(#row,1,"Global") plugin command("ExBrowser
  7. Thanks Pash! I missed that! I tried so many different things I forgot to add that back. Still having trouble though, UBot keeps shutting down after it runs a few urls. No pattern really. Thanks again!
  8. Hi all, I building a backlink checker but keep getting "True" alerts on every url. Can you see what I'm doing wrong? Thanks, Cavin clear list(%URLs) clear list(%target) clear table(&data) ui text box("URL/Text to Find",#target) ui block text("URLS to Crawl",#websites) set list position(%target,0) add list to list(%target,$list from text(#target,$new line),"Delete","Global") set list position(%URLs,0) add list to list(%URLs,$list from text(#websites,$new line),"Delete","Global") add list to table as column(&data,0,0,%URLs) set(#row,0,"Global") loop($table total rows(&data)) { c
  9. This almost got me there but the Stop Script of course stops the primary loop. I need it to exit this 2nd loop if the condition (#maxresults) is met. Any ideas?
  10. Thanks for your input guys! Got it working using Sanjeev's code. Is there a way to set a maximum number of results it will return?
  11. Hi, Wondering if anyone could help me with a problem I am having. I am wanting to loop through a table and only scrape Cities if their latitude number (Column 5) is +2.00 more than the row (City) my app is currently on. So in the table below my original position (#row) is 0 (Adak with has a latitude of 51.88), and I want to scrape the next cities that have a latitude number up to 53.88 which in this case would be: Adak, Atka, Attu Station, Nikolski, Unalaska <img src="https://imgur.com/a/PUrFojF"> I can't figure out what I need to qualify (comparison, eval etc) and extract the cit
  12. Problem solved. I got it working with another UI builder.
  13. Hi Darryl, I saw the file select but didn't want to use the images shown. There has to be a way to use an image button. Thanks, Cavin
  14. Hi, I'm working on a UI html panel and I cannot get my Open File button or Start buttons to function. I defined the Start but am not having any luck. Can anyone see my problem in the following code? --Open File Button-- <button variable="#localBizs" fillwith="value" type="file" id="addimager89966" dialogtype="open" name="file" class="button08" style="text-decoration:none;padding:7px 15px;font-family:Georgia;font-size:18px;font-weight:800;color:#000000;border-radius:9px;"><!--lab-->Load Local Business File</button> --Run Button-- <button
  15. That stopped the script totally. No action in the browser and no Alert. I'm confused......... Why do you think it's a proxy issue when the error clearly says %URLs next list issue?
  16. Hi Pash, I do have proxies list position at 0. Sorry, I guess I should've posted the full code. The image attached above shows error at $next list item(%URLs) right? Here's the code above the loop: clear list(%AccountData)clear list(%proxies)ui open file("Proxies",#proxies)add list to list(%proxies,$list from file(#proxies),"Delete","Global")set list position(%proxies,0)clear list(%email)ui text box("Email Address",#EmailAddress)add item to list(%email,#EmailAddress,"Don\'t Delete","Global")clear list(%Password)ui text box("Password (For Accounts)",#Password)add item to list(%Password,#Passw
  17. I'm having a problem I can't figure out with exceeding the range of $next list item error, which is in a loop. Navigate>$next list item >%URLs. I didn't have this error last night and confused as to what changed. The code is: clear list(%URLs) ui open file("Drupal Target URLs",#URLs) add list to list(%URLs,$list from file(#URLs),"Delete","Global") set list position(%URLs,0) loop($list total(%URLs)) { change proxy($next list item(%proxies)) set proxy credentials("proxy123","123password") navigate($next list item(%URLs),"Wait") wait for browser event("Page Loaded",10) A
  18. I tried uploading my script via posting and an attached .txt and it keeps saying "Your banned" or 'Saving Post" and never does. Can someone help me? I have TeamViewer on my pc and will gladly pay you if you can help me get over this hurdle and explain to me what I'm doing wrong. My Skype is: cavinjacobs
  19. Hi, Sorry, I'm trying to post a question and keep getting a 'Banned' message. Hi Guys, Man, I'm a stuck Chuck! I've worked all afternoon trying to resolve an error I keep getting. The error: You have exceeded the range of the list. I've spent all afternoon trying different things suggested by Lilly and others and none of them are working. Can you see what I'm doing wrong??? I've attached a screenshot of the error and also a video of everything.out-of-range.wmv
  20. Is there a way to complete unknown form fields (text/Dropdowns/Checkboxes)? I.E. When registering accounts: The general platform asks: username, email Occasionally you other sites asks additional questions that are required. Is there a way to enter dummy text to get through the process?
  21. Thx merkaba, I created a test html file in DreamWeaver and put it in Ubot but the layout changes. It seems like I don't make the table large enough in Ubot but I've adjusted settings etc and not having any luck. Just trying to find someone that can walk me through building the UI, and basically getting the design layed out.
×
×
  • Create New...