Questions tagged [eclipse-rcptt]

Use this tag for questions about the Eclipse RCP Testing Tool (RCPTT).

The Eclipse RCP Testing Tool is used for testing the GUI of Eclipse based Rich Client Programs.

For more information see the RCPTT Home Page

47 questions
1
vote
1 answer

Use foreach or regex to verify in Eclipse RCPTT

After recording in RCPTT, I have the following script: get-editor "test.c" | get-text-viewer | get-property "markers['31'][0].Type" | equals "text-to-verify" | verify-true markers['31'][0].Type has value from markers['0'][0].Type -…
Eric Ipsum
  • 723
  • 3
  • 10
  • 24
1
vote
1 answer

Spaces in VM arguments RCPTT maven plugin

Is there a way to specify a VM argument value that contains spaces using the rcptt maven plugin in the pom file? Just putting the value straight forward the string is cut and only get the string C:\Program.
1
vote
1 answer

How do you load Jacoco coverage data from an RCPTT integration test into SonarQube?

We have a build chain which creates an Eclipse RCP application and a series of repositories. We want to run integration tests at the completion of the build chain. So after completion of the RCP application build we added two Jenkins jobs. The…
1
vote
1 answer

How to use RCPTT Folder Context in Maven?

Let me know about how to mavinize Folder Context in RCPTT! FYI: I have created a folder context (my_folder_context.ctx referring to a remote folder). First I click "Apply" button after opening the .ctx file in RCPTT tool to copy the contents to AUT…
lifeline2
  • 69
  • 1
  • 15
0
votes
0 answers

RCPTT failed to launch in eclipse 4.23: Missing implementation of resolved method 'abstract getModels()' of abstract class LaunchValidationOperation

Missing implementation of resolved method 'abstract java.util.Set getModels()' of abstract class org.eclipse.pde.internal.launching.launcher.LaunchValidationOperation I am getting this error when I try to run RCPTT on Eclipse…
0
votes
0 answers

java.lang.IllegalAccessError: Update to static final field org.eclipse.swt.widgets.Display.ajc$tjp_0 attempted from a different method (ajc$preClinit)

java.lang.IllegalAccessError: Update to static final field org.eclipse.swt.widgets.Display.ajc$tjp_0 attempted from a different method (ajc$preClinit) than the initializer method I am able to launch my product and its working fine, While running…
0
votes
0 answers

How to resolve Could not find artifact org.eclipse.rcptt.extensions.ecl:parent:pom:2.3.0-SNAPSHOT

Getting compilation error as Non-resolvable parent POM for org.eclipse.rcptt.extensions.ecl:org.eclipse.rcptt.extensions.ecl.model:2.3.0-SNAPSHOT: Could not find artifact org.eclipse.rcptt.extensions.ecl:parent:pom:2.3.0-SNAPSHOT I am using…
shubhs
  • 170
  • 6
0
votes
0 answers

Is latest RCPTT 2.5.2 supports NatTable?

I need to add some RCPTT testcases on Nebula NatTable. I tried RCPTT with version 2.3.0 and 2.5.2 nightly build but not able to capture table data. Please let me know if RCPTT supports NatTable or even if there is any workaround to do so.
0
votes
1 answer

RCPTT : ECL command to get the product install path

There is a use case in my application that some file will downloaded in the product installed path . I need check these files are downloaded from the remote . so i need to get the product install path (not workspace) I need to get…
0
votes
1 answer

RCPTT Maven Plugin procedures

TL;DR I'm trying to create a simple RCPTT test and run it using the rcptt-maven-plugin but I'm unable to do so because my procedure declarations in contexts are not being found. Is there a way to specify the contexts location or some other way to…
Gex
  • 13
  • 3
0
votes
1 answer

Window Tester Pro for eclipse based application (AUT)

I have developed a standalone Eclipse-RCP application and I want to perform some GUI related automated testing. I am currently using RCPTT and looking for other alternatives. Can anyone explain how to use Window Tester Pro GUI testing an application…
Varun
  • 21
  • 7
0
votes
1 answer

Clicking the radio button is not updating the layout when using databinding in RCPTT

As you can see from the image, the Right button is checked but the label says LEFT AREA which should be RIGHT AREA Script used in RCPTT get-button Right | click Here's the sample snippet of the ui. When a button is checked, a label will show up…
Kevin King
  • 557
  • 1
  • 9
  • 25
0
votes
0 answers

RCPTT: Invalid eclipse target platform: No name

I want to add a RCPTT test in my RCP eclipse application. When I create a "New application under test", I select the product for which I do my RCPTT test (the location of the plugins folder), but I get the error: " Invalid eclipse target platform:…
georgiana_e
  • 1,809
  • 10
  • 35
  • 54
0
votes
1 answer

Can't record nebula objects using rcptt

i'm trying to record a test over a rcp app but i can't; the nebula object can't be recorded by rcptt tool. I am using rcptt version 2.4.2
FTEOTW
  • 1
  • 5
0
votes
1 answer

"Message box info is absent" error using get-last-message-box

I am trying to verify a text in a text field in a native dialog using the rcptt framework. The code I am using is: set-dialog-result Folder get-window "Open Project" | get-group "Project Details" | get-button "..." | click get-last-message-box |…