Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Org.eclipse.higgins.js.pds.cde2"

Line 1: Line 1:
 
{{#eclipseproject:technology.higgins|eclipse_custom_style.css}}
 
{{#eclipseproject:technology.higgins|eclipse_custom_style.css}}
  
Requirements
+
CDE 2 consumes a subset of the commands used in "scripts" defined by the open source Selenium project.
 +
 
 +
Supported Commands
 +
* assertTextPresent (pattern)
 +
* assertTitle (pattern)
 +
* click (locator) - button/link
 +
* clickAndWait (locator) - button/link
 +
* check
 +
* echo (message)
 +
* fireEvent (locator, event)
 +
* open (url)
 +
* pause (delay)
 +
* select (selectLocator, optionLocator) - dropdown
 +
* store (variable-name, value)
 +
* storeSelectOptions (selectLocator, variableName)
 +
* type (locator, value) - text box
 +
* uncheck

Revision as of 12:19, 4 January 2012

{{#eclipseproject:technology.higgins|eclipse_custom_style.css}}

CDE 2 consumes a subset of the commands used in "scripts" defined by the open source Selenium project.

Supported Commands

  • assertTextPresent (pattern)
  • assertTitle (pattern)
  • click (locator) - button/link
  • clickAndWait (locator) - button/link
  • check
  • echo (message)
  • fireEvent (locator, event)
  • open (url)
  • pause (delay)
  • select (selectLocator, optionLocator) - dropdown
  • store (variable-name, value)
  • storeSelectOptions (selectLocator, variableName)
  • type (locator, value) - text box
  • uncheck

Back to the top