2

I have a UI element that contains an asterisk. Reading the Silktest XPath docs I find that * is a special character which matches everything (wildcard).

How do I escape it?

Thomas Weller
  • 55,411
  • 20
  • 125
  • 222

1 Answers1

2

You can't. The support says:

You can only escape the * with a ?. This will only work for single characters.

Thomas Weller
  • 55,411
  • 20
  • 125
  • 222