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.

learn more… | top users | synonyms

0
votes
0answers
10 views

How do I check if a WatIn parent element 3 levels up is Visible?

So I have some HTML surrounding a field like this : <div class="form-row style="display: none; "> <label class="fld-lbl" for="Blah">Blah</label> <div class="fld"> ...
0
votes
0answers
7 views

WatiNException: Still downloading after x seconds

I have issue with FileDownloadHandler I'm scheduling task a download via watin using different user. The idea is that the schedule task run under different user, navigate to a website and download a ...
0
votes
0answers
23 views

OnLoad event handling using C# with WatiN

Basically I need to run certain functionality whenever the pages changes in a WatiN controller IE browser (I am using IE 10). Based on this question Onscroll event handling in C# BHO for IE9 I came ...
0
votes
0answers
29 views

How can I get rid of the Java login credential popup when opening a site?

When I load a site on my local host, occasionally it asks for the Java login credentials and domain. It doesn't happen every time, and it is causing problems with my integration testing. Is there a ...
0
votes
0answers
19 views

WatiN and RadAsyncUpload

I am using WatiN to run some UI automated tests on my application that uses Telerik RadControls. I have been able to interact with most of telerik controls, except RadAsyncUpload. Currently I am ...
0
votes
0answers
39 views

Browsing times out using WatiN or Selenium with SignalR and IE

This question has been posted before (example: Watin times out when using SignalR), sort of, but I don't think people understood the issue and I believe I have a slightly better handle on it. When ...
0
votes
0answers
15 views

How to click image with x,y coordinate in WATIN?

How to click image with x y coordinated in WATIN? Is there any ready made function like Click(10, 20)? Is it possible to do ie.Image(Find.ById("compass-image")).Click(10, 20); If not is it possible ...
1
vote
0answers
49 views

Watin Exception [duplicate]

I'm trying to fill up a textfield using watin. The problem is: browser.TextField(Find.ByName("fieldname")).TypeText("Test"); I keep getting an exception. When I try to loop through textfield ...
0
votes
0answers
35 views

Unable to get at Textbox via WatIN

I am trying to get at a username and password box in a website via WatiN and type in some text via the .TypeText but no matter what I do I cant seem to get at them. I know I have the WatiN setup ...
0
votes
0answers
40 views

WatIn and NUnit: RequiresSTA assembly could not be found

I am quite sure this issues has not yet been addressed before. I am adding [assembly: RequiresSTA] to my AssemblyInfo.cs file in my C# project. But it does not like the RequiresSTA word. VS states ...
1
vote
2answers
61 views

How to click a non ID java button in my c# browser?

I have a c# program which has a web browser my program deals with java pages i want it to click a button in a page but the button has no ID or value all i got about it is this code : td ...
0
votes
0answers
54 views

Automating approved screen scraping with a twist

I have approval to scrape some data from a third party website. The scraping works great, however now there is a road block due to the new login process. The new login process is a mixture of ...
1
vote
1answer
45 views

Testing dropdown list using WatiN

I am using WatiN to test a website and automate a process. I can successfully open the website, however an issue arises when I am trying to select an option from a select list: <select ...
0
votes
1answer
53 views

Predicate in WatIn Find.By method

In Watin script I want to attach to another browser with the condition - "handle of new IE is not equal to handle of current IE", here is my code: var hwnd = currentIE.hWnd; var newIE= ...
0
votes
0answers
39 views

How to handle conditional dialogs using WaitUntilExists with WatIn testing

I understand how to use WaitUntilExists for a dialog that will always be displayed. But what if that dialog is conditional? If that dialog only appears some of the time based on a certain condition, ...
0
votes
0answers
43 views

Watin to download webpage loaded by javascript

I am trying to download a webpage (printer web portal) with Watin but all I get is <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"> <HTML lang="en"> <HEAD> ...
0
votes
0answers
43 views

watin goto does not refresh DOM

I am using watin 2.1.0.1196 with IE9 from VS2008 using C#. Everything is working fine, except that ie.GoTo(url) calls do not refresh the DOM of the ie object. As long as I move from page to page by ...
0
votes
0answers
38 views

IIS combined with WatiN system.nullreferenceexception

So im having a bit off a problem, when creating a new instance off FireFox with WatiN. Some Info you might find important! I am able to run this code on IIS Exspress, and in winform. .Net Trust ...
0
votes
1answer
59 views

Attaching pre-opened IE or Process to Watin Library

I'm having trouble opening IE9 with -nomerge param with Watin directly, so I thought if I open IE with Process.Start("IExplore.exe", "-nomerge about:blank"); then attach it to Watin so I can ...
1
vote
0answers
101 views

Access image in table using Watin

I'm trying to click a clickable image using Watin, but I'm having a hard time getting to its level inside a table. Here is the web code: <td class="KPagerCell"> <a ...
0
votes
1answer
60 views

How can I login to the same website, different accounts, different proxies, at the same time?

Hei guys, I want to make a testing program to login to the same website, with different accounts and different proxies, so that all the accounts will be online at the same time from different proxies. ...
0
votes
1answer
45 views

Access specific frame via Watin

I am trying to enter text, but Watin can't find the correct textbox. I think this is because it's in a frame, and not on the main page. The URL I'm using is ...
0
votes
1answer
74 views

With C# 4.0, the System.Windows.Window constructor doesn't support any arguments

I would like to implement this suggestion: How to test file download with Watin / IE9? In the project, I added the references that poster referred to: UIAutomationClient UIAutomationTypes ...
0
votes
1answer
133 views

Select each item in dropdown list using Watin

I want to iterate through a dropdown list using Watin. The HTML looks like this: <select name="ctl00$Header1$ddlPropertyList" ...
0
votes
0answers
79 views

MSTest + WatiN simple button click fails

I am trying to get MSTest and WatiN to play nicely together. I have a simple sample test that just pulls up google and hits the search button. When debugging the test, it works as expected. When ...
0
votes
0answers
74 views

Using Watin how do I set the text value for this element?

I have an unusual calendar control in my HTML page that I can not seem to set the date value for. The HTML is: <div class="reqFormLabel" style="margin-bottom: -3px;"> Text - First Night ...
0
votes
1answer
56 views

Html content get strange when WatiN.IE goes to a local file using GoTo method

I want to test my С# parser using WatiN for navigation on site. Trying to get the html code of the page as follows. var path = "C:\Coding\Projects\Crawler\TestData\akkanto\index.htm"; var browser = ...
0
votes
0answers
79 views

WatiN website testing

I am using WatiN to test one website using the code below. static bool CheckSSLoginStatus(out string msg) { IE ApplicationWindow = null; bool isBad = false; ...
0
votes
1answer
102 views

Using Find.BySelector with the :visible filter in WatiN throws error

I am using WatiN 2.1 to drive Internet Explorer for automated integration testing. For one of my tests, I want to select an item in a dynamically created popup menu after clicking on a button that ...
0
votes
1answer
94 views

Set Value to p tag

I have following html code : <html> <iframe title='xyz'> <html> <body id='123'> <p><\p> </body> </html> ...
1
vote
1answer
53 views

Cannot identify image using browser.Images.Filter(Find.By(“ext:qtip”, “Delete”)).Click()

I want to Click image : following is the html code I am using following code in watin to click : browser.Image(Find.By("ext:qtip", "Delete").Click(); It is not working. Please let me know other ...
0
votes
1answer
59 views

WatiN - How to determine if a button is clickable?

I have a form for which I try to write some tests. I have a problem, however: Is there any way to check, if a button is clickable or if it is "greyed out"? I tried looking for something like ...
0
votes
1answer
41 views

navigation browser goto

Hello I am working with watin and and trying to open url but I am getting follwoing exception: at WatiN.Core.IE.CreateNewIEAndGoToUri(Uri uri, IDialogHandler logonDialogHan dler, Boolean ...
0
votes
1answer
192 views

Watin project was discontinued?

Hi guys i was searching for help to a issue involving IE 9 and Watin, then i've noticed that almost all questions & answers were made in 2011. And most of people answering said that a update would ...
0
votes
0answers
29 views

Compatibality of Code Developed in Watin 2.1 with 1.3

Currently I am working with Watin 1.3 and one of my colleague is working with Watin 2.1 I came accross a situation where I have to run code developed in Watin 2.1 on Watin 1.3. As Watin 2.1 has type: ...
1
vote
1answer
119 views

Watin causes high CPU usage

I'm using Watin like so: private IE myie; private void button1_Click(object sender, EventArgs e) { try { myie = new IE(); } catch (Exception ex) { return; } ...
0
votes
1answer
67 views

how to find link using find.byselector using text property of link

we have a link <> linktext <> How to identify it using Find.BySelector and using text of link like we do in selenium.... //a [contains (text (),'linktext')]
0
votes
1answer
31 views

Identify objects by index

Is it possible to identify the objects by index in Watin ( just like selenium //input[2] ) e.g. if we have input fields inputfield : << input id="userid" type="text">> inputfield :<< ...
0
votes
1answer
23 views

Maintaining file of object properties in Watin + Visual Studio

I am working with Watin and maintaining excel file for listing object properties. It takes lot of time to when I read object properties from excel file. Is there any other way to store these object ...
0
votes
2answers
55 views

Watin + HttpWatch application issue after Windows Upgrade?

We have an application using Watin and HttpWatch, to check for some production sites. We check response time of our applications at regular intervals and we use this application for that. We open an ...
2
votes
3answers
119 views

How to wait for the post back in Watin?

In my C# code, I am using Watin to navigate the web, to log in to a page, I need to click the log in button, but right after I want to log out, so I have the click log out button right after, but the ...
1
vote
2answers
117 views

How to access controls in an iframe using WatiN?

I am trying to access a checkbox within an iframe, using WatiN in C#. The documentation suggests using this: var frame = browser.Frame(frameId); However, I have tried that format, like this: var ...
0
votes
0answers
50 views

Watin FileDownload dialog not handled when the logged in user is inactive

I am running my test that handles the File download using the WatiN FileDownload dialog. When I am active, I can see the dialog being handled properly. However, when I execute a nightly run on a ...
0
votes
2answers
82 views

Watin search for text

I have a span element in my page: <span class="selected-facets"> <ul> <li> <a href="?"> </a> foo </li> </ul> </span> How can i write a test that ...
0
votes
1answer
81 views

Hide a FileUpload dialog with Watin

I'm using a FileUpload with Watin and IE8 in C#. I don't want see anything on my screen. So, I use Settings.Instance.MakeNewIeInstanceVisible = false; and everything is hidden except my FileUpload ...
0
votes
0answers
91 views

WatiN SelectList.Select() is very slow - .NET

I am using a WatiN SelectList to select multiple options from a select element on a page. I have a list of the options I want to select and I iterate over that list, selecting the options as follows: ...
2
votes
3answers
151 views

How do I set a value for an element?

I'm learning Watin and I came across an interesting piece of html code: <label class="age_label years_old" for="total_age"> <b>34</b> <span class="placeholder">How old are ...
0
votes
0answers
72 views

How can I choose item from the listbox

I'm using Watin with C# .. And I want to how can I choose item from the listbox on the website .. ? Thanks
0
votes
2answers
98 views

Clickin on Element with Underscore

I'm trying to fill out a form and couple of its inputs have underscores in the name and id. I was wondering if that somehow causes the problem. <fieldset> <label ...
0
votes
2answers
163 views

watin not working with live.com

I am trying to use watin to mimic login to live.com using c#. code is below. IE myIE = new IE("http://login.live.com/"); myIE.TextField(Find.ByName("login")).TypeText("abc@abc.com"); ...

1 2 3 4 5 18