Currently webscraping soundcloud, using the selenium library. I'm trying to view everything contained in the "sc-visuallyhidden" class but the .text() function only work on find_element and not find_elements. Any suggestions?
search = driver.find_elements_by_css_selector('span.sc-visuallyhidden')
print(search.text)
This returns an error.