Error message : selenium.common.exceptions.InvalidSelectorException: Message: Given css selector expression ". clickable event-link math " is invalid: InvalidSelectorError: Document.querySelector: '. clickable event-link math ' is not a valid selector: ". clickable event-link math "
My guess is due to the spaces cause I saw similar issues with spaces but couldn't find a solution that worked for me
Algebra = ' clickable event-link math '
math = driver.find_element_by_class_name(Algebra)
As per the documentation of
selenium.webdriver.common.by
implementation:So,
Using
find_element_by_class_name()
you won't be able to pass multiple class names. Passing multiple classes you will face the error as:Additionally, as you want to return an array of the chats, so instead of
find_element*
you need to usefind_elements*
Solution
As an alternative you can use either of :the following Locator Strategies:
CSS_SELECTOR
:XPATH
:References
You can find a couple of relevant detailed discussions in: