In my case, for example, the XPath search element in 2 Forms:
(1) Parameters/Parameter[Key="{0}"]
(2) Parameters/Parameter[Key='{0}']
When {0} = CCC[AAA="BBB"]DDD
The first form will receive an error, and the second form, which makes the quotation marks "," different, will work.
it
Parameters/Parameter[Key="CCC[AAA="BBB"]DDD"]
Parameters/Parameter[Key='CCC[AAA="BBB"]DDD']
source
share