I am trying to have Selenium log me into Soundcloud but the find_element_by_link_text attribute isn't working for me but it seems to work for "Find out more" and "Upload your own". Why is it working for some of the elements on the web page but not others??
from tkinter import *
import random
import urllib.request
from bs4 import BeautifulSoup
from selenium import webdriver
import time
import requests
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.chrome.options import Options
driver = webdriver.Chrome(executable_path='/Users/quanahbennett/PycharmProjects/SeleniumTest/chromedriver')
url= "https://soundcloud.com/"
driver.get(url)
#time.sleep(30)
wait = WebDriverWait(driver, 10)
link = driver.find_element_by_link_text('Sign in');
link.click()
breakpoint()