
cjacobs
Fellow UBotter-
Content Count
30 -
Joined
-
Last visited
-
Days Won
1
cjacobs last won the day on October 15 2021
cjacobs had the most liked content!
Community Reputation
2 NeutralAbout cjacobs
-
Rank
Advanced Member
Profile Information
-
Gender
Not Telling
System Specs
-
OS
Windows 8
-
Total Memory
More Than 9Gb
-
Framework
v3.5
-
License
Developer Edition
Recent Profile Visitors
2159 profile views
-
Not sure what changed. Took a break and came back this evening and now it's working. Thanks for your help Varo!
-
Nothing. Cleared cache and everything.
-
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
-
cjacobs started following Problem Scraping Linkedin Review and Problem Checking Table Cell for Specific Text
-
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
-
Ok, thanks for your advice.
-
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
-
I did yes. Nothing.
-
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.
-
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
-
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!
-
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
-
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?
-
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?
-
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
-
Problem solved. I got it working with another UI builder.