Tagged Questions
WatiN aims to bring you an easy way to automate web testing with Internet Explorer and FireFox using .Net. Since the start of the project in 2005, WatiN has grown into an easy to use, feature rich and stable framework. WatiN is developed in C# and inspired by Watir.
65
votes
15answers
12k views
WatiN or Selenium?
I'm going to start building some automated tests of our presentation soon. It seems that everyone recommends WatiN and Selenium. Which do you prefer for automated testing of ASP.NET web forms? Why did ...
27
votes
3answers
3k views
WatiN Error Could not Load Assembly
I am getting the following WatiN error:
Unhandled Exception: System.IO.FileLoadException: Could not load file or assembl
y 'Interop.SHDocVw, Version=1.1.0.0, Culture=neutral, ...
14
votes
4answers
1k views
Unable to fire jQuery change() event on selectlist from WatiN
I have a select box
<select id="myselectbox">
<option value='a'>First option</option>
<option value='b'>Second option</option>
</select>
And jquery
...
13
votes
3answers
2k views
WatiN.Core.IE component giving Timeout while Internet Explorer busy error while opening a URL
I am using WATin IE component for browsing a specific website
On StartBrowsing button click event I am initializing the object of WatiN.Core.IE and passing the website URL for opening the website
as ...
13
votes
5answers
2k views
Running Watin on TeamCity
I'm trying to run a simple Watin test through TeamCity but the Internet Explorer window is never shown as is usually is via CruiseControl.
I get an error that it can't find a text field so something ...
10
votes
5answers
4k views
How do you get WatiN to work on Windows Server 2008 with IE8?
My problem is that I cannot get a simple WatiN test to reliably work on my development machine which is running Windows Server 2008 and IE8.
I have seen a couple of good posts on this, but am still ...
8
votes
1answer
1k views
Problem in Updating DataGridView via a thread ( when Scrolling )
I am stuck with this problem of mine and it will be great help if someone solves this
problem for me
What I am trying to do is :
1) Intialize a DataTable datatable in form load event and assign ...
8
votes
2answers
416 views
Is there a browser-agnostic way to detect client-side script errors with Watin?
We're using WatiN to test our web portals. During the course of an E2E test, we'll occasionally see client-side script errors on the IE status bar. I'd like to chain a handler onto the script error ...
8
votes
2answers
434 views
WatiN Dispose() is really slow
My WatiN tests have suddenly gotten REALLY slow when I dispose the Internet Explorer object.
Here's my setup...
* Windows 7 (Evaluation Build 7100)
* Internet Explorer 8 (Version 8.0.7100.0)
* WatiN ...
8
votes
6answers
9k views
Programmatically add trusted sites to Internet Explorer
I'm doing an IE automation project using WatiN.
When a file to be downloaded is clicked, I get the following in the Internet Explorer Information bar:
To help protect your security,
Internet ...
8
votes
4answers
3k views
Unable to load <mytest> because it is not located under Appbase
I have created an NUnit project (NunitLoginTest.nunit) by selcting my test project in the nunit\bin directory and now I am trying to load that project, but it is giving me the following error.
...
7
votes
1answer
878 views
How to handle Windows Security alert dialog box using Watin IE
I am trying to automate a website using WatIN IE.
As the website bans the ip after few request .So I am setting a bool ipbanned =true when ip gets bannned. In that case and i wish to change the IP. ...
7
votes
1answer
1k views
Watin reference problem
When i add watin reference to solution, i can write code, i'm able to see IE class intance methods but when start debugging, it says
The type or namespace name 'WatiN'
could not be found (are ...
7
votes
2answers
5k views
WatiN: The CurrentThread needs to have it's ApartmentState set to ApartmentState.STA to be able to automate Internet Explorer
I am calling WatiN from a C# windows service. When I invoke WatiN it throws the following exception. The CurrentThread needs to have it's ApartmentState set to ApartmentState.STA to be able to ...
7
votes
4answers
3k views
Watin Compatibility with Windows
I am running tests successfully on Windows Xp but not even got a single successful build while running through Windows 2003.
Any one knows whether it is compatible or not as I read on some site that ...
7
votes
1answer
2k views
Can I read JavaScript alert box with WatiN?
I want to use WatiN to verify the error message in a JavaScript alert box. Is this possible? Thanks.
6
votes
5answers
3k views
WatiN System.IO.FileNotFoundException Interop.SHDocVw
I have just started to receive the following error when running my WatIn tests.
System.IO.FileNotFoundException : Could not load file or assembly 'Interop.SHDocVw, Version=1.1.0.0, Culture=neutral, ...
6
votes
2answers
547 views
WatiN best practices/rules of thumb for an ASP.NET MVC app
I'm an avid TDD and BDD fan but haven't done much in the ways of UI testing. I have an ASP.NET MVC 3 application with many MSpec tests and I'd like to add presentation tests using WatiN.
What sort of ...
6
votes
3answers
704 views
With WatiN, I'd like to wait for a jQuery event
I'm hoping that someone out there has done this. I have some custom jQuery modifications that utilize the jQuery event system in order to launch certain events for processing. I'd like to be able to ...
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?
6
votes
1answer
2k views
C# WatiN - Add an AlertDialogHandler to click ok button on every Alert dialog window
Hello
Those who have used WatiN likely also used DialogHandlers.
Well can someone teach me how can i assign a DialogHandler that will handle any Alert Box window.alert(), of a specific IE instance ...
6
votes
4answers
2k views
Selenium vs. SimpleTest vs. WatiN
It seems there is very few comparison between Selenium / WatiN and SimpleTest (which has web testing features too).
I tried Selenium and found the GUI great to create tests as you can see what's ...
6
votes
1answer
3k views
Watin - Handling Confirm Dialogs with ConfirmDialogHandler
Using Watin, I'm trying to handle a confirm dialog box and tell watin to press "OK". This is reasoanbly well documented on the internet - you use a ConfirmDialogHandler and the "UseDialogOnce" ...
6
votes
4answers
2k views
Watin and PDF's
Can anyone provide and example of downloading a PDF file using Watin? I tried the SaveAsDialogHandler but I couldn't figure it out. Perhaps a MemoryStream could be used?
Thanks,
--jb
5
votes
3answers
120 views
How can I ensure that I dispose of an object in my singleton before the application closes?
I'm using WatiN for some automated tests and what I found was that creating an IE instance for every test was not scalable. The creation and shutdown time of each IE instance was eating me alive:
...
5
votes
2answers
2k views
How to write to Console.Out during execution of an MSTest test
Context:
We have some users reporting issues with a file upload feature in our web application. It only happens occasionally and without any special pattern. We have been trying to figure it out for a ...
5
votes
2answers
1k views
Hiding Internet Explorer when WatiN is run
I would like to know how I can prevent Internet Explorer from firing up every time I run my console application which uses WatiN for testing live sites.
When I run my console application it fires up ...
5
votes
5answers
4k views
Silverlight testing: Watin vs Selenium comparison
I was wondering how well these web test frameworks (Watin and Selenium) work for silverlight UI testing.
Have anyone tried it on a project?, are Watin or Selenium well suited for silverlight?.
...
5
votes
3answers
2k views
WatiN in Visual Studio 2008 - second test method fails
When trying to run a very simple WatiN 2.0 (CTP3) test in Visual Studio 2008 I found that the first one always executes fine. The second test method seem to break something in the IE object producing ...
5
votes
3answers
3k views
Watin - how to test site with popup pages
I'm using WatiN (Web Application Testing in .Net) to do integration testing on a Dynamics CRM 4.0 website.
CRM uses a lot of popup windows - eg clicking on a Contact in a list opens a new browser ...
4
votes
0answers
118 views
Implement Private Proxies in IE Automation C#
I want to do IE Automation. I would use Watin, but have got no idea how to implement Private Proxies using Watin, I have Tor Library through which I can Set Public Proxies, but for Private have no ...
4
votes
2answers
485 views
Can WatiN download files without requiring focus?
I use WatiN to automate file transfers (EDI transactions) to/from multiple websites, unfortunately FTP or anything more automation-friendly is not an option. For downloads, I use variations of this ...
4
votes
1answer
226 views
Watin CaptureWebPageToFile() generates black image
I have a console application running on an application server which uses Watin to automate IE navigation. When I use the MakeNewIeInstanceVisible = false property, all the images created are black. ...
4
votes
2answers
1k views
WatiN: When finding text, how do I get a reference to its containing element?
Given the following HTML page:
<html>
<head>
<title>WatiN Test</title>
</head>
<body>
<div>
<p>Hello World!</p>
</div>
...
4
votes
7answers
2k views
WatiN LogonDialogHandlers not working correctly in Windows 7
I have recently updated to Windows 7, VS2010 and IE8. We have an automation suite running tests against IE using WatiN. These tests require the logon dialog handler to be used in order to log ...
4
votes
2answers
590 views
WatiN in MSTest - ClassCleanup fail
In thread WatiN in Visual Studio 2008 - second test method fails
there is a good solution with IEStaticInstanceHelper (original answer Reusing an IE instance in VS test, sources), but when ...
4
votes
3answers
2k views
Watin: Search in children of an element
I want to do a "two step" search using Watin. For example I would like to search for a ul-tag having class "abc". Then I would like to search for a certain li-tag inside that element. The code might ...
4
votes
1answer
869 views
Watin - problems with page redirects
I'am trying out Watind. I am having problems with a Login page og the applciation, which automatically redirects to the main page (without any user intervention). It looks like WatiN has troubles with ...
4
votes
1answer
1k views
Watin Windows Authentication
I am trying to write Watin tests for an intranet application that uses Integrated Authentication. The web page that I am trying to test prints Page.User.Identity.Name.
Here is some of the code from ...
4
votes
3answers
3k views
How to find an Element in Watin by its tag name?
How to find a specific element, or a list of elements by using their TagName using Watin?
4
votes
3answers
1k views
Starting ASP.NET Development Web Server (Cassini) as part of unit test setup?
I'm using WatiN, NUnit and ReSharper to run my ASP.NET unit tests inside Visual Studio. I'd like (if it's not already running) to start Cassini to run my tests against.
Is this possible? How would I ...
4
votes
3answers
2k views
Automate Safari web browser using c# on Windows
I wondered if anyone had successfully managed, or knew how to automate the Safari web browser on the Windows platform.
Ideally I would like to automate Safari in a similar way to using mshtml for ...
4
votes
5answers
2k views
Is there a way to make WatiN click a link before the page finishes loading
We're using WatiN for testing our UI, but one page (which is unfortunately not under our teams control) takes forever to finish loading. Is there a way to get WatiN to click a link on the page before ...
4
votes
6answers
4k views
Web Application Testing for .Net (WatiN Test Recorder)
I've been using WatiN as a testing tool for my current project. Besides the minor bugs with the Test Recorder, I've been able to use it and automate a lot of my tests in conjunction with NUnit. Anyone ...
3
votes
1answer
95 views
WatiN: Error when trying to TypeText(“WatiN”) to Google's search text box
I just recently started looking into WatiN and was following the example from http://www.codeproject.com/KB/aspnet/WatiN.aspx. Unfortunately, I am running into an issue where it is claiming that a ...
3
votes
2answers
286 views
Tests fail sporadically using CruiseControl.NET with NUnit: error 800704a6
My partner and I have a suite of tests running nightly on a build server for our project. We use CruiseControl.NET to run the server, and the tests are written using WatiN and NUnit. We have ...
3
votes
2answers
313 views
downloading a file with Watin
How can i download a file with watin? I searched a lot and tryied but i cant get it.
I only want to click on a link that have a download and save it. I used examples that i found but without success. ...
3
votes
0answers
99 views
Why do I have to attach IE in WatiN when running test on a server via Cruise Control service
I have been doing the following for the longest time and it works without any issues when I initiate it:
[Test]
public void GoToMethod()
{
// Pre: ie = new IE();
NewEmployeePage page = ...
3
votes
1answer
387 views
WatiN “Unable to cast COM object” exception
from time to time, my monitoring application dies for no obvious reason. It seems like "mshtml.HTMLDocument" resource isn't available. Anyone else experienced something similar? Thanks in advance.
...
3
votes
1answer
457 views
BDD of UI Components with WatiN and SpecFlow
My question is focused on if my setup is currently following a best practice approach regarding BDD with UI acceptance testing. I'm using WatiN with SpecFlow to build my UI acceptance tests and I'm ...