Skip to content Skip to sidebar Skip to footer

How To Find A Element After A Search Click Checkbox In Selenium Python

After I search for a user in the search field, I get the user I searched Now I need to select this user that shown in the list I tried with xpath and did not find the element ! cou

Solution 1:

In case you need to click on the first presented result please try this:

WebDriverWait(self.browser, 10).until(EC.visibility_of_element_located((By.XPATH, "//tr[@aria-rowindex='1']//div[@data-bind]"))).click()

I'm not sure about this.
Need to see the actual web page with the dev tools for better suggestion...


Post a Comment for "How To Find A Element After A Search Click Checkbox In Selenium Python"