Selenium WebDriver(Python)에서 특정 텍스트가 있는 요소 식별
Selenium WebDriver에서 특정 텍스트 콘텐츠가 있는 요소를 찾는 것은 특히 다음과 같은 경우에 어려울 수 있습니다. JavaScript 인터페이스를 다룹니다. 일반적인 접근 방식 중 하나는 XPath 표현식을 활용하는 것이지만 대소문자 구분 제한이 있을 수 있습니다.
이를 극복하기 위해 수정된 XPath 표현식을 사용할 수 있습니다.
<code class="python">driver.find_elements_by_xpath("//*[contains(text(), 'My Button')]")</code>
이 표현식은 내부의 모든 요소를 검색합니다. 대소문자에 관계없이 "My Button"이라는 텍스트가 포함된 문서입니다.
다음과 같이 요소가 다른 요소 내에 중첩된 상황에서는
<code class="html"><div class="outer"><div class="inner">My Button</div></div></code>
대상이 요소는 원하는 텍스트를 포함하는 가장 안쪽 요소입니다. 이렇게 하려면 동일한 텍스트를 포함하는 다른 요소의 상위 요소를 제외할 수 있습니다.
<code class="python">elements = driver.find_elements_by_xpath("//*[contains(text(), 'My Button')]") for element in elements: if element.find_element_by_xpath('.//*[contains(text(), 'My Button')]'): continue else: # Perform actions on the current element</code>
위 내용은 Python을 사용하여 Selenium WebDriver에서 특정 텍스트가 있는 요소를 찾는 방법(대소문자 구분 안 함)?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!