Answer the question
In order to leave comments, you need to log in
How to find selenium element by part of text?
The page needs to find an element whose part has a match, right now I have the following code
self.driver.find_elements_by_xpath(
"""//div[contains(text(), 'фото профиля.')]"""
)
Answer the question
In order to leave comments, you need to log in
He and so should find all elements on occurrence, contains after all and is translated as "contains".
For an exact search, one would use
driver.find_element_by_xpath("//div[text()='фото профиля.']")
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question