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 "SWTBot/Troubleshooting"

(Added a troubleshooting page)
 
m (changed some formatting)
Line 2: Line 2:
  
 
If you get an error like:
 
If you get an error like:
java.lang.RuntimeException: Application "org.eclipse.swtbot.eclipse.core.swtbottestapplication" could not be found in the registry. The applications available are: some.long.list.of.application.ids
+
<pre>
 +
java.lang.RuntimeException: Application "org.eclipse.swtbot.eclipse.core.swtbottestapplication" could not be found in the registry.
 +
The applications available are: some.long.list.of.application.ids
 +
</pre>
  
 
Then the most common cause is that the target platform does not have the "org.eclipse.swtbot.eclipse.core" plugin.
 
Then the most common cause is that the target platform does not have the "org.eclipse.swtbot.eclipse.core" plugin.

Revision as of 13:11, 24 April 2009

SWTBot fails with"swtbottestapplication" could not be found in the registry

If you get an error like:

java.lang.RuntimeException: Application "org.eclipse.swtbot.eclipse.core.swtbottestapplication" could not be found in the registry.
The applications available are: some.long.list.of.application.ids

Then the most common cause is that the target platform does not have the "org.eclipse.swtbot.eclipse.core" plugin.

Back to the top