Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Org.eclipse.higgins.js.pds.cde2

Revision as of 13:39, 4 January 2012 by Ptrevithick.gmail.com (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

{{#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

Variables

The Selenium language supports variables of the form "${foo}" that can be evaluated at runtime. Our plan is that CDE2 will evaluate these variables by calling getAttributes() or the getCredentials() method of Org.eclipse.higgins.js.pds.client.

Back to the top