0

on this page I am trying to find list of href elements (see picture)enter image description here.

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

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.