I am looking to locate all the a tags that have classes containing 'lime', 'green', or 'busy'.
Here is the code snippet I currently have:
bs_tables = driver.find_elements_by_css_selector ("div#tables a[class*='lime'][class*='busy'][class*='green']")
However, it appears to be using the 'and' operator instead of the 'or' operator.
Does anyone know how to use the 'or' operator in this scenario?