Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
1k views

Alternatives to using delays when automatically testing an AJAX web UI

I will soon be working on AJAX driven web pages that have a lot of content generated from a Web Service (WCF). I've tested this sort of thing in the past (and found it easy) but not with this level ...
9
votes
3answers
2k views

How to find out which JavaScript events fired?

I have a select list: <select id="filter"> <option value="Open" selected="selected">Open</option> <option value="Closed">Closed</option> </select> When I ...
6
votes
1answer
2k views

How do I automate Chrome using WatiN?

I've done countless Google searches on this. Despite all the promises, I simply can't find one straight-forward peice of documentation on how to automate Chrome with WatiN. Can anyone help?
5
votes
1answer
452 views

Testing if a new window opens with Watir-Webdriver

I'm using Watir-webdriver and I was wondering if there was a good way to check if a new window opens. I've googled around a bit and couldn't find anything though it feels like there should be an easy ...
4
votes
4answers
257 views

How can I automate the “next episode” button in Netflix (mac)?

Here's my goal: When my daughter wakes up at 4am I'd like to be able to queue the next 4 episodes of Shaun the Sheep (20 min) so I don't have to wake up every 20 min to start the next show. So really ...
4
votes
1answer
109 views

How to determine what type of a HTML element is selected in Watir

This is a follow-up to the Counting the number of HTML elements having same attribute in Watir question. So, suppose I have a HTML element as follows <input type="password" class="foo" /> ...
3
votes
1answer
179 views

Locating element in same paragraph of another element in watir-webdriver

Given the following HTML code snippet; after finding the link by ID, how would you select the checkbox in the same paragraph? For example if I wanted to select the checkbox associated with the link ...
3
votes
1answer
81 views

Issues with firewatir

Is jssh extension for firefox 4 available?
3
votes
1answer
110 views

How can I continuously open websites using Watir?

I have an array of url strings (i.e. "http://www.cnn.com") which I want to iterate through and open in Safari using watir. urlArray.each do |url| browser.goto(url) end will open the first page, but ...
3
votes
1answer
277 views

How do I send keyboard commands like (Control) + (1) to the browser using Ruby and FireWatir?

I am using FireWatir to test a web app and I need to send CTRL + 1 to open up a connection to plugin text "LTN 123456" and send CTRL +2 to close the connection.
3
votes
3answers
828 views

Is there an alternative to watir::ie.attach for watir-webdriver since attach is not supported on webdriver

I have a website which is only rendered in Webkit enabled browser (Google Chrome, Safari). I am using Google Chrome since I am on Windows 7. I am using Watir-WebDriver to automate the same. Issue: ...
2
votes
0answers
53 views

selenium and qt c++?

Is it possible to use selenium with qt c++ ? Seems like there are no official support from selenium for C++? http://seleniumhq.org/download/
2
votes
2answers
131 views

Export entire html <table> to a text document using Watir

Basically all I would like to do is export a whole html table to a .txt file (notepad document). So far I have learnt how to instruct the browser to find the html page with the table. require ...
2
votes
1answer
261 views

Does watir-webDriver support modal_dialogs created via Lightbox?

Is the method modal_dialog supported by watir-webdriver? If not, is there another way for setting some text in a text field and clicking an ok button? I've tried by putting ...
2
votes
3answers
195 views

Does anyone have or know where I can find good documentation on Watir-Webdriver?

I am trying to get my automated test scripts switched over to the watir-webdriver. Unfortunately I have been unable to completely do so, what I am looking for is a way to drive my web browser and ...
2
votes
1answer
158 views

Watir: password field unfindable in Safari

I'm brand new to Watir. I'm using SafariWatir on a fully updated MBP Snow Leopard. So far I've successfully used goto, link, text_field, and button but when I try to access a text_field with ...
2
votes
3answers
775 views

Watir-webdriver: Firefox not clicking correct link but IE and Chrome working fine

Question help Hi I'm new to Ruby and watir-webdriver and I've searched all over and can't find an answer to this. I have a link that is inside a table, this table has a header on top of the table ...
2
votes
0answers
225 views

How to change Chrome homepage using C#? [closed]

Possible Duplicate: How can I programmatically access the Google Chrome Home or Start page? I want to change chrome homepage with a basic c# program the file which holds the home page is ...
2
votes
2answers
156 views

Automated multiple browser testing tools

I am looking for a tool which cuts down on the effort to manually test a new site against multiple browser combinations but so far have failed to find anything suitable. The browser combinations I am ...
2
votes
1answer
542 views

Is there a way to NOT open a new window every time I click on a link on Chrome, using watir-webdriver

I am trying to using Google Chrome to automate my testing of a mobile app developed in JavaScript for iPhone, and since it is Webkit based only Safari and Google Chrome can render the content, so I ...
2
votes
2answers
988 views

WatiN and .net winforms WebBrowser control - is DialogWatcher possible?

Our target is: Watin-enabled browser testing embedded in a .net winform. Currently, we are using a .net WebBrowser control to embed browser behavior in a winform. We are attaching WatiN to the ...
2
votes
4answers
141 views

Automated login and password storage

I wrote a simple PHP script to log into my mobile phone provider's website, check my balance, and send me an email if it's too low. I put the script on a distant server. It seems that I have to store ...
2
votes
2answers
2k views

can I override/redefine “global” Javascript functions, like confirm() and alert()?

I want to do some browser automation, and those pesky confirm/alert boxes are a real pain. Disabling javascript completely in this case is not an option, unfortunately. Well, so I was wondering, can ...
2
votes
5answers
1k views

What is the best browser automation tool for Python?

I want to write a following script: given a text file with the list of actions to be executed on a certain site it would use some browser's (IE probably, because I don't know anything about other ...
2
votes
9answers
4k views

How to automate browsing using python?

suppose, I need to perform a set of procedure on a particular website say, fill some forms, click submit button, send the data back to server, receive the response, again do something based on the ...
2
votes
2answers
382 views

how to test logging in with openid using selenium

Is there a way to test logging in to a site with open id using selenium? In selenium all the tests live in the server, so once fill the open id url in the appropriate field in the web page and am ...
1
vote
3answers
156 views

Selecting multiple options in select list with shift

I have HMTL like this: <select multiple="multiple"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option ...
1
vote
1answer
66 views

Select#select does not behave like manually selecting options in select list

If I have HMTL like this: <select multiple="multiple"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option ...
1
vote
4answers
139 views

How can I automate a browser to visit 1000 pages and trigger a simple javascript function on each page?

I need to load 1000 urls on a tracking/reporting app (after authenticating via an HTML form) and trigger a "resubmit" javascript function. Unfortunately there is no bulk action to handle all at once ...
1
vote
3answers
212 views

Unable to click anchor with image inside LI tag

I have HTML like <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML Transitional//EN"> <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <HTML> <BODY class=" ...
1
vote
1answer
222 views

watir-webdriver on IE behaves differently then Chrome and FireFox in respect to selecting a value from select list

selectctrl = @browser.select(:xpath, "//select[id='foo']") selectctrl.select("Open") in FireFox and Chrome this fires other events in jquery, in IE, you see the UI change to Open for the select ...
1
vote
2answers
164 views

how can i handle rad window popup by watir script?

How can i handle this type of Rad window pop up by using watir. <span id="RadWindowTitlectl00_ContentPlaceHolder1_rwmWinManager_rwMessage" class="RadWTitleText" onselectstart="return false;" ...
1
vote
1answer
127 views

How do I use Watir to download a file to a specific location in IE9

In the older versions of IE, there is a popup window. In IE9 it's a funny looking bar on the bottom. Anybody had tried anything that works yet?
1
vote
2answers
100 views

How can I make a text_field that is disabled until typed into enabled using firewatir?

When attempting to setup a Job Title the "add job title" buttons are hidden until text is entered. Using the following code to add a job title the disabled button does not become enabled. ...
1
vote
1answer
292 views

Watir: How can I execute in a watir script a specific javascript function called on select of a checkbox?

In a Watir script, after I check checkboxes in a popup window, I'm trying to execute a javascript function to add objects selected to the parent window. What works fine until now it is the check of ...
1
vote
0answers
127 views

Is there any good IE recorder?

My client's website ONLY works on IE so I cannot use Firefox plugin Selenium IDE to record. I found WatiN recorder that can be used on Internet Explorer but so far it is very unstable and it often ...
1
vote
3answers
273 views

Unable to click button - Watir

The button on a page has the following code: <a onclick="return ValidateAll();" id="btnSignin" tabindex="5" href='javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("btnSignin", ...
1
vote
1answer
301 views

Watir :- click an image button?

I have am using firefox and i have modified its user agent to make it behave like iphone web browser. now when i open google.com using watir and now i want to click on the searh button which is an ...
1
vote
2answers
88 views

How to invoke watir scripts from a web application?

I have a watir script ,that i have to run from a web interface, on the same browser invoking the scripts. Is it possible?
1
vote
2answers
224 views

Delete Flash Cookies via Code

Using C# (or VB if needed), I am setting up a simple automated browser program. Right now I am doing this via watin. I am doing this on my Windows 7 Desktop and the browser I am automating via Watin ...
1
vote
3answers
806 views

How Do You Set Value of Input Element Programmatically Through CSharp?

Hello I am trying to automate my IE to log into a website but the problem is that the input elements do not have an HTML ID attribute! For example: <input type="text" name="user" size="15" ...
1
vote
2answers
436 views

Selenium with Python, how do I get the page output after running a script?

I'm not sure how to find this information, I have found a few tutorials so far about using Python with selenium but none have so much as touched on this.. I am able to run some basic test scripts ...
1
vote
1answer
115 views

Script/plugin to update web page (load next 25 comments) until page fully loaded

Brief summary: I need a script/plugin for Firefox that selects the "load next 25 comments" link at the bottom of a web page, until that link is no longer on the page. As you click that link - you get ...
1
vote
2answers
575 views

Can I use XPCOM to create and manipulate a Firefox window as I would use win32 COM with IE?

With win32 COM I create an Internet Explorer instance and control it almost fully from my python code (manipulate windows, DOM elements, etc). More specifically, using ...
1
vote
1answer
99 views

Execution time benchmarks for web automation

Are there any automation execution time related industry standards/benchmarks are available for performing different actions on web page. Like through automation; how much time can be considered as ...
1
vote
4answers
1k views

How to remotely control Firefox from a script on OSX

I need to write some scripts that access some websites. A script from command line would get some pages, post some forms, screen scrap some information etc. It cannot really be a library "browser" ...
1
vote
3answers
3k views

How do I configure IE7 to download filetype instead of opening in browser

I have written a watir script that downloads files. One of the files it downloads has a .dcf extension. Months ago, on my machine, I changed a setting somewhere so that .dcf files prompt for download ...
1
vote
4answers
350 views

How do I automate a web proxy in .NET for unit tests (including set up and tear down)?

Following Jonathan Holland's suggestion in his comment for my previous question: Is there any way in .NET to programmatically listen to HTTP traffic? I've made a separate (but not exactly a duplicate) ...
0
votes
3answers
46 views

Good Selenium WebDriver Extension?

I noticed that the webdriver doesnt have much support for .net. There are plenty of functions for java and ruby but C# is kinda lagging far... behind. Does anybody know of any extensions classes or ...
0
votes
1answer
58 views

Run Selenium commands via google chrome extension?

Is it possible to build a custom google chrome extension to run selenium commands when it detects a specific Url/page? Where to begin? How would you run selenium commands via a google chrome ...

1 2