Tagged Questions
1
vote
2answers
70 views
Validate worksheet name using WATiR
How to validate the worksheet name / file name of Excel and CSV files in WATiR?
Because if we save the CSV file in with different name, the worksheet name will also change while in Excel it will ...
2
votes
1answer
240 views
Cucumber and Watin for Acceptance testing in Asp.Net MVC
If the business owner/QA are writing/running the Acceptance test against the front end of a Asp.Net Mvc Application, is there a benefit to using SpecFlow/Watin or SpecFlow/Selenium over ...
4
votes
2answers
784 views
Is drag-and-drop possible in watir-webdriver?
I would like to drag-and-drop one element to the position of another, triggered from within a watir-webdriver script.
By "drag-and-drop" I mean picking up a draggable element and releasing it on ...
14
votes
11answers
7k views
Under what circumstances is Sikuli better for test automation than Selenium or Watir?
The Sikuli website says:
Sikuli is a visual technology to automate and test graphical user
interfaces (GUI) using images (screenshots).
Under what circumstances is Sikuli a better technology ...
7
votes
3answers
2k views
Good Watir or Watir-Webdriver tutorials/resources for new-to-automation testers?
There are at least two really good books for Selenium beginners, and quite a few courses/tutorials out there, as well as a lot of blogs.
However, I haven't seen quite as much out there for Watir - ...
2
votes
2answers
487 views
How can I select a file to put into a file_field without using the absolute path with Watir / Ruby?
For example, consider the following script:
require 'rubygems'
require 'watir-webdriver'
browser = Watir::Browser.new(:firefox)
browser.goto("http://tinypic.com/")
file = ...
11
votes
8answers
5k views
Whether to choose Selenium over Watir or Lightweight Test Automation when testing web applications created using c sharp?
I am currently researching testing frameworks to test c sharp developed web applications. I have been leaning more towards the use of Selenium over Watir or Lightweight Test Automation but hesitant ...