Tagged Questions
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
85 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
83 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();
...