|''with xml''|
|''xpath''|/a|''exists in ''|A|
|''xpath''|/a/b|''exists in ''|A|
|''xpath''|//b|''exists in ''|A|
|''xpath''|//b[@id='1']|''exists in ''|A|
|''xpath''|//g|''exists in''|xyzGG|
* The name space has to be specified if it's used in the xpath:
|''name space''|n|
|''xpath''|//n:f|''exists in''|xyz|
|'''not'''|''xpath''|/a/c|''exists in ''|A|
|'''not'''|''xpath''|//c|''exists in ''|A|
|'''not'''|''xpath''|//b[@id='2']|''exists in ''|A|
|'''not'''|''xpath''|//n:g|''exists in''|xyz|