I am just learning Xpath.

How to mix 2 or more xpath validtions into a single line.

On my page, I have 2 different tables under hthe //body tag.
I want to validate two td s that exist on these 2 different tables.

IsElementPresent is my own method. It uses Xpath.

field.IsElementPresent("//td[text()='End']");
field.IsElementPresent("//span[text()='variables']");

I tried [//td[text()='End'] and //span[text()='variables'] ].
This is failed.

Here is the answer:

//body [table//td[text()='End'] and //table//td[text()='wel'] and //td[text()='oo'] and //span[text()='variables'] ]

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.