Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
7answers
261 views

Creating & rolling back test data with SQL server

I am creating a series of web automation tests which require test data to be in a database (SQL Server 2008). To generate the required data for each test I have to call some C# code which will insert ...
4
votes
13answers
6k views

headless internet browser?

I would like to do the following. Log into a website, click a couple of specific links, then click a download link. I'd like to run this as either a scheduled task on windows or cron job on Linux. I'm ...
2
votes
3answers
167 views

Accessing an element with no attributes in Watir

Using Watir, is there a way to access an element without attributes? For example: <span>Text</span> I'd like to avoid using xpath, but if that's the only way it's cool.
1
vote
1answer
104 views

canoo or jwebUnit for automated headless web client?

I'm writing an application in groovy with grails that needs to do some automated usage of a couple of websites. So I need something that will perform a similar task to functional web application ...
1
vote
0answers
59 views

Script an interaction with a website that uses flash?

I would like to write a script that interacts with a web service which does not provide an API, through it's public website. (To the best of my knowledge, this would not be a violation of the TOS for ...
1
vote
1answer
578 views

Set user agent using Selenium 2

I am trying to web automate an application which behaves differently if accessed from a mobile device. Does anyone know the best way to achieve this using Selenium 2? In an ideal world I would like ...
1
vote
1answer
482 views

Python, mechanize, proper syntax for setting multiple headers?

I can't seem to find how to do this anywere, I am trying to set multiple headers with python's mechanize module, such as: br.addheaders = [('user-agent', ' Mozilla/5.0 (X11; U; Linux i686; en-US; ...
1
vote
2answers
300 views

web automation from perl

I am looking for a web page automation tool in Perl. I want to be able to drive different browsers like IE, firefox etc from my test script. I have to automate a product web page with lots of input ...
1
vote
2answers
689 views

Automating Web Access and Watir

I'm building a Ruby program that uses several other programs, and while most of them are programs I can download and run on this computer, one has to be accessed and run through a web browser. I ...
1
vote
2answers
185 views

blacklist test requests from google analytics using watir

I have to automate tests for a web application which runs google analytics script. I have chosen watir for the automation since I can script all the test cases with the same. The only problem is i ...
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
1answer
2k views

Execute javascript trough Internet Explorer's com interface using PowerShell

I am writing some Internet Explorer automation scripts using PowerShell. Here is how I start the IE com object: $ie = New-Object -com "InternetExplorer.Application" $ie.Navigate("about:blank") ...
0
votes
1answer
29 views

Sending a result with EndDialog Win32API in .NET

I am running some automation in a C# program (.Net 4.0). There is an issue with a modal dialog where I want to click the message away and continue testing. I have tried a few options (SendKey and ...
0
votes
4answers
132 views

Login to website with redirection using WWW::Mechanize

I know it sounds like a question which was already asked on forum ,however I believe that I have a slightly different scenario here.. I try to use Perl to log on to a web site which requires ...
0
votes
2answers
126 views

Controlling a web browser using Excel VBA

I have been assigned the task of automating a web based task ( for a HTTPS website). The users currently are filling in the Excel sheet with the data, they now want to automate excel in such a way ...
0
votes
0answers
88 views

Selenium CaptureEntirePageScreenshot fails in IE in selenium-server-standalone-2.5.0

I got below exception while using CaptureEntirePageScreenShot after installed the snapsie.dll into machine and also i have enabled the activex control support in IE browser. "Snapsie failed: Is it ...
0
votes
0answers
23 views

Powertools/WebAutomation and capturing a download

I am trying to write a power tools script to do something that I originally did using iMarcros. I basically want to go to a site, login press some buttons on a form + links and it'll trigger a ...
0
votes
1answer
62 views

PopUp problem in MSHTML

I am working on a web automation application. Every thing is working fine.Now i have stuck into a problem. When user click over a link a new pop up is opened with input field,s and button, User ...
0
votes
0answers
216 views

Automatically close a popup window

I am working on a web automation that occasionally has a popup window from the website that warns the user of data loss. My program handles all the data, so nothing will be lost, but this popup ...
0
votes
1answer
176 views

Javascript GetElementByName within a C# HtmlDocument

I am writing a web automation that fills out lengthy online forms based on stored data and then notifies the user of the results. The website that I am automating names all of it's objects, but does ...
0
votes
0answers
53 views

Identifying a web element that is changing

I am automating the test of a web application in our company using various tools and libraries. Currently using Ranorex for doing the object identification and interacting with web elements. I am ...
0
votes
2answers
55 views

PC/Windows equivalent of “Fake”

Doing some web testing and need a way to fill out forms automatically without much user interference. For OSX there is Fake (FakeApp.com) but is there an equivalent for Windows systems that are not ...
0
votes
1answer
138 views

WebAii ArtOfTest need help finding a dynamically added element (label)

Good Morning All, I'm doing some web automation testing using WebAii ArtOfTest. It's similar to Watin. Anyways, I'm trying to find a label element by its for attribute. Using the jQuery validation ...
0
votes
1answer
94 views

web automation - auto check link

I'm new to web app and I want to check when there's a new version of dota map, I'll check links in getdota.com. How can I do this and which language, I want it checks every time you start warcraft, ...
0
votes
1answer
62 views

Is there a good web automator/tester for flash?

I've been looking around for a good web automator (something that can simulate a real web user's experience) for Flash, but none seem to exist. Does anyone know of a good web automator or tester for ...
0
votes
2answers
379 views

How can I display an HtmlPage object (from HtmlUnit) to be opened in a real browser?

I am using Htmlunit (browser automation/testing tool) to go through a series of links or perform a set of actions on a page. At some point after this I want to see the resulting page in a browser ...
0
votes
0answers
502 views

Bird's eye data visualisation in WPF and web client automation

This is a complex problem and it deserves a long explanation. Let's say that I have a picture of a high level workflow/sitemap of a web site: ...
0
votes
1answer
582 views

Web Automation Using MSHTML

We want to automate a web application which is developed in asp.net. For automating this site we are planning to use the MSHTML. But before finalizing MSHTML I would like to know if there are any ...
0
votes
2answers
351 views

Are there any .NET web automation frameworks that support headless test execution?

Similar to htmlunit, but for use with C#. I've seen that you can use htmlunit with .NET via IKVM, but I'd like a native solution if at all possible. The aim is to add UI tests to our existing ...
-1
votes
2answers
344 views

How do I post my user name and password to a web page?

I want to post my user and password with Perl to a website. The source of the login page is: <div class="top">Sign In</div> <div class="row"><label ...