on this page I am trying to find list of href elements (see picture)
.
With
links = sb.find_elements(By.XPATH, "//div[@class='dropdownPanel']/a")
I found many more results. But when i try find only elements in this parent (div class="param_r ") I dont know how.
I was trying with:
links = sb.find_element(By.CSS_SELECTOR, 'div.dropdownLabel.param_r_all')
and
links = sb.find_elements(By.CSS_SELECTOR, 'div.param_r')
Any suggestion?
[1]of course).