I am trying to get all elements with a certain class name:
theButtons = browser.find_elements_by_class_name("Icon Icon--medium Icon--reply");
However I get the error:
Compound class names not permitted
I understand that spaces are not allowed in the class name to get it, but then what should I do?
Thanks