Canoo Webtest WebTest Canoo

Core Step verifyXPath

Description

This step verifies that an XPath expression is true or has a certain value. Useful for XML and HTML pages.

This is one of the most powerful verification features of Canoo WebTest. You may want to use XPath Explorer for finding appropriate expressions.

Parameters

description
Required? no
The description of this test step.
regex
Required? no, default is 'false'
Specifies whether the text value represents a regular expression.
text
Required? no
The expected text value of the xpath evaluation. If omitted the step checks that the result is not the boolean false and not empty.
xpath
Required? true
Specifies the XPath expression to evaluate.

Details

<target name="testXPath">
  <webtest name="xpath" >
    &sharedConfiguration;
    <steps>
      ..
      <verifyXPath description="simple match"
        xpath="/html/head/title"/>
      <verifyXPath description="more complicated match"
        xpath="//img[@src='seibertec.gif']"/>
      <verifyXPath description="simple match with value"
        xpath="/html/head/title"
        text="Canoo WebTest"/>
      <verifyXPath description="simple boolean expression"
        xpath="1 &gt; 0"/>
    </steps>
  </webtest>
</target>

See also: the storeXPath and selectForm steps.

news

Latest build: R_1705
Posted: 14-May-2008 13:13

WebTest @ JavaOne
Dierk König will present "Functional testing of web applications: scaling with Java" on Wed May 7, 13:30 at JavaOne in the Tools and Scripting Languages track.
Posted: 6 May 2008

WebTest 2.6 released, featuring upgrades to Ant 1.7, Groovy 1.5.4, and HtmlUnit 1.14.
The release includes support for data-driven testing, testing of drag-and-drop, advanced AJAX support, high-concurrency testing and reporting, real-time monitoring, and - as usual - lots of handling improvements.
Posted: 18 March 2008

New WebTest screencast available:
Data Driven WebTest
Posted: 13 November 2007

First WebTest screencast available:
Creating a first Webtest Project

Extend WebTest with Groovy! Groovy in Action is available in every good bookstore.
Groovy in Action
Posted: 29 January 2007