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

Difference between revisions of "Jubula/Capabilities"

(Information on how to hide Jubula UI contributions using Capabilities.)
 
(Adding capability configurability to Jubula)
 
Line 28: Line 28:
  
 
The default enablement can be removed in order to hide all Jubula UI contributions by default.
 
The default enablement can be removed in order to hide all Jubula UI contributions by default.
 +
 +
== Progressive Discover Trigger Points ==
 +
 +
Jubula does not currently provide any "progressive discovery" trigger points.

Latest revision as of 04:56, 16 May 2011

Adding capability configurability to Jubula

In order to optionally hide most/all of Jubula's UI contributions using Capabilities, a snippet like this should be added to a plugin.xml:

<extension point="org.eclipse.ui.activities">
    <activity
          description="Specify, execute, and evaluate functional UI tests."
          id="org.eclipse.jubula.capabilities.functionalTesting"
          name="Jubula Functional Testing">
    </activity>
    <activityPatternBinding
          activityId="org.eclipse.jubula.capabilities.functionalTesting"
          isEqualityPattern="false"
          pattern="org\.eclipse\.jubula\.client\.ui/.*">
    </activityPatternBinding>
    <activityPatternBinding
          activityId="org.eclipse.jubula.capabilities.functionalTesting"
          isEqualityPattern="false"
          pattern="org\.eclipse\.jubula\.client\.ui\..*/.*">
    </activityPatternBinding>
    <defaultEnablement
          id="org.eclipse.jubula.capabilities.functionalTesting">
    </defaultEnablement>
</extension>

The default enablement can be removed in order to hide all Jubula UI contributions by default.

Progressive Discover Trigger Points

Jubula does not currently provide any "progressive discovery" trigger points.

Back to the top