How can I select a xpath that contains a text with ""
Let say my text on the page is: "my text" (this includes the "").
When I make the xpath I do in VS:
"//td[contains(.,'"mytext">')]"
But VS doesnt see this as correct because it shows mytext in white as if it doesnt belong to the xpath
It says it is a syntax error and it expects an ','.
So how can I make an xpth that uses an contain where the text has an "".