I am trying to evaluate a performance tool for my application. 1. The architecture -> front-end designed with Access forms. Back-end is SQL server. The front-end talks to the backed through OLEDB. 2. Objective is to determine the response time of every sub-form, controls, etc.....
Would like to know some tools for the same. Thanks, Kiruthika This e-mail, and any attachments thereto, are intended only for use by the addressee(s) named herein and contain Honeywell confidential information. If you are not the intended recipient of this e-mail, you are hereby notified that any dissemination, distribution or copying which amounts to misappropriation of this e-mail and any attachments thereto, is strictly prohibited. If you have received this e-mail in error, please immediately notify me and permanently delete the original and any copy of any e-mail and any printout thereof -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, August 30, 2005 3:20 PM To: [email protected] Subject: Wtr-general Digest, Vol 21, Issue 85 Send Wtr-general mailing list submissions to [email protected] To subscribe or unsubscribe via the World Wide Web, visit http://rubyforge.org/mailman/listinfo/wtr-general or, via email, send a message with subject or body 'help' to [EMAIL PROTECTED] You can reach the person managing the list at [EMAIL PROTECTED] When replying, please edit your Subject line so it is more specific than "Re: Contents of Wtr-general digest..." Today's Topics: 1. re:cliccking ok in MS explorer (Nishita Acharya) 2. Re: re:cliccking ok in MS explorer (Ian Phillips) 3. Swing Testing (Ganapathi Raj) 4. Connecting to a second window (Mike Harris) 5. RE: Connecting to a second window (Zeljko Filipin) 6. RE: Connecting to a second window (Mike Harris) 7. RE: Connecting to a second window (Zeljko Filipin) ---------------------------------------------------------------------- Message: 1 Date: Tue, 30 Aug 2005 12:57:29 +0530 From: "Nishita Acharya" <[EMAIL PROTECTED]> Subject: [Wtr-general] re:cliccking ok in MS explorer To: <[email protected]> Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="windows-1252" Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/jpeg Size: 2743 bytes Desc: not available Url : http://rubyforge.org/pipermail/wtr-general/attachments/20050830/6399406a/att achment-0001.jpg ------------------------------ Message: 2 Date: Tue, 30 Aug 2005 09:47:55 +0200 From: Ian Phillips <[EMAIL PROTECTED]> Subject: Re: [Wtr-general] re:cliccking ok in MS explorer To: [email protected] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="iso-8859-1" HI Nishita. I have added the code as it is but it does not find the window. Do I need to change anything the the code you supplied? My test just stops when the popup window appears. Any ideas? Thanks for the help Ian On 8/30/05, Nishita Acharya <[EMAIL PROTECTED]> wrote: > > hi Ian, > i came across the same prob. This should help u:- > > 1. There is a prog called popups_test.rb in unitests > 2. include this code frm that prog in ur current prog > > def startClicker( button , waitTime = 0.5) > w = WinClicker.new > longName = $ie.dir.gsub("/" , "\\" ) > shortName = w.getShortFileName(longName) > c = "start rubyw #{shortName }\\watir\\clickJSDialog.rb #{button } #{ > waitTime} " > puts "Starting #{c}" > w.winsystem(c ) > w=nil > end > 3. Wherever necessary wirte this > startClicker("OK") > $ie.button(:value,"button_value").click > * Regards, > > Nishita Acharya > Bangalore. > * > > > _______________________________________________ > Wtr-general mailing list > [email protected] > http://rubyforge.org/mailman/listinfo/wtr-general > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/wtr-general/attachments/20050830/07098107/att achment-0001.htm ------------------------------ Message: 3 Date: Tue, 30 Aug 2005 14:47:48 +0530 From: "Ganapathi Raj" <[EMAIL PROTECTED]> Subject: [Wtr-general] Swing Testing To: <[email protected]> Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="iso-8859-1" Hi All, Is it possible to simulate(Test) the Swing Application through Watir. Cheers Gan This message is free from Virus - IMSS -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/wtr-general/attachments/20050830/46adf3bd/att achment-0001.htm ------------------------------ Message: 4 Date: Tue, 30 Aug 2005 10:38:57 +0100 From: "Mike Harris" <[EMAIL PROTECTED]> Subject: [Wtr-general] Connecting to a second window To: <[email protected]> Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="us-ascii" I have just started to use Watir and am trying to connect to a new window using this code, but I fail to goto the link. Can you please give me some advice about why this may be failing. Thanks def test_03_ViewAbout puts "Test 3...View About" goToSignOnPage() login() begin statusMessage="Invoking About" aboutlink=$ie.getLink(:text,"About") statusMessage="goto link failed" puts("goto link failed") $ie.goto(aboutlink.href) puts("attach failed") statusMessage="attach failed" $ieAbout = IE.attach(:title, /About KALIDO MDM/) statusMessage="assert failed" assert($ieAbout.title=="About KALIDO MDM","Failed to invoke About") statusMessage="close failed" $ieAbout.close rescue errorstring ="Failed while " + statusMessage failTest(3,errorstring) end end Mike Harris ------------------------------ Message: 5 Date: Tue, 30 Aug 2005 11:43:51 +0200 From: "Zeljko Filipin" <[EMAIL PROTECTED]> Subject: RE: [Wtr-general] Connecting to a second window To: <[email protected]> Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="us-ascii" In which line does your script fail (goto or attach)? What error message do you get? Zeljko -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Harris Sent: Tuesday, August 30, 2005 11:39 AM To: [email protected] Subject: [Wtr-general] Connecting to a second window I have just started to use Watir and am trying to connect to a new window using this code, but I fail to goto the link. Can you please give me some advice about why this may be failing. Thanks def test_03_ViewAbout puts "Test 3...View About" goToSignOnPage() login() begin statusMessage="Invoking About" aboutlink=$ie.getLink(:text,"About") statusMessage="goto link failed" puts("goto link failed") $ie.goto(aboutlink.href) puts("attach failed") statusMessage="attach failed" $ieAbout = IE.attach(:title, /About KALIDO MDM/) statusMessage="assert failed" assert($ieAbout.title=="About KALIDO MDM","Failed to invoke About") statusMessage="close failed" $ieAbout.close rescue errorstring ="Failed while " + statusMessage failTest(3,errorstring) end end Mike Harris _______________________________________________ Wtr-general mailing list [email protected] http://rubyforge.org/mailman/listinfo/wtr-general ------------------------------ Message: 6 Date: Tue, 30 Aug 2005 10:52:32 +0100 From: "Mike Harris" <[EMAIL PROTECTED]> Subject: RE: [Wtr-general] Connecting to a second window To: <[email protected]> Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="us-ascii" The last line put to the command console is attach failed. So I assume that it is the attach that has failed -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Zeljko Filipin Sent: 30 August 2005 10:44 To: [email protected] Subject: RE: [Wtr-general] Connecting to a second window In which line does your script fail (goto or attach)? What error message do you get? Zeljko -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Harris Sent: Tuesday, August 30, 2005 11:39 AM To: [email protected] Subject: [Wtr-general] Connecting to a second window I have just started to use Watir and am trying to connect to a new window using this code, but I fail to goto the link. Can you please give me some advice about why this may be failing. Thanks def test_03_ViewAbout puts "Test 3...View About" goToSignOnPage() login() begin statusMessage="Invoking About" aboutlink=$ie.getLink(:text,"About") statusMessage="goto link failed" puts("goto link failed") $ie.goto(aboutlink.href) puts("attach failed") statusMessage="attach failed" $ieAbout = IE.attach(:title, /About KALIDO MDM/) statusMessage="assert failed" assert($ieAbout.title=="About KALIDO MDM","Failed to invoke About") statusMessage="close failed" $ieAbout.close rescue errorstring ="Failed while " + statusMessage failTest(3,errorstring) end end Mike Harris _______________________________________________ Wtr-general mailing list [email protected] http://rubyforge.org/mailman/listinfo/wtr-general _______________________________________________ Wtr-general mailing list [email protected] http://rubyforge.org/mailman/listinfo/wtr-general ------------------------------ Message: 7 Date: Tue, 30 Aug 2005 11:57:07 +0200 From: "Zeljko Filipin" <[EMAIL PROTECTED]> Subject: RE: [Wtr-general] Connecting to a second window To: <[email protected]> Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset="us-ascii" Try this $ieAbout = Watir::IE.attach(:title, /About KALIDO MDM/) instead of $ieAbout = IE.attach(:title, /About KALIDO MDM/) Zeljko -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Harris Sent: Tuesday, August 30, 2005 11:53 AM To: [email protected] Subject: RE: [Wtr-general] Connecting to a second window The last line put to the command console is attach failed. So I assume that it is the attach that has failed -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Zeljko Filipin Sent: 30 August 2005 10:44 To: [email protected] Subject: RE: [Wtr-general] Connecting to a second window In which line does your script fail (goto or attach)? What error message do you get? Zeljko -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Harris Sent: Tuesday, August 30, 2005 11:39 AM To: [email protected] Subject: [Wtr-general] Connecting to a second window I have just started to use Watir and am trying to connect to a new window using this code, but I fail to goto the link. Can you please give me some advice about why this may be failing. Thanks def test_03_ViewAbout puts "Test 3...View About" goToSignOnPage() login() begin statusMessage="Invoking About" aboutlink=$ie.getLink(:text,"About") statusMessage="goto link failed" puts("goto link failed") $ie.goto(aboutlink.href) puts("attach failed") statusMessage="attach failed" $ieAbout = IE.attach(:title, /About KALIDO MDM/) statusMessage="assert failed" assert($ieAbout.title=="About KALIDO MDM","Failed to invoke About") statusMessage="close failed" $ieAbout.close rescue errorstring ="Failed while " + statusMessage failTest(3,errorstring) end end Mike Harris _______________________________________________ Wtr-general mailing list [email protected] http://rubyforge.org/mailman/listinfo/wtr-general _______________________________________________ Wtr-general mailing list [email protected] http://rubyforge.org/mailman/listinfo/wtr-general _______________________________________________ Wtr-general mailing list [email protected] http://rubyforge.org/mailman/listinfo/wtr-general ------------------------------ _______________________________________________ Wtr-general mailing list [email protected] http://rubyforge.org/mailman/listinfo/wtr-general End of Wtr-general Digest, Vol 21, Issue 85 ******************************************* _______________________________________________ Wtr-general mailing list [email protected] http://rubyforge.org/mailman/listinfo/wtr-general
