Questions tagged [swtbot]

SWTBot is an open-source Java based UI/functional testing tool for testing SWT and Eclipse based applications.

SWTBot provides APIs that are simple to read and write. The APIs also hide the complexities involved with SWT and Eclipse. This makes it suitable for UI/functional testing by everyone, not just developers. SWTBot also provides its own set of assertions that are useful for SWT. You can also use your own assertion framework with SWTBot.

SWTBot can record and playback tests and integrates with Eclipse, and also provides for ant tasks so that you can run your builds from within CruiseControl or any other CI tool that you use. You can also use it with testing frameworks like JUnit on Java, or Cucumber on JRuby making it very suitable for writing tests using a scripting language.

SWTBot can run on all platforms that SWT runs on. Very few other testing tools provide such a wide variety of platforms.

Links

  1. SWTBot Home
  2. Download
  3. User-guide
  4. Tutorial
  5. FAQ
139 questions
-1
votes
1 answer

Java SWT - Parent and Child Dialog Communication

I am trying to set up a "parent-child" dialog relationship where I want to enter in information on the child dialog (say in a textbox) and allow that information to be displayed (or transferred) to the parent dialog (say on a label) where it can be…
-1
votes
2 answers

How to run SWTBOT in eclipse juno

I am not finding any clear documents to start the Swtbot. I am trying couple of days to start it. Can any one please help me configuring and executing the swtbot?
-1
votes
1 answer

SWTBOT doesn't delete components and keep adding others

the problem that I am facing is the following: I am doing a SWTBot test in which I create a few composites, delete them, adding others and so on. The problem is that, after each start of the test, the SWTBot test doesn't start from an initial state,…
-4
votes
2 answers

SWTBotTree expand node by regular expression

I'd like to use SWTBotTree.expandNode (final String nodeText, final boolean recursive) function with a String that is not always exactly the same. The beginning of the string is the same but the end can be varying. I thought it can be solved with…
vdani
  • 27
  • 2
1 2 3
9
10