瀏覽代碼

fixes xpath to also find text in anchors

Rodja Trappe 2 年之前
父節點
當前提交
93ede59a71
共有 1 個文件被更改,包括 1 次插入1 次删除
  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