[wtr-general] Test Results Report Methods

2009-04-15 Thread Jason Shelton
All, I have always used Excel as my test output/results format, but I would like to enhance this. I have spoken with our DBA, and, if necessary he will create a table in our database for my test automation results. What I am asking is if you all can recommend any techniques and/or methodo

[wtr-general] Re: Test Results Report Methods

2009-04-20 Thread Jason Shelton
) and then I use xsl to transform them > > to html. It's not the best and I'm working on better reporting in my > > next framework. I'll be using Rails, so I'll likely store results in > > MySQL and then make reporting pages in the Rails app. > > > > -T

[wtr-general] Re: Help needed in automation using Watir

2009-05-14 Thread Jason Shelton
I use a tool called PageSpy. http://www.sembel.net/ - Shelton > Date: Thu, 14 May 2009 14:37:00 +0530 > Subject: [wtr-general] Re: Help needed in automation using Watir > From: karim@gmail.com > To: watir-general@googlegroups.com > > > you can use the IE developer tool bar on IE and

[wtr-general] Install/Uninstall

2009-05-27 Thread Jason Shelton
All, I am building an automated acceptance test for our nightly builds. I need to write a script that will constantly check the install directory for the new build, uninstall the previous build, and install the new build. Does anyone have an algorithm for this process? Is there a way to

[wtr-general] Re: Office 2007 - Excel

2009-06-08 Thread Jason Shelton
I have upgraded to 2007, and my tests still work fine. > Subject: [wtr-general] Re: Office 2007 - Excel > Date: Mon, 8 Jun 2009 08:42:26 -0500 > From: dduph...@redbrickhealth.com > To: watir-general@googlegroups.com > > > Shouldn't be a problem. > > > > -Original Message- > From: wa

[wtr-general] Watir calling web services

2010-05-10 Thread Jason Shelton
Hello, I am writing to ask if anyone has used Watir for web services/API level testing. If so, how? If not, what tools would you recommend for this testing? Thank you in advance for any help that you may provide. __

[wtr-general] Watir and the Automated Build Process

2011-07-05 Thread Jason Shelton
Hello All, I have two related questions about Watir and the automated build process. My team uses TFS for our builds. I looking for a way to use TFS to launch my Watir test suite from the 'automation' box. This test suite is not on the same box as the build processes, so I cannot launch the t

[wtr-general] Watir WebDriver Performance Error

2011-09-11 Thread Jason Shelton
Hello All, I am attempting to use the watir-webdriver-performance gem, but am getting an error when I try to execute the code below: require 'watir-webdriver' require 'watir-webdriver-performance' b.goto 'http://watir.com' load_secs = b.performance.summary[:response_time]/1000

RE: [wtr-general] Watir WebDriver Performance Error

2011-09-11 Thread Jason Shelton
All, I did not mention in my previous post that I am using IE 9, and I declare 'b' like this: b = Watir::Browser.new :ie Thanks again for your assistance. From: jas.shel...@hotmail.com To: watir-general@googlegroups.com Subject: [wtr-general] Watir WebDriver Performance Error Date: Su

[wtr-general] Watir Webdriver Performance Error

2011-12-05 Thread Jason Shelton
All, I am getting the attached error when I attempt to run a script that uses the Watir Webdriver performance gem, on IE 9. I cannot reproduce this error on Firefox or Chrome. Are there any particular settings that may need to be adjusted? I am running IE 9 on a Windows Server 2008 R2 machine

RE: [wtr-general] Watir Webdriver Performance Error

2011-12-06 Thread Jason Shelton
ton From: zeljko.fili...@wa-research.ch Date: Tue, 6 Dec 2011 10:47:19 +0100 Subject: Re: [wtr-general] Watir Webdriver Performance Error To: watir-general@googlegroups.com On Tue, Dec 6, 2011 at 7:22 AM, Jason Shelton wrote: > I am getting the attached error 1) Please copy/paste the text of the

[wtr-general] Ruby Array Question

2011-12-19 Thread Jason Shelton
All, I have setup a Ruby class, made up of a bunch of subroutines. Below is an illustration: class BigTestClass def scenario1#testScenario end def scenario2#testScenario end end I have an array that consists of the names of all of the subroutines above: allMyTests = {"scenario1",

[wtr-general] Re: Excel Ranges and Ruby

2008-12-01 Thread Jason Shelton
I have been using value, I accidentally left it out of my message. What I have looks like: array = (1,2,3)excel.Range("A1::A3").Value = array This puts a '1' into cells a1, a2, and a3. I want a1 = 1, a2 = 2, a3 = 3. Thanks in advance for your help. - Shelton> Date: Mon, 1 Dec 2008 10:57

[wtr-general] Re: Excel Ranges and Ruby

2008-12-01 Thread Jason Shelton
his to work.> > excel = WIN32OLE.connect('excel.Application')> array = ('1,2,3').split(',')> excel.Range("B207:D207").Value = array> > > > On Dec 1, 1:11 pm, Jason Shelton <[EMAIL PROTECTED]> wrote:> > I have been using value, I ac

[wtr-general] Re: Excel Ranges and Ruby

2008-12-01 Thread Jason Shelton
s.com> > > I got this to work.> > excel = WIN32OLE.connect('excel.Application')> array = ('1,2,3').split(',')> excel.Range("B207:D207").Value = array> > > > On Dec 1, 1:11 pm, Jason Shelton <[EMAIL PROTECTED]> wrote:>

[wtr-general] Re: Excel Ranges and Ruby

2008-12-01 Thread Jason Shelton
t; Date: Mon, 1 Dec 2008 11:27:28 -0800> Subject: [wtr-general] Re: Excel Ranges and Ruby> From: [EMAIL PROTECTED]> To: watir-general@googlegroups.com> > > I got this to work.> > excel = WIN32OLE.connect('excel.Application')> array = ('1,2,3').split

[wtr-general] Re: Opening an Excel file with a variable name

2008-12-17 Thread Jason Shelton
I discovered that my problem was that I had a newline character at the end of each array element. Once I removed the character, it worked fine. Thanks for your help. - Shelton> Date: Wed, 17 Dec 2008 10:02:11 -0600> From: b...@pettichord.com> To: watir-general@googlegroups.com> Subject: [wt

[wtr-general] Re: Opening an Excel file with a variable name

2008-12-17 Thread Jason Shelton
I have tried both proposed methods, and I am getting the same 'File not found' error. It seems that Ruby has a problem with using variables in certain scenarios. Previously, I was passing a parameter to a class named 'Test' with a function in it named 'go'. This is the syntax that I used, T

[wtr-general] Watir and Firefox

2009-02-10 Thread Jason Shelton
All, I haven't used Watir for about 7-8 months now, but I am now setting up a new framework using Watir. I am writing to ask about the latest updates to Watir, and its compatibility with Firefox. Which build of Watir should I install to get the version that supports both IE and Firefox? Ho

[wtr-general] Re: Watir and Firefox

2009-02-11 Thread Jason Shelton
watir will grab that> > version anyway...> > Setting up/selecting your browser is already covered in > the wiki which> you should refer to for these "getting started" types of > questions:> > http://wiki.openqa.org/display/WTR/Browser.new> > Regards

[wtr-general] Re: Watir and Firefox

2009-02-11 Thread Jason Shelton
ing started" types of > questions:> > http://wiki.openqa.org/display/WTR/Browser.new> > Regards,> > > John> > On Feb 10, 10:06 pm, Jason Shelton wrote:> > > All,> >> > I haven't used Watir for about 7-8 months now, but I am now >

[wtr-general] Re: Watir and Firefox

2009-02-11 Thread Jason Shelton
::Browser.default = 'firefox'$web = Watir::Browser.newInstead of$web = Watir::Browser.newWatir::Browser.default = 'firefox'That should workRegardsVenu Sent from my BlackBerry® from Reliance Mobile, India's No.1 Network. From: Jason Shelton Date: Wed, 11 Feb 2009 09:26:1

[wtr-general] Drop down Contents

2009-02-12 Thread Jason Shelton
All, I am writing to ask if anyone has a quick way of verifying the contents of a drop down. I have a list of names, and I want to verify that each name is being displayed in the drop down. Thanks in advance for all of your help. - Shelton __

[wtr-general] Re: Drop down Contents

2009-02-12 Thread Jason Shelton
. You can then store your expected results in an array and compare the two. Alex On 12 Feb 2009, at 17:29, Jason Shelton wrote: All, I am writing to ask if anyone has a quick way of verifying the contents of a drop down. I have a list of names, and I want to verify that each name

[wtr-general] Verify text on a popup

2009-02-12 Thread Jason Shelton
All, I have read the tutorial about killing a 'Windows Internet Explorer' javascript popup, but I am writing to ask if there is a way to verify the text on these popups first, with a method similar to .contains_text? If this question is not clear, I can elaborate. Thanks in advance. - She

[wtr-general] Re: Verify text on a popup

2009-02-12 Thread Jason Shelton
; easiest thing to do is probably to use autoit. Please reply back if> you have questions about it.> > Bill> > > On Thu, Feb 12, 2009 at 12:24 PM, Jason Shelton wrote:> > All,> >> > I have read the tutorial about killing a 'Windows Internet Explorer'

[wtr-general] Re: Verify text on a popup

2009-02-12 Thread Jason Shelton
.> > The documentation for the avaliable functions is here:> http://www.autoitscript.com/autoit3/docs/> > As a side note, I think there may be an autoit object instantiated> when you create an IE object with Watir, but I don't know if it's> meant to be directly

[wtr-general] Ruby Variable

2009-02-17 Thread Jason Shelton
All, I have a set of variables, with similar names, except for the last character. So for instance, lets say that I have three variables var1, var2, and var3. My problem is that I am trying to refer to these variables using a loop, and I am not quite sure how to make it work. Here is an

[wtr-general] Popup clicknowait question

2009-02-17 Thread Jason Shelton
All, I am trying the click_no_wait method to click the button in my application that causes a popup, but when I use it the script times out, and the button is never clicked. When I just use 'click' the button is clicked, and the popup is prompted. To use all of the popup techniques descri

[wtr-general] Re: Popup clicknowait question

2009-02-18 Thread Jason Shelton
All, I have tried all of the proposed methods on the Watir OpenQa site, but for some reason click_no_wait is not accessing the specified button. When I try it, whatever popup scheme I am using just times out. What is wrong with my code!!! Below is a snippet of my last attempt. Any new

[wtr-general] Re: Popup clicknowait question

2009-02-19 Thread Jason Shelton
-gene...@googlegroups.com] On Behalf Of Jason Shelton Sent: Wednesday, February 18, 2009 4:05 PM To: watir-general@googlegroups.com Subject: [wtr-general] Re: Popup clicknowait question All, I have tried all of the proposed methods on the Watir OpenQa site, but for some reason click_no_wa

[wtr-general] Re: Popup clicknowait question

2009-02-19 Thread Jason Shelton
xt,”&close”).click_no_wait From: watir-general@googlegroups.com [mailto:watir-gene...@googlegroups.com] On Behalf Of Jason Shelton Sent: Thursday, February 19, 2009 8:56 AM To: watir-general@googlegroups.com Subject: [wtr-general] Re: Popup clicknowait question Hello, My problem

[wtr-general] Re: Popup clicknowait question

2009-02-19 Thread Jason Shelton
up a simple repro of the problem I saw... > > Another thing I recall was that rubyw.exe (which was started when > calling click_no_wait) would sit at 97-99% CPU usage during the times > when I saw the long delays. > > > > On Thu, Feb 19, 2009 at 8:21 AM, Jason Shelton &g

[wtr-general] Select Lists

2009-02-20 Thread Jason Shelton
All, I have a control in my application, that looks a list box, but in the code it is treated as a select list. When I use the Watir select list commands, everything works fine. My problem is that when I first bring up the page that contains the list, one item in the list is already high

[wtr-general] Hiding the browser

2009-02-20 Thread Jason Shelton
All, Is there a new way of hiding the browser with Watir? It seems that ie.visible = false no longer works. Thanks alot. - Shelton _ Windows Live™: E-mail. Chat. Share. Get more ways to connect. http://windowslive.com/ex

[wtr-general] Re: Hiding the browser

2009-02-23 Thread Jason Shelton
@googlegroups.com Add $HIDE_IE=true before your IE process has been created.Thanks. Wesley Chen. On Sat, Feb 21, 2009 at 1:59 AM, Jason Shelton wrote: All, Is there a new way of hiding the browser with Watir? It seems that ie.visible = false no longer works. Thanks alot. - Shelton

[wtr-general] Save As Window

2009-02-23 Thread Jason Shelton
All, I am trying to connect to a 'Save As' window in my application. In the past, I have used 'file_field' to save files. Now, I have a situation where I get a 'File Download' popup window. If I click 'Save' on the popup window, I get a standard Windows 'Save As' window. How do I set th

[wtr-general] Array Elements

2009-02-23 Thread Jason Shelton
All, I am reading an xml file into an array of lines(arr[]). I want to look at each individual line (element) of the array, and determine if the element contains a certain block of text. Is there a "contains_text" method, or something similiar, for array elements? I want to find all elem

[wtr-general] Re: Array Elements

2009-02-24 Thread Jason Shelton
r-general@googlegroups.com > > > > second_array=[] ; first_array.each{|a| second_array << a if a =~ / > expected_text/} > > > On Feb 23, 3:53 pm, Jason Shelton wrote: > > All, > > > > I am reading an xml file into an array of lines(arr[]). I want

[wtr-general] Excel Issue?

2009-03-20 Thread Jason Shelton
All, I have a routine in my program that compares files in two directories with the same name. For example, lets say I have 'Directory1' and 'Directory2'. The routine looks in each directory, and if a file name exists in both directories I compare the files. I then print the results of

[wtr-general] Re: Excel Issue?

2009-03-23 Thread Jason Shelton
> and if they're not, add a new tab or use new columns in the current > tab. > > -Tiffany > > On Mar 20, 10:20 am, Jason Shelton wrote: > > All, > > > > I have a routine in my program that compares files in two directories with > > the same name. Fo

[wtr-general] Open Source GUI tools

2009-03-25 Thread Jason Shelton
All, Does anyone have any recommendations for any open source testing tools for desktop applications? I am looking for one that can automate an application with a lot of non-standard, custom controls. Thanks in advance for all responses. - Shelton

[wtr-general] Performance Testing

2009-04-02 Thread Jason Shelton
All, I am writing to ask the group what tools you all are using for performance/load testing on your web apps. Are you using Watir? If so, how did you structure your tests to simulate multiple users? Thanks in advance for all responses. - Shelton _

[wtr-general] Re: Performance Testing

2009-04-02 Thread Jason Shelton
/load test tool. I heard BrowserMob can use Selenium scripts. -- Lisa On Thu, Apr 2, 2009 at 2:21 PM, Jason Shelton wrote: All, I am writing to ask the group what tools you all are using for performance/load testing on your web apps. Are you using Watir? If so, how did you structure