Tagged Questions
SWTBot is an open-source Java based UI/functional testing tool for testing SWT and Eclipse based applications.
2
votes
1answer
547 views
Testing SWT-GUI whith SWTBot
i want to test a simple swt gui application with swtbot. unfortunatly i have no idea how to start. there are several tutorials which describe the testing of an eclipse plug-in but i could not find ...
2
votes
1answer
228 views
Why is a menu item disabled when using SWTBot?
I've written up a GUI test using SWTBot to test the Extract Method refactoring. I use editor.selectRange() to select a statement to extract into a method. But, when I run the unit test, the Extract ...
1
vote
1answer
115 views
Looking for an automated UI tester tool for SWT (with Eclipse RCP)
What I tried so far: SWTBot and WindowTester.
My problem with SWTBot is that I can click into an edit field, but I can't type into it. I looked up this issue in google and it looks like that SWTBot ...
1
vote
1answer
141 views
Specify a default product for new SWTBot Eclipse run configurations
I'm developing an Eclipse RCP application and running automated GUI tests using SWTBot. When I want to run a test from within Eclipse I right click on the test method (or class), then click "Run As" ...
1
vote
1answer
105 views
How to count the number of open editor instances in an Eclipse RCP Application?
I'm beginning to use the swtbot to test my reccent eclipse rcp projekt. A specific editor is opened multiple times in my application and want to count how often the editor is opened.
How can i do ...
0
votes
0answers
16 views
How to open Web page Editor Programmaticly with SWT BOT
I have created one category of Mine in Web PAGE Editor(WYSIWYG)in Eclipse & added component inside it.All of the drag & drop functionality i have completed.But I want to open this editor & ...
0
votes
0answers
13 views
Writing a test in SWTbot, in custom Search Console
I'm trying to write a GUI test using SWTbot for a custom Search Console in eclipse.
I'm trying to access the results of the search. Using the below code, I managed to get the cTabItem with the text ...
0
votes
3answers
95 views
Eclipse RCP Buildtool
I want to automate the Build Process of an existing RCP application with an own target platform.
Now I can't decide between Ant and Maven ore maybe there is a better tool?!
The tool should be easy to ...
0
votes
0answers
52 views
Which Continuous Integration (CI) Tools [closed]
I want to build and test an RCP Eclipse application automatically. I get the basics thoughts of Continuous Integration but now I need the concrete Tools.
The range of tools is huge and so it's hard ...
0
votes
1answer
226 views
How to integrate SWTBot test in Jenkins CI?
I've got a SWT application (not Eclipse RCP based) and I currently test it using SWTBot. This works fine while running the tests from Eclipse. I'm using ant as buildsystem.
On Jenkins the tests fail ...
0
votes
0answers
59 views
How can I exercise the quick assist feature of Eclipse using SWTBot?
I'd like to use SWTBot to inline a local variable via the quick assist menu. My SWTBot test pops up the quick assist menu, but it fails to select the proposal item. I've created a minimal project on ...
0
votes
1answer
83 views
How can I properly select a radio button using SWTBot?
I'd like to use SWTBot to configure and invoke the encapsulate field refactoring. The problem is that the refactoring ignores a radio button selection. I've created a minimal project that demonstrates ...
0
votes
1answer
82 views
WindowLicker-like framework with SWT support
Is there a testing framework with SWT support which works like WindowLicker? I.e., drives the actual user interface instead of firing events programmatically (like SWTBot)?
0
votes
2answers
885 views
Handling SWT Dialog boxes while running tests in headless mode using SWTBOT
I am running a Junit test case on my eclipse application that was built using SWT. I am doing GUI testing using SWTBot. So, here is my problem:
editor.bot().button("Make Excel Template").click();
...