How To Automate This

instantbusiness2020

Registered Member
Joined
Jul 27, 2020
Messages
91
Reaction score
10
Is there a way to automate this process?

I wanted to open all websites automatically from a directory website. For example
when I look for dentists in a city.

The directory websites gives me a list of the dentists in a city and if the
dentists have a website theres a text link with the word WEB so I can visit
the website of each dentist.

At the moment with Control+F I find all the text links with the word
WEB and I click on the text link every time but Im sure there must be a way
to automate this?

Thanks for your help
 
You can try to hire a freelancer to make you a bot (cost around 30$)
 
You need python and selenium installed on your PC to run this code.

Python:
from selenium import webdriver

# Initiate a web driver
driver = webdriver.Firefox()

# Navigate to the webpage
driver.get("https://directorywebsite.com/dentistspagelink")

# Find all the links on the page
links = driver.find_elements_by_tag_name("a")

# Iterate through the links
for link in links:
    if "web" in link.text.lower():
        link.click()

Save this code as automatethis.py and run python automatethis.py in your command prompt.
 
You don't need a bot for this. There are things called bookmarklets, basically a bookmark that executes JS on a page.
So, you would open your page, click on this bookmark (it's still located in the bookmark bar in the browser), enter your text and click "Open All".
The bookmark will be able to do the same thing that @FBGuru mentioned.
But you gotta find somebody who will code it
 
Back
Top