Deals with programatically automating web browsing activities.
0
votes
1answer
54 views
jbehave + thucydides: how to override 300s timeout
I'm using thucydides jbehave plugin to run Selenium tests. However, I can't run tests longer than 5 min in total due to jbehave timeout. I can't figure out how can thucydides/jbehave should be ...
0
votes
2answers
151 views
how to find an image tag using selenium webdriver in java and how to check if it has been properly displayed?
I need to check a webpage for all the images and get their attributes like src and width etc using selenium webdriver.
Can someone please help me with it ?
0
votes
1answer
82 views
Automating website forms using Haskell [closed]
Are there some nice libraries (and if so, what are they) for automating website queries using Haskell.
Basically I want to get a form, fill in some values and get the results (and naturally, do this ...
0
votes
2answers
98 views
How to get a specific frame in a web page and retrieve its content
I wanted to access the translation results of the following url
...
0
votes
0answers
42 views
How to Programatically determine Headers for HttpWebRequest in C#?
I dabble in coding some bots/web automation software quite a bit. In order to do what I do, I simply sniff headers with Fiddler and manually add them to the request. I am wondering if there is an ...
1
vote
1answer
91 views
Headless browser with full javascript support [closed]
I've been using HTMLUnit and it's good but it does not work with all the sites, and when testing new sites I'm always unsure if it will work or not. Is there anything that has "full" JS support? ...
1
vote
3answers
342 views
How do i make a Selenium WebDriver run for many hours(CHO) without it causing a crash / OutOfMemory problems?
I am using selenium-2.30.0 to run a single test(on windows) which runs for many hours (~ 8 Hrs). I was using the FF driver, but it runs out of memory after just 45 minutes or less, & the test ...
0
votes
2answers
108 views
Web automation using C# WebBrowser
I'm in the very early stages of attempting to automate data entry and collection from a website. I have a 16,000 line CSV file. For each line, I'd like to enter data from that line into a textarea on ...
0
votes
0answers
57 views
set a timout in python splinter web crawler
Trying to set a time out in python much like you would in ruby.
I have a link that when I click it opens a popup but I can not access it because it causes the script to freeze until I kill it. I ...
0
votes
1answer
55 views
How to add check for all test cases in Selenium
I'm running test cases to check on several pages, but I want to include the same basic checks on each page, e.g. all css, js files are returned, there is no "page not found" text on the page etc.
Is ...
1
vote
1answer
1k views
How to code vba to open internet explorer in new session?
I am struggling to get this done since months, how to code VBA to open internet explorer in new session i have an application with many logins i need to open them simultaneously using automation , i ...
0
votes
0answers
141 views
Executing sahi script from Java not getting appropriate results
I am new to Sahi. I need to execute some sahi script from a Java program. The sahi script dumps the images to a location provided. In order to take screen shot I am also using a software which takes ...
0
votes
0answers
58 views
Taking screenshots of browser into a specific directory using sahi?
I would like to dump all the screen shots taken during a test script run into a particular directory. How can this be achieved?
I am aware of that sahi dumps all the screenshots into a ...
2
votes
3answers
1k views
Tracing DOM element id back to its ExtJs component
We are develpoing a web-based automation solution for a web application that is built using ExtJs.
Currently i am testing various different object identification techniques that identify web elements ...
0
votes
2answers
543 views
IE automation VBA, delay in sending keys using sendkeys instantly
I have written a code to take screen shots whenever webpage navigates and paste it in word document using VBA, i succeeded in doing that but i am getting the screen shots that took last time instead ...
0
votes
1answer
717 views
VBA IE automation, To trigger some action in VBA before whenever i navigate to other page in website
I need a VBA code which can do some action in VBA when the webpage frame is just about to navigate to other page.for example when i click on some link,button it navigates to other page i want to take ...
0
votes
2answers
758 views
VBA IE automation, To do events like displaying message,etc in excel when a link in webpage is clicked
My requirement is i need to have a VBA code in excel which runs to do some action in excel when a link in webpage is clicked.For example when i click a link "login" in webpage my VBA code should press ...
0
votes
2answers
239 views
Why does WatiN only find by id from a <TR> some of the time?
I'm trying to do some web automation to login and check the status of an order with WatiN on a dynamically loaded webpage. I'm using Visual Studio C# Express 2010 and an IE browser.
A few pieces of ...
0
votes
1answer
153 views
Sahi Scripts does not work on Internet Explorer and Opera Properly
I generate some automation script with using Firefox.
Now i playback the scripts in Firefox. Everything is going rigth but in Opera have some Problem. Also in Internet Explorer same as..
In Internet ...
0
votes
0answers
27 views
when call selenium 2 web driver find_element, it will try how many times to find it?
When call selenium 2 web driver find_element, it will try how many times to find it?
and it will sleep how long between 2 times?
In selenium 2, what is the equivalent of wait_for_page_to_load in ...
1
vote
1answer
122 views
HttpWebRequest to Automate Secure Requests
I have done web automations in the past where I use fiddler and recreate the requests in C#. The website I'm currently working on automating doesn't have any viewable POST or GET requests in fiddler. ...
3
votes
3answers
2k views
How to set WATIR focus on new window
I'm new to WATIR testing (and do I love it!) and have run into a wall on how to refocus my WATIR script to a newly opened window.. Here's my (simplified) script....
#!/usr/bin/ruby
require 'rubygems'
...
0
votes
3answers
398 views
Delete Cookies from a Different Domain
I am working on a web automation tool. After the tool is run once the associated website creates cookies that break the automation if I try to run it again. Because of this I would like to delete ...
0
votes
2answers
1k views
Watir-webdriver: how to force the click method to wait for the page to load completely
I recently started using Watir-Webdriver after previously using Watir since I needed some functionality which was present in webdriver but not in Watir. I am facing a problem in watir-webdriver which ...
4
votes
1answer
1k views
How to quit modal dialog window in selenium headless browser?
I am using selenium2 + python + amazon ec2 (Ubuntu 11.04) for my project.
For Headless reason in amazon ec2, I am using PyVirtualDisplay Since there is no display in server.
when i am running my ...
0
votes
1answer
260 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 ...
2
votes
4answers
2k 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 ...
5
votes
3answers
2k 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.
0
votes
3answers
2k 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 ...
2
votes
1answer
309 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 ...
0
votes
1answer
191 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 ...
1
vote
0answers
132 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 ...
0
votes
1answer
600 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 ...
1
vote
2answers
100 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 ...
1
vote
1answer
1k 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 ...
0
votes
1answer
224 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 ...
6
votes
6answers
482 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 ...
0
votes
1answer
158 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, ...
3
votes
1answer
1k 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
votes
2answers
755 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 ...
0
votes
2answers
716 views
What are the post parameters i need to pass to the facebook login page?
What are the post parameters i need to pass to the facebook login page?
2
votes
2answers
1k 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 ...
0
votes
1answer
112 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 ...
1
vote
2answers
839 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
257 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 ...
0
votes
3answers
1k 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
600 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:
...
1
vote
1answer
134 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 ...
0
votes
1answer
751 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 ...
2
votes
1answer
3k 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")
...

