Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
698 views

Functional PDF Testing (Automate Testing of PDF Content)

I am working on an application where I am writing some automation framework for testing a web application. I am using Watij / Watin for the framework, but have run into a problem with verifying the ...
1
vote
1answer
530 views

How to specify to the Java VM the -d32 parameter

I recently downloaded watij. on their website they say Note: If you are running on a Mac you must add -d32 to your Java VM parameters. I was wondering what the steps are to do this since they do ...
1
vote
3answers
471 views

Testing jQuery change event using Watij

I have a select list where a change event has been bound to the element using jQuery. Something like this: $("#someId").change(function() {..}); When someone chooses a new option in the select ...
1
vote
2answers
224 views

Watij Replacement

Does anyone know of a good replacement to Watij which will allow automated tests to be written in Java? It looks like the Watij library isn't being developed anymore.
0
votes
1answer
55 views

How to measure the position of an element in web page using selenium RC?

I have tried a lot in finding out how measure the coordinate of an element in a web page in different browser.But I could not find any solution. Is there any other tool that can measure the position ...
0
votes
1answer
39 views

watij safari onclick method

I am trying to simulate the click event of an anchor tag using watij on mac. I found the tag <a name="myLink" href="" onClick=""></a> My code is Tag link = ...
0
votes
1answer
49 views

Watij Click an Image

I am trying to click an image during automated testing using Watij. I am specifically trying to use SymbolFactory's src (instead of name, id, etc.) as detection. HTML: <input type="image" ...
0
votes
1answer
67 views

How to set value for this input element through watij

My code: <input tabIndex="1" style="width: 10px; color: black; margin-left: 2px;" type="text" setvaluehandler="RichInputBoxSetValueHandler1" backspacedeleteoff="true" tipText="" ...
0
votes
0answers
48 views

How and where to disable sharepoints RichTextEditor

I have been trying to automate creation of a set of pages in sharepoint using Watij framework. I have problem setting the html source for the RTE. Is it possible to disable the RTE in sharepoint? ...
0
votes
1answer
323 views

how to run webspec and watij

I have the following code... public class first { public static void main (String[] args) { WebSpec spec = new WebSpec().safari(); spec.safari().open("http://www.google.com"); ...
0
votes
1answer
231 views

get watij to run

i downloaded watij and am trying to get it to run in eclipse. i tried this sample code WebSpec spec = new WebSpec().safari(); spec.safari().open("http://www.google.com"); and WebSpec is underlined ...
0
votes
0answers
95 views

watij IE8 Node is not a DOM node error

Hi we recently moved from IE6 to IE8. Exisint watij solution then stopped working - first issue was .attach() - couldn't find the browser. That was a minor change to the watij IE.java to connect to ...
0
votes
0answers
108 views

E_ACCESSDENIED using WatiJ to log in to IIS/ASP.NET site

I am trying to use Watij to log in to an ASP.NET/IIS web site. The Tag on the login page that accepts the username is: <td class="LoginFormItem" style="white-space: nowrap; ...
0
votes
0answers
98 views

Running Watij on Debian

When trying to run Watij/Webspec 1.3.1 on Debian I'm encoutering this nasty C-level error, crashing the JVM: (process:15725): GLib-GObject-CRITICAL **: ...
0
votes
1answer
172 views

Problem with WATIJ

I have logged in to a website by using WATIJ jar file in java. Now I want to get the page source (HTML code) of the webpage that appeared after login. I have IE instance already.
0
votes
8answers
4k views

XPath can't find a table by id

I'm doing some screen scraping using WATIJ, but it can't read HTML tables (throws NullPointerExceptions or UnknownObjectExceptions). To overcome this I read the HTML and run it through JTidy to get ...