Tagged Questions
0
votes
1answer
14 views
rspec selenium-webdriver set proxy
I'm trying to run a series of behavioural tests against a web app using selenium on a server that is behind a proxy and I need the tests to run in headless mode
As a prerequisite I've install Firefox ...
0
votes
1answer
18 views
RubyMine - NoMethodError: Undefined method 'get' for nil:nilClass - Webdriver UserAgent
I am new to RubyMine and trying to debug an project that I did not write myself.
The error when I ran the Project.feature and it stopped at the first line 'Given I go to this Website'.
...
0
votes
0answers
71 views
Problems with Selenium WebDriver executeScript (using watir-webdriver in Ruby)
I am having trouble executing a particular javascript snippet using Watir WebDriver's browser.execute_script command:
Here is the Javascript in question:
var bodyFrame = ...
0
votes
2answers
46 views
How to make sure that link isn't broken using Selenium webdriver?
Suppose, following is the html code:
<a href="http://www.google.com">Google</a>
By following code, I can make sure that href is intended for the link:
expected_href = ...
1
vote
0answers
35 views
Error when Parsing Pdf in selenium webdriver ruby
I am trying to parse online pdf through automation testing in selenium webdriver ruby.I tried to do according to this url
"http://blog.bitcrowd.net/test-rails-pdf-output-with-cucumber/".
I am ...
0
votes
2answers
47 views
Connection refused error when I try to close a Watir browser?
This thing just seems to give me problem after problem.
I posted another question earlier, trying to solve the problem of retaining my session state between closing and opening through Watir. Firefox ...
0
votes
0answers
35 views
Trying to upload a zip file from relative directory fails on Windows but works fine on Mac, Im using Ruby and Selenium-webdriver
we are currently working on an web application testing using Selenium-webdriver(Ruby). Originally we only test the OSX platform, until recently we realize that Windows platform should also be tested, ...
0
votes
1answer
35 views
need help to install Nokogiri
I am using Ubuntu13.04. I have installed Ruby2.0 using RVM. But now looking for any guideline to install nokogiri and selenium-webdriver. But not found any concrete step by step instructions to ...
6
votes
3answers
310 views
Custom profile for Chrome
Environment: Mac OS X 10.8.3, Ruby 2.0.0p0, selenium-webdriver 2.32.1, ChromeDriver 26.0.1383.0.
I want to change default browser language. I am testing if the site detects the browser language ...
0
votes
1answer
127 views
The browser window may have been closed. (Selenium::WebDriver::Error::UnknownError)
I have multiple features when run together throw this error. If I run the scenarios by them self there is no issue. I think the issue is that popups are generated during the test run and are not ...
0
votes
3answers
101 views
PageObject “wait element” method don't work
I'm working on test automation with cucumber, selenium-webdriver and page-object gem.
When I try to run simple test cucumber catch the following error:
Scenario: Going to billing # ...
1
vote
2answers
116 views
ruby selenium-webdriver wait for element “ensure” does not work
Trying to wait for element2 to appear on the web page after clicking on element1 using "begin ..ensure" method. If element2 is not there I want to quit and log an error. But element2 appears in couple ...
0
votes
1answer
47 views
Catch timeout event in ruby selenium
Is there any way to catch all timeout error events in selenium , written in Ruby?
I am writing jenkins with selenium , but not sure the best way to terminate building tasks btw steps . The way I ...
2
votes
3answers
356 views
How to determine that element is clickable using Selenium WebDriver with Ruby?
On my web page, page loads but sub-tabs of page aren't clickable for 20 seconds (sometimes more than this). Page contents are -
<nav id="subTabHeaders">
<div class="selected" ...
0
votes
3answers
84 views
Unable to get list of drop-down options (objects)
I'm trying to get all options of drop-down list. But it's returning - []. In actual my dropdown list has 250 options (list of countries)
Following is the contents of my HTML page -
<select ...
0
votes
1answer
100 views
Selenium-Webdriver- java+TestNg Vs ruby
I have a automation suite in selenium-webdriver ruby::TestUnit. I found that in java, we can have TestNg, which provides many facilities. Is it worthwhile to change all my suite to java+TestNg? or ...
1
vote
1answer
111 views
Ruby Capybara error - port_prober.rb:28:in `initialize': A socket operation encountered a dead network. - bind(2)
I'm trying to run the following Ruby code on a new machine
require 'rubygems'
require 'capybara'
require 'capybara/dsl'
require "selenium-webdriver"
Capybara.run_server = false
...
0
votes
1answer
91 views
Getting undefined method `setTimeout' with selenium webdriver using with ruby
Getting error as below :
C:\Ruby\Scripts>W9_File_delete_v1.rb
C:/Ruby193/lib/ruby/gems/1.9.1/gems/selenium-webdriver-2.30.0/lib/selenium/webdr
iver/common/timeouts.rb:33:in `page_load=': undefined ...
0
votes
1answer
46 views
Simple Screen Grabber in Ruby, Selenium Webdriver throws Errors
I`m having problem with implementing a simple screen grabber.
The basic script is below:
require 'selenium-webdriver'
width = 1024
height = 728
@websites = Array.new
file = open('websites.txt')
...
1
vote
2answers
79 views
How to click on the `OK` button on the confirmation window using selenium-webdriver?
I am writing a file deletion script using selenium-webdriverfrom the webpage. Now when I clicked on the RED cross button as in the below image,getting another confirmation window on the page.
Any ...
0
votes
1answer
69 views
Which is the better option to handle errors between wait and sleep with selenium-webdriver?
We sometimes use sleep(10) or sometimes as below:
wait = Selenium::WebDriver::Wait.new(:timeout => 10) # seconds
element = wait.until { driver.find_element :name => "search" }
element = ...
0
votes
0answers
83 views
using ruby selenium web-driver no_proxy environment variable in a before hook
So I saw here that selenium web-driver has a no_proxy variable but I haven't see any information on how to actually set it during runtime. Currently I have a mess under a open_browser method and I'm ...
0
votes
2answers
55 views
Is it possible to get an input's value using xpath to search on the value of corresponding label?
Given this HTML markup:
<tr>
<td class="label">Description</td>
<td class="data"><div>QA Test Customer</div></td>
</tr>
Trying to write a Ruby ...
0
votes
0answers
51 views
Automatic downloading stopped due to the proper MIME type mismatch
I have written one script to download files automatically from the web as below:
#Automatically download files to a given folder profile settings
...
0
votes
0answers
60 views
TestNg with Selenium in Ruby
Can someone guide me on how TestNg can be used with Selenium webdriver in ruby. Please provide some sample examples. I am novice to ruby. If this is not possible, are there any other tools similar to ...
5
votes
3answers
741 views
A way around Element cannot be scrolled into view - Watir-webdriver with Ruby
So, we have the following code in our page:
<div class="toggle-wrapper">
<input id="HasRegistration_true" class="registration_required toggle" type="radio" value="True" ...
1
vote
0answers
110 views
Is the browsermob-proxy gem for Ruby not working for anyone else?
I've been trying to implement Browsermob Proxy to detect network traffic for something I'm trying to automate, and I've copied the example code in the Github repository to my own code, but the ...
0
votes
1answer
112 views
Not able to click on the nested anchor element using xpath of selenium webdriver
Please find the Html below :
<table class="data" id="filteredTable" cellpadding="0" cellspacing="1">
<tbody>
<tr class="rowLight">
<td class="lt4"><input name="ids" ...
-1
votes
1answer
84 views
Selenium “xpath” giving wrong value
I might be doing anything wrong,can anyone correct me where it is.
I have set up a code for some selections:
to_select = wbs.cells(rows,7).value
...
0
votes
1answer
54 views
couldn't create the hash with option values and <div> text
HTML Code:
<div id="empid" title="Please first select a list to filter!"><input value="5418630" name="candidateprsonIds" type="checkbox">foo <input value="6360899" ...
1
vote
2answers
115 views
Not able get the label text incurred with <input> element
I do have a below HTML:
<div id="filtersetedit_fieldNames" title="Please first select a list to filter!">
<input value="5418630" name="NameID" type="checkbox"> John Das
<input ...
0
votes
1answer
47 views
Ruby could recognize the values when putting into a webpage text filed
I have some values in my Excel as below:
1136-ΑΓΙΩΝ ΑΝΑΡΓΥΡΩΝ
1137-ΑΙΓΑΛΕΩ
But with script when I am putting those into a webpage filed, they are
saving into the field as below:
136-αΓ?Ω? ...
0
votes
2answers
610 views
Selenium-Webdriver Ruby --> How to wait for images to be fully loaded after click
I am very new to Ruby and Selenium-Webdriver, so please, help :)
I am trying to open email campaign , sent to my inbox, that has images and take a screenshot in the firefox. But i can not make it ...
0
votes
2answers
63 views
how to select “###dog” from the dropdown list?
<select name="dropdown" multiple="multiple" size="2">
<option value="1">#Ram</option>
<option value="2">##animals</option>
<option ...
0
votes
1answer
79 views
Is there anyway to stop the pageload from the browser?
require 'rubygems'
require 'selenium-webdriver'
require 'win32ole'
driver = Selenium::WebDriver.for :firefox
driver.manage.timeouts.implicit_wait = 10
driver.get "https://prod.example.com/"
link_name ...
1
vote
1answer
424 views
How does one set useragent for phantomjs driver in selenium-webdriver?
Is it even possible ? I currently have :
require 'selenium-webdriver'
phantomjs_useragent = {"phantomjs.page.settings.userAgent" => "Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) ...
0
votes
1answer
693 views
How to use “selenium-webdriver-xpath” to get the text value from <td>?
Find the below html code:
<table id="supplier_list_data" cellspacing="1" cellpadding="0" class="data">
<tr class="rowLight">
<td class="extraWidthSmall">
<a ...
0
votes
1answer
67 views
how to get the test case name in selenium web driver in ruby?
I am newbie to Selenium and I have this doubt. Say I have a code like this
it "test_name" do
#test code enter code here
end
Is there any way I can get the "test_name" or is it possible to ...
0
votes
0answers
11 views
Is there any alternative for AXElements while using jruby?
I want to set focus to window while running script in jruby.
I am using jruby 1.7 and ax_elements 0.9.0.
On windows this can be achieved via. rautomation gem.
Can anyone help me on this ?
0
votes
1answer
88 views
driver.navigate.refresh not working as expected with seloenium-webdriver
Please follow the code below:
driver.get "https://example.com/"
driver.find_element(:class, "button").submit
driver.navigate.refresh
wait = Selenium::WebDriver::Wait.new(:timeout => 10) # seconds
...
1
vote
2answers
51 views
How to click on the <a> Login </a>?
How to click on the below Login?
<div style="margin: 20px 0; text-align: center;">
<a class="button" href='/aems/login.do'>Login</a>
</div>
I wrote the below but got error:
...
0
votes
3answers
134 views
How to refresh a page on browser using selenium-webdriver?
Follow the below part of the code:
driver.get "https://example.com/"
element = driver.find_element :name => "username"
element.send_keys "*****"
element = driver.find_element :name => ...
0
votes
1answer
146 views
How to open mutiple tabs within a browser using Capybara?
I need to open multiple tabs within a single browser and i need switch over all the tabs.
Give me your suggestions. Thanks in advance.
-1
votes
1answer
102 views
can we found inner HREF values using selenium-webdriver?
Please find the below html code:
<fieldset class="attachmentTable large"><legend>SMF :</legend>
<table cellspacing="2" cellpadding="2" border="0">
<tr> ...
2
votes
2answers
79 views
how to get the 3rd last value boo using selenium-webdriver?
<a href="/app1/data/r.doc"> foo </a>
<a href="/app2/data/r.doc"> boo </a>
<a href="/app3/data/r.doc"> loo </a>
<a href="/app3/data/r.doc"> goo ...
-1
votes
1answer
51 views
How to get the `HREF` values only when `<legend>tax</legend>?
<fieldset class="attachmentTable large"><legend>SMF</legend>
<table cellspacing="2" cellpadding="2" border="0">
<tr>
<td>
<a href="
/aems/file/test.html">
...
0
votes
2answers
39 views
how would I search the `/aems/dic/list` from a list of anchors?
I have the below code which is a part of an html:
<td><a href="http://youtube.com">YouTube</a></td>
<td><a data-category="news" ...
1
vote
1answer
147 views
how to get the current URL of a webpage in selenium-webdriver
I am using selenium webdriver to do some automation on browser. now there is a need to get the current url of the page currently opened in the browser.
I wrote the below code but giving me error:
...
0
votes
1answer
65 views
Is there anyway to search and get the value of <a>.. </a>?
In a webpage suppose i have the below values:
<td> <a href="https://www.test.com/test123/a.html"> test11 </a> </td>
<td> <a ...
0
votes
1answer
67 views
I am getting an error with (..).each do |x| .. end in ruby
I am getting error for the below part of code:
element = driver.find_element :name => "used_by"
element.send_keys "371101"
element = driver.find_element :name => "btnSearch"
element.click
...

