[dba-issues] [Issue 100870] Changing controlpropertie s by testtool does not work on Solaris

2009-11-16 Thread oc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=100870


User oc changed the following:

What|Old value |New value

Target milestone|OOo 3.2   |OOo 3.x





--- Additional comments from o...@openoffice.org Mon Nov 16 13:00:38 + 
2009 ---
not a showstopper for 3.2 = 3.x

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[dba-issues] [Issue 100870] Changing controlpropertie s by testtool does not work on Solaris

2009-05-29 Thread fs
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=100870


User fs changed the following:

What|Old value |New value

  Status|RESOLVED  |REOPENED

  Resolution|WORKSFORME|





--- Additional comments from f...@openoffice.org Fri May 29 10:11:41 + 
2009 ---
As explained by Oliver, the cited warning indeed points to the problem, in a
very indirect way. Since I didn't understand this indirection, yet :), I
modified the testtool script to re-open the property browser after setting the
help ID, and to check it has been set correctly - in fact, this check fails, the
property is empty.

Re-opening issue.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[dba-issues] [Issue 100870] Changing controlpropertie s by testtool does not work on Solaris

2009-05-29 Thread fs
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=100870


User fs changed the following:

What|Old value |New value

 Assigned to|oc|fs

  Status|REOPENED  |NEW





--- Additional comments from f...@openoffice.org Fri May 29 10:12:26 + 
2009 ---
grabbing

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[dba-issues] [Issue 100870] Changing controlpropertie s by testtool does not work on Solaris

2009-05-29 Thread fs
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=100870


User fs changed the following:

What|Old value |New value

 Assigned to|fs|oc





--- Additional comments from f...@openoffice.org Fri May 29 10:43:12 + 
2009 ---
fs-oc: back to you: The code for entering the HelpURL is as follows:
  Kontext TabGeneralControl
  '/// Enter in 'Help URL' as value exactly 'HID:123456'
  TabGeneralControl.TypeKeys TAB , true
  HelpURL.setText HID:123456
  TabGeneralControl.TypeKeys RETURN,true
That is, you focus the General tab page, press TAB once (so the first control
on that page is focused), then enter some text in the HelpURL field (which does
not have the focus at that time), and then press RETURN in the General page.
Unfortunately, this RETURN doesn't arrive at the HelpURL control, since it does
not have the focus. So, the control has no chance of committing its content.

Why this works on the other platforms is beyond me - I suppose that's by
accident only.

Several possibilities come to my mind how to fix that:
- do
HelpURL.TypeKeys RETURN,true
  instead of 
TabGeneralControl.TypeKeys RETURN,true
  Then, the RETURN, which commits the content, is sent to the HelpURL
  control. This is what I tried, and it works fine.
  Disadvantage: It's still not really a simulation of what users do, since
  HelpURL does not have the focus at that time.
  (Except ... if the true parameter at the TypeKeys method has the
  semantics of focus the control before typing keys - in this case, your
  original code is correct, and it's a testtool bug of not actually focusing
  the control.)
- Do a
Kontext HelpURL
  before typing the RETURN. In my understanding (which is pretty limited with
  respect to testtool scripts), this could also fix the issue.
- Use the proper number of TAB keys to travel to the HelpURL control, instead
  of doing only one TAB.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[dba-issues] [Issue 100870] Changing controlpropertie s by testtool does not work on Solaris

2009-05-29 Thread fs
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=100870





--- Additional comments from f...@openoffice.org Fri May 29 10:47:55 + 
2009 ---
 (Except ... if the true parameter at the TypeKeys method has the
 semantics of focus the control before typing keys - in this case, your
 original code is correct, and it's a testtool bug of not actually focusing
 the control.)

Uhm, forget this. If the second parameter means set the focus to this window
(and according to the TypeKeys documentation, this indeed is the meaning), then
your script is *not* correct, since it then requests to set the focus to the
General tab page, not to the HelpURL. So, I indeed think typing the RETURN
into the HelpURL control instead of the TabGeneralControl is the right solution
here.


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[dba-issues] [Issue 100870] Changing controlpropertie s by testtool does not work on Solaris

2009-05-27 Thread fs
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=100870


User fs changed the following:

What|Old value |New value

 Assigned to|fs|oc





--- Additional comments from f...@openoffice.org Wed May 27 19:35:40 + 
2009 ---
fs-oc: cannot reproduce ...

As a preface, please let me say that the bug description here is somewhat ...
sparse. Besides that run the test ... is at least difficult to do for
non-QA-automation people (whyt not at least giving the path to the test file,
not to mention the link to the testtool documentation. Oh, well, we don't have
one ... so then ...): There will be a warning is a bug description which
usually leads me to simply putting a needmoreinfo keyword into the bug,
without doing anything else!

Okay, I managed to start the testtool, I found the test file, I successfully ran
it. The only warning I get is in tIBIS58, saying The control seems to be
not named in the document?! Verify!. Looking into the source of this test
method, I assume that I *should* have seen the message 'HID:123456' has not
been accepted as 'Help URL' value..

Alas, I didn't this warning, or any other one except the one mentioned above.
This was on unxsols4.pro, with testtool9, and DEV300.m47

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[dba-issues] [Issue 100870] Changing controlpropertie s by testtool does not work on Solaris

2009-05-27 Thread fs
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=100870


User fs changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |WORKSFORME





--- Additional comments from f...@openoffice.org Wed May 27 19:36:54 + 
2009 ---
resolving WORKSFORME

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[dba-issues] [Issue 100870] Changing controlpropertie s by testtool does not work on Solaris

2009-04-06 Thread oc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=100870
 Issue #|100870
 Summary|Changing controlproperties by testtool does not work o
|n Solaris
   Component|Database access
 Version|DEV300m45
Platform|Sun
 URL|
  OS/Version|Solaris
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|none
 Assigned to|fs
 Reported by|oc





--- Additional comments from o...@openoffice.org Mon Apr  6 08:07:45 + 
2009 ---
On Solaris run autotest spreadsheet/c_so7_pp1.bas. There will be a warning
because entering a help-id in the controlproperties does not work (it is entered
but  lost when the propertydialog is closed ) This does only occur with the
testtool but not when it is entered manually (could also be seen in other 
autotests)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org