We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3130a13 + 67ce1df commit 8ca67d9Copy full SHA for 8ca67d9
seleniumbase/__version__.py
@@ -1,2 +1,2 @@
1
# seleniumbase package
2
-__version__ = "2.3.12"
+__version__ = "2.3.13"
seleniumbase/fixtures/xpath_to_css.py
@@ -102,7 +102,7 @@ def _get_raw_css_from_xpath(xpath):
102
elif match["mattr"] == "@class":
103
attr = ".%s" % match["mvalue"].replace(" ", ".")
104
elif match["mattr"] in ["text()", "."]:
105
- attr = ":contains(^%s$)" % match["mvalue"]
+ attr = ":contains('%s')" % match["mvalue"]
106
elif match["mattr"]:
107
attr = '[%s="%s"]' % (
108
match["mattr"].replace("@", ""),
0 commit comments