Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » SWTBot » can SWTBot 2.0 test a wizard?
can SWTBot 2.0 test a wizard? [message #10811] Thu, 18 December 2008 14:43 Go to next message
Brice Laurel is currently offline Brice LaurelFriend
Messages: 72
Registered: July 2009
Member
Hi list,

I create a mini rcp application, I add a wizard
(org.eclipse.jface.wizard.Wizard), I add 2 pages
(org.eclipse.jface.wizard.WizardPage) to this wizard.

In the manually execution of my application, when I click File ->
CallWizard ,the first page of my application will open. When I setText
with label "Put here a value", buttons "<Back", "Next>" and "Finish" will
enabled. And I can click on "Next>" to open the second page of my wizard.

I want to test this application with SWTBot.
When I do in my test
bot.menu("File").menu("CallWizard").click();
I open the first page of my wizard. I type text in the textbox with no
problem.
bot.textWithLabel("Put here a value").setText("premier wizard");
But 3 buttons(back, Next and Finish) on this page are disabled. I don't
know how?
I look in the swtbot's javadoc, but I dont'see a method to enabled a
button.

I read this page
( http://swtbot.sourceforge.net/releases/1.2.0/feature-list.ht ml), I don't
see wizard. Can SWTBot 2.0 help to test a wizard?

Thanks for help.
Re: can SWTBot 2.0 test a wizard? [message #11921 is a reply to message #10811] Thu, 18 December 2008 15:46 Go to previous messageGo to next message
Ketan Padegaonkar is currently offline Ketan PadegaonkarFriend
Messages: 873
Registered: July 2009
Senior Member
You're probably running the test as a pde junit test instead of an
swtbot test (http://swtbot.sourceforge.net/users-guide.html)

-- Ketan

On 18/12/08 20:13, Brice Laurel wrote:
> Hi list,
>
> I create a mini rcp application, I add a wizard
> (org.eclipse.jface.wizard.Wizard), I add 2 pages
> (org.eclipse.jface.wizard.WizardPage) to this wizard.
> In the manually execution of my application, when I click File ->
> CallWizard ,the first page of my application will open. When I setText
> with label "Put here a value", buttons "<Back", "Next>" and "Finish"
> will enabled. And I can click on "Next>" to open the second page of my
> wizard.
>
> I want to test this application with SWTBot.
> When I do in my test bot.menu("File").menu("CallWizard").click();
> I open the first page of my wizard. I type text in the textbox with no
> problem.
> bot.textWithLabel("Put here a value").setText("premier wizard");
> But 3 buttons(back, Next and Finish) on this page are disabled. I don't
> know how?
> I look in the swtbot's javadoc, but I dont'see a method to enabled a
> button.
>
> I read this page
> ( http://swtbot.sourceforge.net/releases/1.2.0/feature-list.ht ml), I
> don't see wizard. Can SWTBot 2.0 help to test a wizard?
>
> Thanks for help.
>
Re: can SWTBot 2.0 test a wizard? [message #11924 is a reply to message #11921] Thu, 18 December 2008 17:57 Go to previous messageGo to next message
Brice Laurel is currently offline Brice LaurelFriend
Messages: 72
Registered: July 2009
Member
Hi Ketan,

I run my test an as SWTBot test.

SWTBot also test wizard and wizard page?
Re: can SWTBot 2.0 test a wizard? [message #11929 is a reply to message #10811] Fri, 19 December 2008 00:25 Go to previous messageGo to next message
Ketan Patel is currently offline Ketan PatelFriend
Messages: 68
Registered: July 2009
Member
It is most likely not working because setText in SWTBotText does not send
any event notifications. You might want to try typeText method and see if
it works.

It would all depends on what events are causing the setPageComplete in
WizardPage class to be called.
Re: can SWTBot 2.0 test a wizard? [message #11994 is a reply to message #11929] Fri, 19 December 2008 12:50 Go to previous messageGo to next message
Brice Laurel is currently offline Brice LaurelFriend
Messages: 72
Registered: July 2009
Member
Thanks Ketan Patel

It works fine with typeText method.

Now, I have another application which I have a shell ( I thinks it's a
page of a wizard). The shell is open, but I don't have focus on this (I
say this because when I click on a button, nothing is do). I try many way
but I don't solve the problem.
Please what are possible problems?

Thanks in advance
Re: can SWTBot 2.0 test a wizard? [message #12007 is a reply to message #11994] Fri, 19 December 2008 15:36 Go to previous messageGo to next message
Ketan Patel is currently offline Ketan PatelFriend
Messages: 68
Registered: July 2009
Member
Need more information...do you have logging enabled...what does it say.
Can you post your code also?
Re: can SWTBot 2.0 test a wizard? [message #12046 is a reply to message #12007] Mon, 22 December 2008 10:43 Go to previous messageGo to next message
Brice Laurel is currently offline Brice LaurelFriend
Messages: 72
Registered: July 2009
Member
Ketan Patel wrote:

> Need more information...do you have logging enabled...what does it say.
> Can you post your code also?


Hi Ketan Patel,

Log4j:
I copy the file
" http://swtbot.svn.sourceforge.net/svnroot/swtbot/trunk/net.s f.swtbot.finder.test/src/log4j.xml"
int the src's directory of my plugins project but I still have

log4j:WARN No appenders could be found for logger
(net.sf.swtbot.matcher.WidgetMatcherFactory$MenuMatcher).
log4j:WARN Please initialize the log4j system properly.

on my console.

Trace of my test:
My code is follow:
bot.menu("File").menu("New")menu("myRCP").click();
bot.textWithLabel("Name").setText("Anything");
bot.button("Finish").click();
bot.button("Continue").click();

In the manually execution of my RCP application, when I click on
File->New->myRCP, a new shell "shellOne" opens. On this shell, I type the
name of my component, for "exemple "Anything", then I click() on button
"Finish" and an another shell "shellTwo" is open (When I click on button
"Finish", a time is passed before "shellTwo" is open).In this state, If I
click on button "Continue" on the "shellTwo", I could do anything on my
editor.

In the test execution with SWTBot, when I run test with code below, the
execution is correct but when "shellTwo" is open, I don't have control on
this. (When I do anything on this : setText, click on a button,.. nothing
is do). I don't understand how?

Thanks in advance
Re: can SWTBot 2.0 test a wizard? [message #12084 is a reply to message #12007] Mon, 22 December 2008 11:12 Go to previous messageGo to next message
Brice Laurel is currently offline Brice LaurelFriend
Messages: 72
Registered: July 2009
Member
I run my test with this properties' file

log4j.properties
log4j.rootLogger =ALL, A1
log4j.appender.A1=org.apache.log4j.ConsoleAppender
log4j.appender.A1.layout=org.apache.log4j.PatternLayout
log4j.appender.A1.layout.ConversionPattern=%d{dd MMM yyyy HH:mm:ss.SSS}
%-4r [%t] %-5p %c %x - %m%n

And I have this on the console

22 déc. 2008 12:10:37.685 2353 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591028 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.685 2353 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyDownEvent {type=0 Text
{*Wrong Thread*} time=1583591028 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.685 2353 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.685 2353 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.685 2353 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.685 2353 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.685 2353 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.686 2354 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.686 2354 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591029 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:37.686 2354 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591029 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.686 2354 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591029 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.686 2354 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.686 2354 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.686 2354 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.686 2354 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.686 2354 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.687 2355 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.687 2355 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.687 2355 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.695 2363 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.701 2369 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.737 2405 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.737 2405 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.738 2406 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.738 2406 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.738 2406 [WorkbenchTestable] DEBUG
net.sf.swtbot.widgets.SWTBotText - Enquing keyboard notification: .
22 déc. 2008 12:10:37.738 2406 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.738 2406 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.738 2406 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.739 2407 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.739 2407 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591082 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:37.739 2407 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591082 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.739 2407 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyDownEvent {type=0 Text
{*Wrong Thread*} time=1583591082 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.739 2407 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.739 2407 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.739 2407 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.739 2407 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.739 2407 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.740 2408 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.740 2408 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591083 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:37.740 2408 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591083 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.740 2408 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591083 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.740 2408 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.741 2409 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.741 2409 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.741 2409 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.741 2409 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.741 2409 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.742 2410 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.742 2410 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.748 2416 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.754 2422 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.795 2463 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.795 2463 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.795 2463 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.795 2463 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.796 2464 [WorkbenchTestable] DEBUG
net.sf.swtbot.widgets.SWTBotText - Enquing keyboard notification: j
22 déc. 2008 12:10:37.796 2464 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.796 2464 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.796 2464 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.796 2464 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.796 2464 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591140 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:37.796 2464 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591140 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.797 2465 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyDownEvent {type=0 Text
{*Wrong Thread*} time=1583591140 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.797 2465 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.797 2465 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.797 2465 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.797 2465 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.797 2465 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.797 2465 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.798 2466 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591141 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:37.798 2466 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591141 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.798 2466 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591141 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.798 2466 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.798 2466 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.798 2466 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.798 2466 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.798 2466 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.798 2466 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.799 2467 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.799 2467 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.819 2487 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.826 2494 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.849 2517 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.849 2517 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.849 2517 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.850 2518 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.850 2518 [WorkbenchTestable] DEBUG
net.sf.swtbot.widgets.SWTBotText - Enquing keyboard notification: a
22 déc. 2008 12:10:37.850 2518 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.850 2518 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.850 2518 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.850 2518 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.850 2518 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591194 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:37.850 2518 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591194 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.851 2519 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyDownEvent {type=0 Text
{*Wrong Thread*} time=1583591194 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.851 2519 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.851 2519 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.851 2519 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.851 2519 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.851 2519 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.851 2519 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.851 2519 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591195 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:37.851 2519 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591195 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.851 2519 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591195 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.852 2520 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.852 2520 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.852 2520 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.852 2520 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.852 2520 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.852 2520 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.852 2520 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.859 2527 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.864 2532 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.864 2532 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.902 2570 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.903 2571 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.904 2572 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.904 2572 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.904 2572 [WorkbenchTestable] DEBUG
net.sf.swtbot.widgets.SWTBotText - Enquing keyboard notification: s
22 déc. 2008 12:10:37.904 2572 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.904 2572 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.905 2573 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.905 2573 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.905 2573 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591248 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:37.905 2573 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591248 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.905 2573 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyDownEvent {type=0 Text
{*Wrong Thread*} time=1583591248 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.905 2573 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.905 2573 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.905 2573 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.905 2573 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.906 2574 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.906 2574 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.906 2574 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591250 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:37.906 2574 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591250 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.906 2574 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591250 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.906 2574 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.906 2574 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.906 2574 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.906 2574 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.907 2575 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.907 2575 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.907 2575 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.907 2575 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.917 2585 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.923 2591 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.958 2626 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.958 2626 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.958 2626 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.958 2626 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.958 2626 [WorkbenchTestable] DEBUG
net.sf.swtbot.widgets.SWTBotText - Enquing keyboard notification: m
22 déc. 2008 12:10:37.958 2626 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.958 2626 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.959 2627 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.959 2627 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.959 2627 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591303 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:37.959 2627 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591303 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.959 2627 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyDownEvent {type=0 Text
{*Wrong Thread*} time=1583591303 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.959 2627 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.960 2628 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.960 2628 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.960 2628 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.960 2628 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.960 2628 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591304 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:37.960 2628 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591304 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.960 2628 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591304 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:37.963 2631 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.963 2631 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.963 2631 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.963 2631 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.963 2631 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.963 2631 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.963 2631 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.971 2639 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:37.978 2646 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.978 2646 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:37.978 2646 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.014 2682 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.014 2682 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.015 2683 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.015 2683 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.015 2683 [WorkbenchTestable] DEBUG
net.sf.swtbot.widgets.SWTBotText - Enquing keyboard notification: i
22 déc. 2008 12:10:38.016 2684 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.016 2684 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.018 2686 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.019 2687 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.019 2687 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591362 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.019 2687 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591362 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.019 2687 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyDownEvent {type=0 Text
{*Wrong Thread*} time=1583591362 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.019 2687 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.019 2687 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.019 2687 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.019 2687 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.019 2687 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.020 2688 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.020 2688 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591363 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.020 2688 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591363 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.020 2688 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591363 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.020 2688 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.020 2688 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.020 2688 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.020 2688 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.031 2699 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.031 2699 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.032 2700 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.032 2700 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.039 2707 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.046 2714 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.083 2751 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.083 2751 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.084 2752 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.084 2752 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.084 2752 [WorkbenchTestable] DEBUG
net.sf.swtbot.widgets.SWTBotText - Enquing keyboard notification: n
22 déc. 2008 12:10:38.084 2752 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.084 2752 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.084 2752 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.084 2752 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.085 2753 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591428 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.085 2753 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591428 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.085 2753 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyDownEvent {type=0 Text
{*Wrong Thread*} time=1583591428 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.085 2753 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.085 2753 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.085 2753 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.085 2753 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.085 2753 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.086 2754 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.086 2754 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591429 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.086 2754 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591429 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.086 2754 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591429 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.086 2754 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.086 2754 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.086 2754 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.086 2754 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.086 2754 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.086 2754 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.087 2755 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.087 2755 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.103 2771 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.109 2777 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.137 2805 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.137 2805 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.138 2806 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.138 2806 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.138 2806 [WorkbenchTestable] DEBUG
net.sf.swtbot.widgets.SWTBotText - Enquing keyboard notification: e
22 déc. 2008 12:10:38.138 2806 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.138 2806 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.138 2806 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.138 2806 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.139 2807 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591482 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.139 2807 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591482 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.139 2807 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyDownEvent {type=0 Text
{*Wrong Thread*} time=1583591482 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.139 2807 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.139 2807 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.139 2807 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.139 2807 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.140 2808 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.140 2808 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.140 2808 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591484 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.140 2808 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591484 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.140 2808 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591484 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.140 2808 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.140 2808 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.140 2808 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.140 2808 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.141 2809 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.141 2809 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.147 2815 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.147 2815 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.155 2823 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.177 2845 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.198 2866 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.198 2866 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.198 2866 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.198 2866 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.199 2867 [WorkbenchTestable] DEBUG
net.sf.swtbot.widgets.SWTBotText - Enquing keyboard notification: m
22 déc. 2008 12:10:38.199 2867 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.199 2867 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.199 2867 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.199 2867 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.200 2868 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591543 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.200 2868 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591543 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.200 2868 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyDownEvent {type=0 Text
{*Wrong Thread*} time=1583591543 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.200 2868 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.200 2868 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.200 2868 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.200 2868 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.200 2868 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.201 2869 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.201 2869 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591544 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.201 2869 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591544 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.201 2869 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591544 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.201 2869 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.201 2869 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.201 2869 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.201 2869 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.201 2869 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.202 2870 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.202 2870 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.202 2870 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.208 2876 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.214 2882 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.259 2927 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.259 2927 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.259 2927 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.260 2928 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.260 2928 [WorkbenchTestable] DEBUG
net.sf.swtbot.widgets.SWTBotText - Enquing keyboard notification: o
22 déc. 2008 12:10:38.260 2928 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.260 2928 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.260 2928 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.260 2928 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.260 2928 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591604 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.260 2928 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591604 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.261 2929 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyDownEvent {type=0 Text
{*Wrong Thread*} time=1583591604 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.261 2929 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.261 2929 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.261 2929 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.261 2929 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.261 2929 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.261 2929 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.261 2929 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591605 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.261 2929 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591605 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.261 2929 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591605 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.261 2929 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.261 2929 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.262 2930 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.262 2930 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.262 2930 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.262 2930 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.263 2931 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.263 2931 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.270 2938 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.280 2948 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.320 2988 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.320 2988 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.320 2988 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.320 2988 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.320 2988 [WorkbenchTestable] DEBUG
net.sf.swtbot.widgets.SWTBotText - Enquing keyboard notification: d
22 déc. 2008 12:10:38.320 2988 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.321 2989 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.321 2989 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.321 2989 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.321 2989 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591665 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.321 2989 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591665 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.321 2989 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyDownEvent {type=0 Text
{*Wrong Thread*} time=1583591665 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.321 2989 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.321 2989 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.322 2990 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.322 2990 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.322 2990 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.322 2990 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.322 2990 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591666 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.322 2990 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591666 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.322 2990 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591666 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.322 2990 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.323 2991 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.323 2991 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.323 2991 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.323 2991 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.323 2991 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.323 2991 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.323 2991 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.354 3022 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.359 3027 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.377 3045 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.378 3046 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.378 3046 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.378 3046 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.378 3046 [WorkbenchTestable] DEBUG
net.sf.swtbot.widgets.SWTBotText - Enquing keyboard notification: e
22 déc. 2008 12:10:38.378 3046 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.378 3046 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.378 3046 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.378 3046 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.379 3047 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591722 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.379 3047 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591722 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.379 3047 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyDownEvent {type=0 Text
{*Wrong Thread*} time=1583591722 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.379 3047 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.379 3047 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.379 3047 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.379 3047 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.379 3047 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.380 3048 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.380 3048 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591723 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.380 3048 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591723 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.380 3048 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591723 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.380 3048 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.380 3048 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.380 3048 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.380 3048 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.380 3048 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.380 3048 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.380 3048 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.389 3057 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.395 3063 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.395 3063 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.435 3103 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.435 3103 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.439 3107 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.439 3107 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.439 3107 [WorkbenchTestable] DEBUG
net.sf.swtbot.widgets.SWTBotText - Enquing keyboard notification: l
22 déc. 2008 12:10:38.439 3107 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.439 3107 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.440 3108 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.440 3108 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.440 3108 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591783 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.440 3108 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyDownEvent {type=0
Text {*Wrong Thread*} time=1583591783 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.440 3108 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyDownEvent {type=0 Text
{*Wrong Thread*} time=1583591783 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.440 3108 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.440 3108 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.440 3108 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.440 3108 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.441 3109 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.441 3109 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.441 3109 [WorkbenchTestable] TRACE
net.sf.swtbot.widgets.SWTBotText - Enquing event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591784 data=null x=0 y=0 width=0 height=0
detail=0} on Text {/home/carole/Bureau/...}
22 déc. 2008 12:10:38.441 3109 [main] TRACE
net.sf.swtbot.widgets.SWTBotText - Sending event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591784 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.441 3109 [main] DEBUG
net.sf.swtbot.widgets.SWTBotText - Sent event KeyUpEvent {type=0 Text
{*Wrong Thread*} time=1583591784 data=null x=0 y=0 width=0 height=0
detail=0} to Text {}
22 déc. 2008 12:10:38.441 3109 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.441 3109 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.441 3109 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.441 3109 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.441 3109 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.441 3109 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.442 3110 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.442 3110 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.446 3114 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.451 3119 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.493 3161 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Dispatching events
22 déc. 2008 12:10:38.493 3161 [main] TRACE
net.sf.swtbot.finder.UIThreadRunnable - Finished dispatching
22 déc. 2008 12:10:38.494 3162 [main] TRACE
net.sf.swtbot.matcher.WidgetMatcherFactory$ButtonMatcher - did not match
Shell {New Jasmine Diagram}, using matcher: Matcher for widget [Button]
with text [Finish]
22 déc. 2008 12:10:38.494 3162 [main] TRACE
net.sf.swtbot.matcher.WidgetMatcherFactory$ButtonMatcher -
+---Widget: Shell{New Jasmine Diagram}
22 déc. 2008 12:10:38.494 3162 [main] TRACE
net.sf.swtbot.matcher.WidgetMatcherFactory$ButtonMatcher - did not match
Composite {}, using matcher: Matcher for widget [Button] with text [Finish]
22 déc. 2008 12:10:38.494 3162 [main] TRACE
net.sf.swtbot.matcher.WidgetMatcherFactory$ButtonMatcher -
+---Widget: Composite{}
22 déc. 2008 12:10:38.494 3162 [main] TRACE
net.sf.swtbot.matcher.WidgetMatcherFactory$ButtonMatcher - did not match
Composite {}, using matcher: Matcher for widget [Button] with text [Finish]
22 déc. 2008 12:10:38.495 3163 [main] TRACE
net.sf.swtbot.matcher.WidgetMatcherFactory$ButtonMatcher -
+---Widget: Composite{}
22 déc. 2008 12:10:38.495 3163 [main] TRACE
net.sf.swtbot.matcher.WidgetMatcherFactory$ButtonMatcher - did not match
Composite {}, using matcher: Matcher for widget [Button] with text [Finish]
22 déc. 2008 12:10:38.495 3163 [main] TRACE
net.sf.swtbot.matcher.WidgetMatcherFactory$ButtonMatcher -
+---Widget: Composite{}
22 déc. 2008 12:10:38.495 3163 [main] TRACE
net.sf.swtbot.matcher.WidgetMatcherFactory$ButtonMatcher - did not match
Label {}, using matcher: Matcher for widget [Button] with text [Finish]
22 déc. 2008 12:10:38.496 3164 [main] TRACE
net.sf.swtbot.matcher.WidgetMatcherFactory$ButtonMatcher -
+---Widget: Label{}
22 déc. 2008 12:10:38.496 3164 [main] TRACE
net.sf.swtbot.matcher.WidgetMatcherFactory$ButtonMatcher - did not match
Composite {}, using matcher: Matcher for widget [Button] with text [Finish]
22 déc. 2008 12:10:38.496 3164 [main] TRACE
net.sf.swtbot.matcher.WidgetMatcherFactory$ButtonMatcher -
+---Widget: Composite{}
22 déc. 2008 12:10:38.496 3164 [main] TRACE
net.sf.swtbot.matcher.WidgetMatcherFactory$ButtonMatcher - did not match
Composite {}, using matcher: Matcher for widget [Button] with text [Finish]
2
Re: can SWTBot 2.0 test a wizard? [message #12097 is a reply to message #12046] Tue, 23 December 2008 00:28 Go to previous messageGo to next message
Ketan Patel is currently offline Ketan PatelFriend
Messages: 68
Registered: July 2009
Member
I think you might have to wait for the "shellTwo" to be active before
trying to click on the button...something like this:

bot.button("Finish").click();
bot.shell("shellTwo").activate(); // assuming "shellTwo" is the title.
bot.button("Continue").click();

Brice Laurel wrote:

> Ketan Patel wrote:

>> Need more information...do you have logging enabled...what does it say.
>> Can you post your code also?


> Hi Ketan Patel,

> Log4j:
> I copy the file
>
" http://swtbot.svn.sourceforge.net/svnroot/swtbot/trunk/net.s f.swtbot.finder.test/src/log4j.xml"
> int the src's directory of my plugins project but I still have

> log4j:WARN No appenders could be found for logger
> (net.sf.swtbot.matcher.WidgetMatcherFactory$MenuMatcher).
> log4j:WARN Please initialize the log4j system properly.

> on my console.

> Trace of my test:
> My code is follow:
> bot.menu("File").menu("New")menu("myRCP").click();
> bot.textWithLabel("Name").setText("Anything");
> bot.button("Finish").click();
> bot.button("Continue").click();

> In the manually execution of my RCP application, when I click on
> File->New->myRCP, a new shell "shellOne" opens. On this shell, I type the
> name of my component, for "exemple "Anything", then I click() on button
> "Finish" and an another shell "shellTwo" is open (When I click on button
> "Finish", a time is passed before "shellTwo" is open).In this state, If I
> click on button "Continue" on the "shellTwo", I could do anything on my
> editor.

> In the test execution with SWTBot, when I run test with code below, the
> execution is correct but when "shellTwo" is open, I don't have control on
> this. (When I do anything on this : setText, click on a button,.. nothing
> is do). I don't understand how?

> Thanks in advance
Re: can SWTBot 2.0 test a wizard? [message #12110 is a reply to message #12097] Tue, 23 December 2008 09:05 Go to previous message
Brice Laurel is currently offline Brice LaurelFriend
Messages: 72
Registered: July 2009
Member
Hi ketan Patel,

The same problem persist. "ShellTwo" is a shell which don't have a title.
I type

bot.button("Finish").click();
Thread.sleep(2000);
bot.shell("").activate();
bot.button("Continue").click();

Because in the manually execution, when I click on "Finish", a time is
passed before "shellTwo" is open.

But I have the same problem in the test execution with SWTBot (I don't
have any control on "shellTwo").

Thanks in advance.
Previous Topic:Run SWT Bot outside of Eclipse
Next Topic:Please file all bugs and support requests on eclipse.org.
Goto Forum:
  


Current Time: Tue Apr 23 17:08:42 GMT 2024

Powered by FUDForum. Page generated in 0.03814 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top