Pārlūkot izejas kodu

fixes xpath to also find text in anchors

Rodja Trappe 2 gadi atpakaļ
vecāks
revīzija
93ede59a71
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      tests/screen.py

+ 1 - 1
tests/screen.py

@@ -124,7 +124,7 @@ class Screen:
 
     def find(self, text: str) -> WebElement:
         try:
-            query = f'//*[not(self::script) and not(self::style) and contains(text(), "{text}")]'
+            query = f'//*[not(self::script) and not(self::style) and text()[contains(., "{text}")]]'
             element = self.selenium.find_element(By.XPATH, query)
             if not element.is_displayed():
                 self.wait(0.1)  # HACK: repeat check after a short delay to avoid timing issue on fast machines