Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » SWTBot » performing doubleclick on a tree item
performing doubleclick on a tree item [message #707428] Mon, 01 August 2011 16:31 Go to next message
Lorenzo Bettini is currently offline Lorenzo BettiniFriend
Messages: 1812
Registered: July 2009
Location: Firenze, Italy
Senior Member
Hi

I'm testing the behavior of an EMF Editor which has a tree viewer; I
want to select an item of the tree and perform a doubleclick.

Upon doubleclick the property view should be shown (and I checked
manually) and it works;

however, if I write the following swtbot test, it fails: the properties
view cannot be found, and indeed, by looking at the test in execution
the property view is not shown at all...

@Test
public void canOpenPropertyView() throws Exception {
SWTBotTreeItem treeItemRoot = getRootOfEditorTree();
treeItemRoot.expand().getNode("Library").doubleClick();
bot.sleep(20000);
bot.viewByTitle("Properties");
}

the strange thing is that if on the running eclipse I manually do a
double click, the property view is opened (I inserted that sleep to
check this)...

and indeed the log seems to report that the doubleclick is actually
performed:

(AbstractSWTBot$2.java:160) - Sent event MouseDoubleClick [8]:
MouseEvent{Tree {} time=-2044031767 data=null button=0 stateMask=0 x=0
y=0 count=0} to Tree node with text: Library

am I doing something wrong?

thanks in advance
Lorenzo

--
Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
ICQ# lbetto, 16080134 (GNU/Linux User # 158233)
HOME: http://www.lorenzobettini.it MUSIC: http://www.purplesucker.com
http://www.myspace.com/supertrouperabba
BLOGS: http://tronprog.blogspot.com http://longlivemusic.blogspot.com
http://www.gnu.org/software/src-highlite
http://www.gnu.org/software/gengetopt
http://www.gnu.org/software/gengen http://doublecpp.sourceforge.net


Re: performing doubleclick on a tree item [message #707919 is a reply to message #707428] Tue, 02 August 2011 08:10 Go to previous messageGo to next message
Lorenzo Bettini is currently offline Lorenzo BettiniFriend
Messages: 1812
Registered: July 2009
Location: Firenze, Italy
Senior Member
I guess that's related to https://bugs.eclipse.org/bugs/process_bug.cgi

the fix is quite easy, but it looks like it hasn't been applied yet...

On 08/01/2011 06:31 PM, Lorenzo Bettini wrote:
> Hi
>
> I'm testing the behavior of an EMF Editor which has a tree viewer; I
> want to select an item of the tree and perform a doubleclick.
>
> Upon doubleclick the property view should be shown (and I checked
> manually) and it works;
>
> however, if I write the following swtbot test, it fails: the properties
> view cannot be found, and indeed, by looking at the test in execution
> the property view is not shown at all...
>
> @Test
> public void canOpenPropertyView() throws Exception {
> SWTBotTreeItem treeItemRoot = getRootOfEditorTree();
> treeItemRoot.expand().getNode("Library").doubleClick();
> bot.sleep(20000);
> bot.viewByTitle("Properties");
> }
>
> the strange thing is that if on the running eclipse I manually do a
> double click, the property view is opened (I inserted that sleep to
> check this)...
>
> and indeed the log seems to report that the doubleclick is actually
> performed:
>
> (AbstractSWTBot$2.java:160) - Sent event MouseDoubleClick [8]:
> MouseEvent{Tree {} time=-2044031767 data=null button=0 stateMask=0 x=0
> y=0 count=0} to Tree node with text: Library
>
> am I doing something wrong?
>
> thanks in advance
> Lorenzo
>



--
Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
ICQ# lbetto, 16080134 (GNU/Linux User # 158233)
HOME: http://www.lorenzobettini.it MUSIC: http://www.purplesucker.com
http://www.myspace.com/supertrouperabba
BLOGS: http://tronprog.blogspot.com http://longlivemusic.blogspot.com
http://www.gnu.org/software/src-highlite
http://www.gnu.org/software/gengetopt
http://www.gnu.org/software/gengen http://doublecpp.sourceforge.net


Re: performing doubleclick on a tree item [message #708983 is a reply to message #707919] Wed, 03 August 2011 10:32 Go to previous messageGo to next message
Lorenzo Bettini is currently offline Lorenzo BettiniFriend
Messages: 1812
Registered: July 2009
Location: Firenze, Italy
Senior Member
I filed a new bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=353720
and provided a patch... hope it is applied soon

cheers
Lorenzo

On 08/02/2011 10:10 AM, Lorenzo Bettini wrote:
> I guess that's related to https://bugs.eclipse.org/bugs/process_bug.cgi
>
> the fix is quite easy, but it looks like it hasn't been applied yet...
>
> On 08/01/2011 06:31 PM, Lorenzo Bettini wrote:
>> Hi
>>
>> I'm testing the behavior of an EMF Editor which has a tree viewer; I
>> want to select an item of the tree and perform a doubleclick.
>>
>> Upon doubleclick the property view should be shown (and I checked
>> manually) and it works;
>>
>> however, if I write the following swtbot test, it fails: the properties
>> view cannot be found, and indeed, by looking at the test in execution
>> the property view is not shown at all...
>>
>> @Test
>> public void canOpenPropertyView() throws Exception {
>> SWTBotTreeItem treeItemRoot = getRootOfEditorTree();
>> treeItemRoot.expand().getNode("Library").doubleClick();
>> bot.sleep(20000);
>> bot.viewByTitle("Properties");
>> }
>>
>> the strange thing is that if on the running eclipse I manually do a
>> double click, the property view is opened (I inserted that sleep to
>> check this)...
>>
>> and indeed the log seems to report that the doubleclick is actually
>> performed:
>>
>> (AbstractSWTBot$2.java:160) - Sent event MouseDoubleClick [8]:
>> MouseEvent{Tree {} time=-2044031767 data=null button=0 stateMask=0 x=0
>> y=0 count=0} to Tree node with text: Library
>>
>> am I doing something wrong?
>>
>> thanks in advance
>> Lorenzo
>>
>
>
>


--
Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
ICQ# lbetto, 16080134 (GNU/Linux User # 158233)
HOME: http://www.lorenzobettini.it MUSIC: http://www.purplesucker.com
http://www.myspace.com/supertrouperabba
BLOGS: http://tronprog.blogspot.com http://longlivemusic.blogspot.com
http://www.gnu.org/software/src-highlite
http://www.gnu.org/software/gengetopt
http://www.gnu.org/software/gengen http://doublecpp.sourceforge.net


Re: performing doubleclick on a tree item [message #723366 is a reply to message #708983] Thu, 08 September 2011 12:21 Go to previous messageGo to next message
Lorenzo Bettini is currently offline Lorenzo BettiniFriend
Messages: 1812
Registered: July 2009
Location: Firenze, Italy
Senior Member
I noted that no change on the git repository has been pushed for some
months now... is anyone actively working on swtbot?

cheers
Lorenzo

On 08/03/2011 12:32 PM, Lorenzo Bettini wrote:
> I filed a new bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=353720
> and provided a patch... hope it is applied soon
>
> cheers
> Lorenzo
>
> On 08/02/2011 10:10 AM, Lorenzo Bettini wrote:
>> I guess that's related to https://bugs.eclipse.org/bugs/process_bug.cgi
>>
>> the fix is quite easy, but it looks like it hasn't been applied yet...
>>
>> On 08/01/2011 06:31 PM, Lorenzo Bettini wrote:
>>> Hi
>>>
>>> I'm testing the behavior of an EMF Editor which has a tree viewer; I
>>> want to select an item of the tree and perform a doubleclick.
>>>
>>> Upon doubleclick the property view should be shown (and I checked
>>> manually) and it works;
>>>
>>> however, if I write the following swtbot test, it fails: the properties
>>> view cannot be found, and indeed, by looking at the test in execution
>>> the property view is not shown at all...
>>>
>>> @Test
>>> public void canOpenPropertyView() throws Exception {
>>> SWTBotTreeItem treeItemRoot = getRootOfEditorTree();
>>> treeItemRoot.expand().getNode("Library").doubleClick();
>>> bot.sleep(20000);
>>> bot.viewByTitle("Properties");
>>> }
>>>
>>> the strange thing is that if on the running eclipse I manually do a
>>> double click, the property view is opened (I inserted that sleep to
>>> check this)...
>>>
>>> and indeed the log seems to report that the doubleclick is actually
>>> performed:
>>>
>>> (AbstractSWTBot$2.java:160) - Sent event MouseDoubleClick [8]:
>>> MouseEvent{Tree {} time=-2044031767 data=null button=0 stateMask=0 x=0
>>> y=0 count=0} to Tree node with text: Library
>>>
>>> am I doing something wrong?
>>>
>>> thanks in advance
>>> Lorenzo
>>>
>>
>>
>>
>
>


--
Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
ICQ# lbetto, 16080134 (GNU/Linux User # 158233)
HOME: http://www.lorenzobettini.it MUSIC: http://www.purplesucker.com
http://www.myspace.com/supertrouperabba
BLOGS: http://tronprog.blogspot.com http://longlivemusic.blogspot.com
http://www.gnu.org/software/src-highlite
http://www.gnu.org/software/gengetopt
http://www.gnu.org/software/gengen http://doublecpp.sourceforge.net


Re: performing doubleclick on a tree item [message #723382 is a reply to message #723366] Thu, 08 September 2011 12:41 Go to previous messageGo to next message
Mariot Chauvin is currently offline Mariot ChauvinFriend
Messages: 174
Registered: July 2009
Senior Member
Hi Lorenzo,

Le 08/09/2011 14:21, Lorenzo Bettini a écrit :
> I noted that no change on the git repository has been pushed for some
> months now... is anyone actively working on swtbot?

We are not *actively* working on it, has it does its work in general,
but we try to fix issues when we have time to do it.

If you absolutely need the patch application you can fork and maintain
your fork easily thanks to git.

Anyway thanks for your patch, we will have a look.

Cheers,

Mariot

>
> cheers
> Lorenzo
>
> On 08/03/2011 12:32 PM, Lorenzo Bettini wrote:
>> I filed a new bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=353720
>> and provided a patch... hope it is applied soon
>>
>> cheers
>> Lorenzo
>>
>> On 08/02/2011 10:10 AM, Lorenzo Bettini wrote:
>>> I guess that's related to https://bugs.eclipse.org/bugs/process_bug.cgi
>>>
>>> the fix is quite easy, but it looks like it hasn't been applied yet...
>>>
>>> On 08/01/2011 06:31 PM, Lorenzo Bettini wrote:
>>>> Hi
>>>>
>>>> I'm testing the behavior of an EMF Editor which has a tree viewer; I
>>>> want to select an item of the tree and perform a doubleclick.
>>>>
>>>> Upon doubleclick the property view should be shown (and I checked
>>>> manually) and it works;
>>>>
>>>> however, if I write the following swtbot test, it fails: the properties
>>>> view cannot be found, and indeed, by looking at the test in execution
>>>> the property view is not shown at all...
>>>>
>>>> @Test
>>>> public void canOpenPropertyView() throws Exception {
>>>> SWTBotTreeItem treeItemRoot = getRootOfEditorTree();
>>>> treeItemRoot.expand().getNode("Library").doubleClick();
>>>> bot.sleep(20000);
>>>> bot.viewByTitle("Properties");
>>>> }
>>>>
>>>> the strange thing is that if on the running eclipse I manually do a
>>>> double click, the property view is opened (I inserted that sleep to
>>>> check this)...
>>>>
>>>> and indeed the log seems to report that the doubleclick is actually
>>>> performed:
>>>>
>>>> (AbstractSWTBot$2.java:160) - Sent event MouseDoubleClick [8]:
>>>> MouseEvent{Tree {} time=-2044031767 data=null button=0 stateMask=0 x=0
>>>> y=0 count=0} to Tree node with text: Library
>>>>
>>>> am I doing something wrong?
>>>>
>>>> thanks in advance
>>>> Lorenzo
>>>>
>>>
>>>
>>>
>>
>>
>
>


--
Mariot Chauvin @ Obeo

Blog : http://mariot-thoughts.blogspot.com
Twitter :http://twitter.com/mchv
Professional support : http://obeo.fr/pages/maintenance-and-support/
Re: performing doubleclick on a tree item [message #724945 is a reply to message #723382] Tue, 13 September 2011 14:54 Go to previous messageGo to next message
Lorenzo Bettini is currently offline Lorenzo BettiniFriend
Messages: 1812
Registered: July 2009
Location: Firenze, Italy
Senior Member
On 09/08/2011 02:41 PM, Mariot Chauvin wrote:
> Hi Lorenzo,
>
> Le 08/09/2011 14:21, Lorenzo Bettini a écrit :
>> I noted that no change on the git repository has been pushed for some
>> months now... is anyone actively working on swtbot?
>
> We are not *actively* working on it, has it does its work in general,
> but we try to fix issues when we have time to do it.
>

Hi Mariot

sorry I don't understand the above sentence 'has it does its work in
general'... do you mean that you will not maintain SWTBOT anymore?

thanks in advance
cheers
Lorenzo

> If you absolutely need the patch application you can fork and maintain
> your fork easily thanks to git.
>
> Anyway thanks for your patch, we will have a look.
>
> Cheers,
>
> Mariot
>
>>
>> cheers
>> Lorenzo
>>
>> On 08/03/2011 12:32 PM, Lorenzo Bettini wrote:
>>> I filed a new bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=353720
>>> and provided a patch... hope it is applied soon
>>>
>>> cheers
>>> Lorenzo
>>>
>>> On 08/02/2011 10:10 AM, Lorenzo Bettini wrote:
>>>> I guess that's related to https://bugs.eclipse.org/bugs/process_bug.cgi
>>>>
>>>> the fix is quite easy, but it looks like it hasn't been applied yet...
>>>>
>>>> On 08/01/2011 06:31 PM, Lorenzo Bettini wrote:
>>>>> Hi
>>>>>
>>>>> I'm testing the behavior of an EMF Editor which has a tree viewer; I
>>>>> want to select an item of the tree and perform a doubleclick.
>>>>>
>>>>> Upon doubleclick the property view should be shown (and I checked
>>>>> manually) and it works;
>>>>>
>>>>> however, if I write the following swtbot test, it fails: the
>>>>> properties
>>>>> view cannot be found, and indeed, by looking at the test in execution
>>>>> the property view is not shown at all...
>>>>>
>>>>> @Test
>>>>> public void canOpenPropertyView() throws Exception {
>>>>> SWTBotTreeItem treeItemRoot = getRootOfEditorTree();
>>>>> treeItemRoot.expand().getNode("Library").doubleClick();
>>>>> bot.sleep(20000);
>>>>> bot.viewByTitle("Properties");
>>>>> }
>>>>>
>>>>> the strange thing is that if on the running eclipse I manually do a
>>>>> double click, the property view is opened (I inserted that sleep to
>>>>> check this)...
>>>>>
>>>>> and indeed the log seems to report that the doubleclick is actually
>>>>> performed:
>>>>>
>>>>> (AbstractSWTBot$2.java:160) - Sent event MouseDoubleClick [8]:
>>>>> MouseEvent{Tree {} time=-2044031767 data=null button=0 stateMask=0 x=0
>>>>> y=0 count=0} to Tree node with text: Library
>>>>>
>>>>> am I doing something wrong?
>>>>>
>>>>> thanks in advance
>>>>> Lorenzo
>>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>


--
Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
ICQ# lbetto, 16080134 (GNU/Linux User # 158233)
HOME: http://www.lorenzobettini.it MUSIC: http://www.purplesucker.com
http://www.myspace.com/supertrouperabba
BLOGS: http://tronprog.blogspot.com http://longlivemusic.blogspot.com
http://www.gnu.org/software/src-highlite
http://www.gnu.org/software/gengetopt
http://www.gnu.org/software/gengen http://doublecpp.sourceforge.net


Re: performing doubleclick on a tree item [message #724946 is a reply to message #723382] Tue, 13 September 2011 14:54 Go to previous messageGo to next message
Lorenzo Bettini is currently offline Lorenzo BettiniFriend
Messages: 1812
Registered: July 2009
Location: Firenze, Italy
Senior Member
On 09/08/2011 02:41 PM, Mariot Chauvin wrote:
> Hi Lorenzo,
>
> Le 08/09/2011 14:21, Lorenzo Bettini a écrit :
>> I noted that no change on the git repository has been pushed for some
>> months now... is anyone actively working on swtbot?
>
> We are not *actively* working on it, has it does its work in general,
> but we try to fix issues when we have time to do it.
>

Hi Mariot

sorry I don't understand the above sentence 'has it does its work in
general'... do you mean that you will not maintain SWTBOT anymore?

thanks in advance
cheers
Lorenzo

> If you absolutely need the patch application you can fork and maintain
> your fork easily thanks to git.
>
> Anyway thanks for your patch, we will have a look.
>
> Cheers,
>
> Mariot
>
>>
>> cheers
>> Lorenzo
>>
>> On 08/03/2011 12:32 PM, Lorenzo Bettini wrote:
>>> I filed a new bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=353720
>>> and provided a patch... hope it is applied soon
>>>
>>> cheers
>>> Lorenzo
>>>
>>> On 08/02/2011 10:10 AM, Lorenzo Bettini wrote:
>>>> I guess that's related to https://bugs.eclipse.org/bugs/process_bug.cgi
>>>>
>>>> the fix is quite easy, but it looks like it hasn't been applied yet...
>>>>
>>>> On 08/01/2011 06:31 PM, Lorenzo Bettini wrote:
>>>>> Hi
>>>>>
>>>>> I'm testing the behavior of an EMF Editor which has a tree viewer; I
>>>>> want to select an item of the tree and perform a doubleclick.
>>>>>
>>>>> Upon doubleclick the property view should be shown (and I checked
>>>>> manually) and it works;
>>>>>
>>>>> however, if I write the following swtbot test, it fails: the
>>>>> properties
>>>>> view cannot be found, and indeed, by looking at the test in execution
>>>>> the property view is not shown at all...
>>>>>
>>>>> @Test
>>>>> public void canOpenPropertyView() throws Exception {
>>>>> SWTBotTreeItem treeItemRoot = getRootOfEditorTree();
>>>>> treeItemRoot.expand().getNode("Library").doubleClick();
>>>>> bot.sleep(20000);
>>>>> bot.viewByTitle("Properties");
>>>>> }
>>>>>
>>>>> the strange thing is that if on the running eclipse I manually do a
>>>>> double click, the property view is opened (I inserted that sleep to
>>>>> check this)...
>>>>>
>>>>> and indeed the log seems to report that the doubleclick is actually
>>>>> performed:
>>>>>
>>>>> (AbstractSWTBot$2.java:160) - Sent event MouseDoubleClick [8]:
>>>>> MouseEvent{Tree {} time=-2044031767 data=null button=0 stateMask=0 x=0
>>>>> y=0 count=0} to Tree node with text: Library
>>>>>
>>>>> am I doing something wrong?
>>>>>
>>>>> thanks in advance
>>>>> Lorenzo
>>>>>
>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>


--
Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
ICQ# lbetto, 16080134 (GNU/Linux User # 158233)
HOME: http://www.lorenzobettini.it MUSIC: http://www.purplesucker.com
http://www.myspace.com/supertrouperabba
BLOGS: http://tronprog.blogspot.com http://longlivemusic.blogspot.com
http://www.gnu.org/software/src-highlite
http://www.gnu.org/software/gengetopt
http://www.gnu.org/software/gengen http://doublecpp.sourceforge.net


Re: performing doubleclick on a tree item [message #724973 is a reply to message #724945] Tue, 13 September 2011 16:02 Go to previous messageGo to next message
Mariot Chauvin is currently offline Mariot ChauvinFriend
Messages: 174
Registered: July 2009
Senior Member
Le 13/09/2011 16:54, Lorenzo Bettini a écrit :
> On 09/08/2011 02:41 PM, Mariot Chauvin wrote:
>> Hi Lorenzo,
>>
>> Le 08/09/2011 14:21, Lorenzo Bettini a écrit :
>>> I noted that no change on the git repository has been pushed for some
>>> months now... is anyone actively working on swtbot?
>>
>> We are not *actively* working on it, has it does its work in general,
>> but we try to fix issues when we have time to do it.
>>
>
> Hi Mariot
>
> sorry I don't understand the above sentence 'has it does its work in
> general'... do you mean that you will not maintain SWTBOT anymore?
>

No sorry if it was unclear.
I mean that we (at least I) do not work currently on new features or
major refactoring.
We maintain SWTBot, but we fix issues and integrate patches only when we
have time to do it.

If you need professional support have a look to :
http://obeo.fr/pages/maintenance-et-support/lts/en

If you don't need any support, just need a SWTBot version with some
patches applied and can't wait, you could easily clone the repo thanks
to git and build your own version :).

I hope I was clear this time, and one more time I thank you for your
contribution.

> thanks in advance
> cheers
> Lorenzo
>
>> If you absolutely need the patch application you can fork and maintain
>> your fork easily thanks to git.
>>
>> Anyway thanks for your patch, we will have a look.
>>
>> Cheers,
>>
>> Mariot
>>
>>>
>>> cheers
>>> Lorenzo
>>>
>>> On 08/03/2011 12:32 PM, Lorenzo Bettini wrote:
>>>> I filed a new bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=353720
>>>> and provided a patch... hope it is applied soon
>>>>
>>>> cheers
>>>> Lorenzo
>>>>
>>>> On 08/02/2011 10:10 AM, Lorenzo Bettini wrote:
>>>>> I guess that's related to
>>>>> https://bugs.eclipse.org/bugs/process_bug.cgi
>>>>>
>>>>> the fix is quite easy, but it looks like it hasn't been applied yet...
>>>>>
>>>>> On 08/01/2011 06:31 PM, Lorenzo Bettini wrote:
>>>>>> Hi
>>>>>>
>>>>>> I'm testing the behavior of an EMF Editor which has a tree viewer; I
>>>>>> want to select an item of the tree and perform a doubleclick.
>>>>>>
>>>>>> Upon doubleclick the property view should be shown (and I checked
>>>>>> manually) and it works;
>>>>>>
>>>>>> however, if I write the following swtbot test, it fails: the
>>>>>> properties
>>>>>> view cannot be found, and indeed, by looking at the test in execution
>>>>>> the property view is not shown at all...
>>>>>>
>>>>>> @Test
>>>>>> public void canOpenPropertyView() throws Exception {
>>>>>> SWTBotTreeItem treeItemRoot = getRootOfEditorTree();
>>>>>> treeItemRoot.expand().getNode("Library").doubleClick();
>>>>>> bot.sleep(20000);
>>>>>> bot.viewByTitle("Properties");
>>>>>> }
>>>>>>
>>>>>> the strange thing is that if on the running eclipse I manually do a
>>>>>> double click, the property view is opened (I inserted that sleep to
>>>>>> check this)...
>>>>>>
>>>>>> and indeed the log seems to report that the doubleclick is actually
>>>>>> performed:
>>>>>>
>>>>>> (AbstractSWTBot$2.java:160) - Sent event MouseDoubleClick [8]:
>>>>>> MouseEvent{Tree {} time=-2044031767 data=null button=0 stateMask=0
>>>>>> x=0
>>>>>> y=0 count=0} to Tree node with text: Library
>>>>>>
>>>>>> am I doing something wrong?
>>>>>>
>>>>>> thanks in advance
>>>>>> Lorenzo
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>
Re: performing doubleclick on a tree item [message #724990 is a reply to message #724973] Tue, 13 September 2011 16:48 Go to previous message
Lorenzo Bettini is currently offline Lorenzo BettiniFriend
Messages: 1812
Registered: July 2009
Location: Firenze, Italy
Senior Member
On 09/13/2011 06:02 PM, Mariot Chauvin wrote:
> Le 13/09/2011 16:54, Lorenzo Bettini a écrit :
>> On 09/08/2011 02:41 PM, Mariot Chauvin wrote:
>>> Hi Lorenzo,
>>>
>>> Le 08/09/2011 14:21, Lorenzo Bettini a écrit :
>>>> I noted that no change on the git repository has been pushed for some
>>>> months now... is anyone actively working on swtbot?
>>>
>>> We are not *actively* working on it, has it does its work in general,
>>> but we try to fix issues when we have time to do it.
>>>
>>
>> Hi Mariot
>>
>> sorry I don't understand the above sentence 'has it does its work in
>> general'... do you mean that you will not maintain SWTBOT anymore?
>>
>
> No sorry if it was unclear.
> I mean that we (at least I) do not work currently on new features or
> major refactoring.
> We maintain SWTBot, but we fix issues and integrate patches only when we
> have time to do it.
>

OK, I just wanted to be sure that a cool project like SWTBOT didn't
become a dead-project :)

> If you need professional support have a look to :
> http://obeo.fr/pages/maintenance-et-support/lts/en
>
> If you don't need any support, just need a SWTBot version with some
> patches applied and can't wait, you could easily clone the repo thanks
> to git and build your own version :).
>

that's what I had already done, for my personal use; I wouldn't want to
create a fork though :)

by the way, I saw that many bugs are quite critical for testing
purposes, like this one, and some others (e.g., not direct support for
context submenus).

> I hope I was clear this time, and one more time I thank you for your
> contribution.
>

thank you!
and I hope you all will soon have time to introduce possible new features :)

cheers
Lorenzo

>> thanks in advance
>> cheers
>> Lorenzo
>>
>>> If you absolutely need the patch application you can fork and maintain
>>> your fork easily thanks to git.
>>>
>>> Anyway thanks for your patch, we will have a look.
>>>
>>> Cheers,
>>>
>>> Mariot
>>>
>>>>
>>>> cheers
>>>> Lorenzo
>>>>
>>>> On 08/03/2011 12:32 PM, Lorenzo Bettini wrote:
>>>>> I filed a new bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=353720
>>>>> and provided a patch... hope it is applied soon
>>>>>
>>>>> cheers
>>>>> Lorenzo
>>>>>
>>>>> On 08/02/2011 10:10 AM, Lorenzo Bettini wrote:
>>>>>> I guess that's related to
>>>>>> https://bugs.eclipse.org/bugs/process_bug.cgi
>>>>>>
>>>>>> the fix is quite easy, but it looks like it hasn't been applied
>>>>>> yet...
>>>>>>
>>>>>> On 08/01/2011 06:31 PM, Lorenzo Bettini wrote:
>>>>>>> Hi
>>>>>>>
>>>>>>> I'm testing the behavior of an EMF Editor which has a tree viewer; I
>>>>>>> want to select an item of the tree and perform a doubleclick.
>>>>>>>
>>>>>>> Upon doubleclick the property view should be shown (and I checked
>>>>>>> manually) and it works;
>>>>>>>
>>>>>>> however, if I write the following swtbot test, it fails: the
>>>>>>> properties
>>>>>>> view cannot be found, and indeed, by looking at the test in
>>>>>>> execution
>>>>>>> the property view is not shown at all...
>>>>>>>
>>>>>>> @Test
>>>>>>> public void canOpenPropertyView() throws Exception {
>>>>>>> SWTBotTreeItem treeItemRoot = getRootOfEditorTree();
>>>>>>> treeItemRoot.expand().getNode("Library").doubleClick();
>>>>>>> bot.sleep(20000);
>>>>>>> bot.viewByTitle("Properties");
>>>>>>> }
>>>>>>>
>>>>>>> the strange thing is that if on the running eclipse I manually do a
>>>>>>> double click, the property view is opened (I inserted that sleep to
>>>>>>> check this)...
>>>>>>>
>>>>>>> and indeed the log seems to report that the doubleclick is actually
>>>>>>> performed:
>>>>>>>
>>>>>>> (AbstractSWTBot$2.java:160) - Sent event MouseDoubleClick [8]:
>>>>>>> MouseEvent{Tree {} time=-2044031767 data=null button=0 stateMask=0
>>>>>>> x=0
>>>>>>> y=0 count=0} to Tree node with text: Library
>>>>>>>
>>>>>>> am I doing something wrong?
>>>>>>>
>>>>>>> thanks in advance
>>>>>>> Lorenzo
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>


--
Lorenzo Bettini, PhD in Computer Science, DI, Univ. Torino
ICQ# lbetto, 16080134 (GNU/Linux User # 158233)
HOME: http://www.lorenzobettini.it MUSIC: http://www.purplesucker.com
http://www.myspace.com/supertrouperabba
BLOGS: http://tronprog.blogspot.com http://longlivemusic.blogspot.com
http://www.gnu.org/software/src-highlite
http://www.gnu.org/software/gengetopt
http://www.gnu.org/software/gengen http://doublecpp.sourceforge.net


Previous Topic:Selecting "Help -> About Eclipse" gives WidgetNotFoundException
Next Topic:How to emulate mouse click to add a "breakpoint" in eclipse IDE to debug my app source cod
Goto Forum:
  


Current Time: Thu Mar 28 15:07:35 GMT 2024

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

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

Back to the top