-1
votes
2answers
20 views

Look for text in a div that has multiple links under it with Watir

I am trying to verify that the text of a link is present in a . The div is not available until a link is clicked. After the link is click more links become available to click. Below is what the html ...
0
votes
1answer
29 views

Mouse Hover in selenium Ruby using capybara [duplicate]

Searching from many forums i got the code to hover the mouse over an element .I want to hover the mouse over a thumbnail image. i put html element ".thumbnail" as class inside find_element method .I ...
-1
votes
0answers
19 views

Hover the mouse over thumbnail image in capybara [duplicate]

I have a thumbnail image on a page. When hovering mouse over the thumbnail I have to display a hover modal. But I can't figure out how to hover mouse over the thumbnail image. I can test it using ...
0
votes
0answers
29 views

Set_no_wait not setting a value for a Text field

We just migrated to the latest version of WATIR(4.0.2), and the method set_no_wait does not set a value to the text field. The text field where I set a value triggers a pop up, and--hence on using ...
0
votes
2answers
47 views

How do I programmatically check for open browser instances on a Windows machine?

I wrote a GUI automation script in python that opens a web browser, does some tests in the browser and then closes the browser. It does so in a loop going up through hundreds of thousands of ...
-1
votes
1answer
35 views

Regression testing system which includes compiling the tool, testing and reporting results

I want to set up an automation system to run nightly regression tests for a command line tool on a Linux environment. There are some automation scripts which are written in Ruby, but I'd like a ...
0
votes
1answer
66 views

Loading js files in Watir

I want to be able to dynamically load .js libraries like jquery using Watir for some advanced browser automation. This is what I tried: $browser.execute_script( %{var bootscript = ...
1
vote
0answers
84 views

Ruby test with jenkins/maven/testLink

I am using Jenkins, maven and testLink plug-in to do automation test. I would like to execute ruby test with Jenkins and hook theim in testLink. Here is my pom.xml : <project ...
2
votes
3answers
357 views

Interacting with JavaScript drop down menu using WebDriver and Ruby?

I'm writing automation for a web page using Ruby and Selenium WebDriver but have encountered a blocking issue with some of the drop downs on the site which are made using JavaScript instead of ...
2
votes
1answer
67 views

collect all xpath results into an array in ruby

I have a very poorly coded JSP that I am trying to run automation on. There are a series of checkboxes with names (no IDs) of "delete[x]" where X is the item number of the item populated. I am ...
0
votes
1answer
249 views

Watir Web driver to download file

I'm writing Ruby script to automate Downloading files from a list of files using Watir web driver. Any pointers or approaches on Automating Popping up of Window and Directory Chooser to save the file ...
0
votes
1answer
55 views

Choosing form fields by label using Mechanize?

I originally wrote 800 lines to do this, site by site. However, on talking to a couple of people, it seems like my code is way longer than it needs to be. So, I've got an idea of what you'd do in ...
0
votes
2answers
368 views

Selenium WebDriver ruby accessing span value

What is the best way to to select this element using Selenium WebDriver? I am trying to access the <span> element through the class mapResultNumber. This is the actual HTML: <div ...
0
votes
4answers
261 views

What are some alternatives to Selenium?

What are some web UI automation frameworks available out there? I know about this question, but it was asked 3 years ago and things have changed a lot since then. I just wanted to find out if the ...
1
vote
2answers
114 views

Language for automation in cloud Administration or infrastructure management [closed]

My question is related to the language to learn for automation task in cloud computing. will it be python or ruby or some thing else. i want to move into the ladder as a automation engineer for ...
0
votes
2answers
211 views

Watir scripts via launchd

It's possible I can't use launchd for this, I just couldn't find anything saying explicitly NO. So, here's the question... I'd like to run my Watir scripts 10 minutes past the hour, every hour. ...
1
vote
2answers
421 views

automating sass compiling in windows

So to put as simple as possible, I would like to incorporate SASS into a site I'm developing (the Internet seems to suggest SASS is the best pre-processor candidate) but I'm the type of developer that ...
0
votes
0answers
77 views

Change time and date on IOS before tests (automation)

Im pretty new in mobile automation, could someone help me how to change time and date on simulator before executing tests? Im using cucumber/ruby/selenium webdriver to start ios simulator, and need to ...
3
votes
1answer
561 views

Watir Webdriver how to close child windows

I'm in the process of migrating some of our legacy Watir scripts over to Watir-Webdriver. The migration has gone mostly well except for how they designed Watir-Webdriver to handle popup windows. ...
0
votes
2answers
80 views

interacting with a already opened and visible webpage with Ruby

I know of gems like Mechanize which let you open a website, give credentials and eg scrape the contents. I also know of AutoIt and its use through Ruby to interact with already opened windows but i ...
1
vote
1answer
491 views

ruby + selenium-webdriver actionbuilder

I can't seem to get the actionbuilder to work in selenium webdriver. I am trying to automate a menu that uses Javascript. I need to mouse over then move and click on a link that appears after the ...
0
votes
0answers
166 views

Manipulate Word Documents in OS X with Ruby

I want to take an existing Microsoft Word document, and add bolding to certain words. Is it possible to do this using the MRI Ruby that comes pre-installed on OS X plus some gems? (Unfortunately, that ...
2
votes
1answer
172 views

Cucumber/Ruby: is it possible to intercept HTTP requests/responses from browser?

I'm starting with Cucumber & Ruby and wondering if the following is possible. I'm at a page and I know that when I click link, that's going to send a request looking like: ...
0
votes
4answers
332 views

Script to open a bunch of browser tabs, based on data from an Excel spreadsheet?

Take for example a link format of: www.stackoverflow.com/xxxxxxx I have an Excel spreadsheet with one of the columns as a bunch of these xxxxxx values. I need to pull all of them from the ...
-1
votes
1answer
1k views

Open source Siri clone

I'm thinking about creating an open source Siri clone in Ruby (not a Siri proxy, not the voice recognition part, but the "parse a question or command and take an action or return a response"). Similar ...
2
votes
1answer
128 views

How do i pass a random string in ruby to an iOS app?

I am using Frank to automate the iPhone and so far so good. I am trying to create a random string for the user name and also concatenate the random string to an email the in the step definitions. I ...
1
vote
4answers
253 views

Ruby browser automation

I want to write ruby script which run browser (for example, firefox), open web-addresses, click links, check/uncheck boxes and other stuff. What gem can i use for that?
1
vote
1answer
87 views

Simultaneous uploads for files in an folder in Ruby on OSX

Ive seen similar questions asked before but none that are as basic as mine. I know that it is possible to do using Net::FTP and threads. My question is how do you create a thread and pass it a file ...
2
votes
3answers
1k views

Watir Webdriver : Iterating table and storing its content in an array

I am trying to automate a block appearing on the website and comparing its content through CMS table. The issue is I have managed to automate the block appearing on the UI but when I login as admin ...
1
vote
0answers
57 views

Checking a background image that is specified in a class style in rspec

Basically im doing some automation testing on an interface and i need to check the background of a css that is associated with an image, is there anyway of doing this. Ive looked around and havent ...
0
votes
2answers
1k views

How to hover over an image using capybara and selenium

Ive been trying to write an automation test to hover over an image using just capybara and selenium. Once i can get it to hover over the image i would like to check that the image has changed ie ...
0
votes
2answers
360 views

How can I increase the performance of watir-webdriver automated scripts

The main problem I'm having is pulling data from tables, but any other general tips would be welcome too. The tables I'm dealing with have roughly 25 columns and varying numbers of rows (anywhere from ...
1
vote
0answers
220 views

Ruby / Rails: Automate form submission and scrape page data

So, I'm trying to create my own personal mint.com type application for local use only. So, I want it to login to my bank account, and grab my transaction history. So far, I've tried to use the ruby ...
1
vote
1answer
1k views

Using Watir-webdriver how to check the URL of a page

I am new to watir-webdriver automation, apologies if its a basic question of automation. But the thing is I am automating pagination of a website where the URL of the website changes as the user ...
0
votes
2answers
1k views

Watir: fire_event is not working where as click works fine in IE

browser.link(:id => "tab_buy").fire_event ("onmouseover") The above code does not work where as browser.link(:id => "tab_buy").click works well. This is true with both IE and Firefox. Please let me ...
1
vote
1answer
292 views

how to check text color in watir for drop down boxes attributes

contents = $ie.select_list(:id, "dropdown").getAllContents puts contents.currentstyle.color It showing error as 1) Error: test_01(TC_Login): NoMethodError: undefined method `currentstyle' for Can ...
0
votes
2answers
329 views

Not sure how to deal with javascript and mechanize in this specific instance

I'm going to be accessing a number of accounts on Amazon's KDP - http://kdp.amazon.com/ My task is to login to each account and check the account's earnings. Mechanize works great for logging in and ...
0
votes
3answers
357 views

Watir & Ruby; A couple beginner “how can I do this” questions inside

Programming newbie here, about a month in with Ruby. I'm currently playing around with Watir and have a few questions to streamline the automation process of a simple form fill. Current Code: # ...
0
votes
1answer
117 views

How can I use rb-appscript to drive Mac OS Finder's “Connect To Server” menu item

The end goal is to write an automated test in Ruby/Cucumber for connecting to a WebDAV server and testing authentication, CRUD and load/performance in Mac OS X. I'm trying to simulate user behavior ...
2
votes
2answers
778 views

Export entire html <table> to a text document using Watir

Basically all I would like to do is export a whole html table to a .txt file (notepad document). So far I have learnt how to instruct the browser to find the html page with the table. require ...
0
votes
1answer
100 views

Stripping out results from a website that doesn't have differing URLs

I'm trying to automate the process of searching for alternative telephone numbers using SayNoTo0870 . Every time one searches for an alternate number or name it brings up the '/companysearch.php' ...
2
votes
3answers
457 views

Automating authentication with Watir

I've searched and searched for this, but I can't seem to get this automation to work. Having used all of the basic authentication code on the OpenQA site, I still cannot get the authentication box to ...
1
vote
0answers
155 views

mechanize: specified module could not be found (unf_ext.so)

I'm trying to do something with Mechanize and I'm not getting past the most basic example: require 'rubygems' require 'mechanize' agent = Mechanize.new Seems simple enough, but all I get is this ...
0
votes
3answers
106 views

What gems do you recommend to use for this kind of automation?

I have to create a script to manage maintenance pages server for my hosting company. I will need to do a CLI interface that would act like this (example scenario) : (here, let's suppose that mcli is ...
0
votes
3answers
132 views

How to default the [Yn] responses for the Ruby “gem clean” command?

I regularly use the Ruby gem clean command to keep the local gem repository in shape. However, due to dependency issues, many a times the command returns a prompt such as: XXXXX-1.0.6 depends on ...
1
vote
1answer
250 views

onmouse over with an anchor on watir, not detecting

I am trying to trigger a mouse over drop down window in Watir on ruby. I have tried it using both of the two scripts below, so far neither have worked.: $browser.div(:class => ...
-3
votes
1answer
202 views

issue automating with Ruby

I am a beginer with Ruby and I have some issue using Ruby and Watir to automate tests. My problem is I cant reach text field in web page with ‘id= namecolumnbeginswith’ and ...
4
votes
1answer
219 views

Is there a ruby gem that enables cross-platform mouse manipulation?

I need the ability to programmatically trigger a mouse click at specific coordinates. I've found AutoIt and the auto_click gem which both supposedly provide this ability, but only on Windows. I've ...
0
votes
1answer
98 views

How to run a custom command when run the 'rails server' command?

I am using Ruby on Rails 3.1.0 and the DelayedJob gem. In order to automate processes in development mode I would like to "auto"-run the following command rake jobs:work when in my console\terminal ...
3
votes
2answers
2k views

How to hover over (mouseover) an element in Selenium Ruby?

Anyone know how to hover over an element in Selenium Ruby Webdriver? My code is like this: el = driver.find_element(:css => "#foo") driver.move_to el # How do I trigger a mouseover event on this ...

1 2