Selenium: If user follows me, this bot sends them a pm that asks why they followed.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • composer
    New Member
    • Apr 2021
    • 2

    Selenium: If user follows me, this bot sends them a pm that asks why they followed.

    im trying to make it here: https://replit.com/@upsideumop/ydidufollowme
    my follower page is here: https://musescore.com/user/35155956/followers
    someone told me to use my code, then do this:
    the code:
    list_of_followe rs = [# get this list(I assume you know how to...)]

    new_followers = [# create another list of new followers that]

    for user in new_followers:
    if user not in list_of_followe rs:
    send_message() # function that sends messages.
    list_of_followe rs.append(user)
    new_followers.p op(user)
    , but i want to do it with selenium and that person didn't have the time. can you help me?
Working...