Selenium-Webdriver provides an API to control and communicate with web browsers.
92
votes
15answers
51k views
Take a screenshot with Selenium WebDriver
Does anyone know if it's possible to take a screenshot using Selenium WebDriver? (Note: Not Selenium RC)
3
votes
3answers
3k views
Alert handling in Selenium 2 (WebDriver) with Java
I want to detect whether an alert is popped up or not. Currently I am using the following code:
try {
Alert alert = webDriver.switchTo().alert();
// check if alert exists
...
7
votes
3answers
544 views
Pytest: how to skip the rest of tests in the class if one has failed?
I'm creating the test cases for web-tests using Jenkins, Python, Selenium2(webdriver) and Py.test frameworks.
So far I'm organizing my tests in the following structure:
each Class is the Test ...
14
votes
8answers
25k views
Selenium WebDriver and DropDown Boxes
If I want to select an option of a dropdown box, there are several ways to do that. I always used:
driver.findElement(By.id("selection")).sendKeys("Germany");
But that didn't work every time. ...
15
votes
10answers
29k views
How do I set a an option as selected using selenium-webdriver (selenium 2.0) client in ruby
I am trying to get familiar with the new ruby selenium-webdriver as it appears more intuitive mostly than the previous version of selenium and the ruby driver that went with it. Also, i had trouble ...
1
vote
2answers
622 views
Opening new window in WebDriver using C#
EDIT 4:
EDIT 3
EDIT 2
string currentWindow = driver.CurrentWindowHandle;
driver.SwitchTo().Window("");
string childTitle = driver.Title;
driver.SwitchTo().Window(currentWindow);
...
1
vote
2answers
804 views
How to initialize multiple browsers in WebDriver using Java?
I want to use Firefox, IE, Chrome in one single code. I can only initialize Firefox as
driver = new FirefoxDriver();
but cannot initialize other browsers in the same way. For example:
driver = new ...
3
votes
1answer
3k views
How to type some text in hidden field in WebDriver
I am using WebDriver with Java for test automation. I have the following HTML code for input field which is hidden:
<input type="hidden" value="" name="body" id=":6b">
How to type something ...
10
votes
3answers
2k views
Unable to obtain stable firefox connection in 60 seconds (127.0.0.1:7055)
While testing scenario by cucumber i'm getting the following error when running rspec tests
unable to obtain stable firefox connection in 60 seconds (127.0.0.1:7055) ...
2
votes
2answers
157 views
ImageTag exists in the TR?
EDIT:
public bool getImage()
{
IWebElement table = driver.FindElement(By.Id("DIV_ID_1"));
string name = String.Format("//*[contains(text(), \'{0}\')]", 'TEST1');
...
1
vote
1answer
131 views
Cucumber: Undefined step although the step is defined
I have this step implementation
Given /^entity URI "([^"]*)"$/ do |arg1|
@entityUri = arg1
end
I copied this step from an existing feature file to a new feature file
Given entity URI ...
0
votes
1answer
83 views
Selenium automator ramdonly timeout
I am using selenium to test ui.
We have several testcases to run. Everytime there's something timeout. Which one to fail on time is random and so is the number of failed ones. But my screen shots ...
3
votes
5answers
14k views
How to get text from each cell of an HTML table?
In Selenium 2.0, I have no idea how to traverse through a HTML table in a webpage. In selenium2.0 javadoc, I found two classes "TableFinder" and "TableCellFinder", but I couldn't find any examples.
...
7
votes
6answers
3k views
How to perform drag and drop using selenium-webdriver when target and destination element are in different frames?
I have to drag an image and drop it into a CQ5 component. The image and component are in different frames.
Here is the code which did not work as webelement destinationcould not be found when the ...
7
votes
3answers
2k views
Failed to connect to binary FirefoxBinary with Selenium in Maven
I am running some Selenium-Tests. When I start them directly from Eclipse everything works fine. But when I Start them through Maven there the following Exception occurs:
...
4
votes
1answer
299 views
Selenium and HTML Window location
I am using Selenium's WebDriver in conjunction with java.awt.Robot to better simulate user interaction with our web application. Yes, I know it's probably unnecessary, but the customers I serve ...
4
votes
2answers
4k views
Selenium Webdriver move mouse to Point
I am currently trying to move the cursor to a point (org.openqa.selenium.Point) that has been set by checking for an occurrence of a marker on a live chart from which I can get no details but can find ...
13
votes
3answers
2k views
Tracking with Java Script if Ajax request is going on in a webpage or Intercept XMLHttpRequest through Selenium Web driver
I am using Selenium WebDriver for crawling a web site(only for example, I will be crawling other web sites too!) which has infinite scroll.
Problem statement:
Scroll down the infinite scroll page ...
3
votes
2answers
2k views
How to deal with ModalDialog using selenium webdriver?
I am unable to switch to Modal Dialog of given example
http://tinyurl.com/ykt97gx
I don't know how to get element on modal Dialog
3
votes
4answers
563 views
I need Selenium to open it's web browser in a larger resolution ( preferably maximized)
I am using Selenium WebDriver and coding in Python
I have looked all over the place and the best I could find were things written in different languages. I also tried to use the export tool on ...
3
votes
2answers
1k views
Slider movement possible in Selenium? [duplicate]
Possible Duplicate:
How to move Horizontal Slider or Vertical Slider of jQuery using Selenium Webdriver
There are many examples of slider in internet like
http://jqueryui.com/demos/slider/
...
3
votes
1answer
1k views
How can I get WebDriver to dismiss a Firefox Security Alert?
I am writing a test script using spock, geb, and WebDriver. The script submits a form on an insecure page. The page submits to a secure HTTPS URL. Firefox shows a warning for this, specifcally:
...
2
votes
2answers
490 views
How to get a color of a webelement using selenium webdriver with python?
How do I locate the background-color of a webelement in hexadecimal format? With my current selenium webdriver python code it is returning the background-color in RGB format.
This is the html element ...
2
votes
2answers
1k views
Is it possible to export Selenium IDE test cases as Java/ TestNG/ WebDriver?
In Selenium IDE 1.9.0 there are options to export testcases as Java / JUnit4 / Webdriver and Java / TestNG / Remote Control (along with many more options).
I want to know is there any way to export ...
2
votes
3answers
627 views
Unable to control slider captcha jquery using Selenium Webdrive?
I want to record slider captcha given on our client site.
We have get this concept from other site named as http://www.fmylife.com/signup
This have slider captcha for registration
I have try to ...
2
votes
2answers
4k views
How can I ask Selenium WebDriver to wait for some time?
I can write the following code to ask WebDriver to wait for sometime
new WebDriverWait(driver, 20).until(ExpectedConditions.presenceOfElementLocated(By.id("loginBox")));
But,
Actually I sending ...
2
votes
4answers
3k views
How to handle login pop up window using Selenium WebDriver?
How to handle the login pop up window using Selenium Webdriver? I have attached the sample screen here. How can I enter/input Username and Password to this login pop up/alert window?
Thanks & ...
2
votes
4answers
5k views
Getting Selenium to login via .htaccess popup
I am using WebDriver (Selenium2) with Java on linux. I am using WebDriver to auto fill form and submit it. I am facing problem with htaccess sites i.e., I am not able to access htaccess site through ...
1
vote
4answers
3k views
switch tabs using selenium Webdriver
Using Selenium Webdriver with JAVA ,
I am trying to automate a functionality where I have to open a new tab do some operations there and come back to previous tab (Parent).
I used switch handle but ...
1
vote
1answer
407 views
Python Splinter (SeleniumHQ) how to take a screenshoot of many webpages? [Connection refused]
I want to take a screenshoots of many webpages, I wrote this:
from splinter.browser import Browser
import urllib2
from urllib2 import URLError
urls = ['http://ubuntu.com/', 'http://xubuntu.org/']
...
0
votes
4answers
292 views
Unable to locate an element using Selenium WebDriver 2.31 (JRE 7)
I'm trying to automate a scenario which books a bus ticket in a website. I'm using Selenium WebDriver with Eclipse and when i try to locate the element, i.e. 'Passenger name', no compilation errors, ...
0
votes
1answer
142 views
Using selenium with python to extract javascript-generated HTML? Firebug?
Python noobie here.
What I have is a data harvesting problem. I'm on this website, and when I inspect the element that I want with Firebug, it shows the source containing the information I need. ...
0
votes
2answers
208 views
Can not find element using webdriver
There is a web element:
<select id="sel" onchange="refresh('sel')">
<option value="1"> A</option>
<option value="2"> B</option>
</select>
Because it has ...
0
votes
2answers
1k views
Selenium Webdriver can't find elements on IE8
Here's a strange issue I'm facing right now.
The Firefox driver locates an element in my webpage however my IE driver doesn't. I thought it would be down to browsers handling the xpaths differently, ...
0
votes
1answer
2k views
Selenium Webdriver remote setup
I feel like I'm missing something obvious, but I cant quite get my head around the documentation for this. I have the selenium-server-standalone.jar running on my local machine, and the tests I want ...
0
votes
1answer
829 views
Write TestCases using PageFactory (Selenium-WebDriver). Advantages?
Is it a good practice to go the PageFactory way when writing testcases in Selenium2? If yes why?
To be frank I have never used them when writing test-cases and have not missed it either. But I would ...
0
votes
2answers
986 views
How to click a button in WebDriver with Java using jQuery
I have the following HTML:
<button class="gbqfba" name="btnK" aria-label="Google Search" id="gbqfba"><span id="gbqfsa">Google Search</span></button>
My following code for ...
0
votes
1answer
1k views
How to press Ctrl+A to select all content in a page by WebDriver using Java
I want to select all content by pressing Ctrl+a from keyboard by using WebDriver with Java. I wrote the following code:
Actions actionObj = new Actions(driver);
actionObj.keyDown(Keys.CONTROL)
...
5
votes
3answers
2k views
Selenium webdriver does not connect with firefox 20
I'm using selenium-server-standalone-2.28.0.jar .
Launched the hub and
Launched the listener using the following command
"C:\Program Files (x86)\Java\jre7\bin\Java.exe" -jar ...
5
votes
2answers
3k views
Selenium WebDriver (2.25) Timeout Not Working
I think I've read all the Selenium timeout questions on Stack Overflow, yet neither implicit nor explicit timeout works in my Selenium webdriver 2.25 (Python 2.7 binding) and both "no_timeout_here =" ...
4
votes
1answer
3k views
what profile does selenium webdriver use by default?
Where does selenium webdriver 2 get the anonymous profile that it uses when it opens firefox driver? If it used the default for firefox, %appdata%/roaming/mozilla/firefox/profiles, then if i were to ...
3
votes
1answer
1k views
Selenium WebDriver with Jenkins
I'm looking into using Selenium WebDriver with Jenkins. We have a Jenkins server running under Windows Server 2008 and would like to run all my test cases and I'm using mstest and also i have ...
3
votes
3answers
1k views
Selenium WebDriver works but SLOW (Java)
I am using Selenium WebDriver to take a screenshot of webpages. It runs great. However, from the time I hit run in eclipse to the time the screenshot shows up in my local drive is 7-10 seconds. Most ...
3
votes
2answers
914 views
How to get text of an element in Selenium WebDriver (via the Python api) without including child element text?
<div id="a">This is some
<div id="b">text</div>
</div>
Getting "This is some" is non-trivial. For instance, this returns "This is some text":
...
2
votes
2answers
819 views
WebDriverWait or ImplicitlyWait or ExplictlyWait nothing works
I'm using Selenium 2 tests (written in C#) that choose values from a "select" control. Selection causes a post-back to the server, which updates the state of the page. I am therefore performing a ...
2
votes
2answers
743 views
How do I switch to a Frame and click on the pop up using web driver (Selenium - Java)?
<iframe height="0" frameborder="0" width="500" scrolling="no" style="position: absolute; top: 185.5px; left: 460.5px; height: 357px; width: 500px; z-index: 10002; border: medium none; ...
1
vote
1answer
941 views
Selenium web driver not able to close firefox instance if a Test cases is failed
i folks,
i am using junit with selenium web driver 2.28.
the problem is if i run a successful test case the web drives is able to close the firefox instance, but when a test case fails the selenium ...
1
vote
2answers
874 views
How to wait for an alert in Selenium webdriver ? [duplicate]
Possible Duplicate:
selenium 2.4.0, how to check for presence of an alert
I am using the following code to close the alert window :
Alert alert3 = driver.switchTo().alert();
...
1
vote
3answers
2k views
Unable to find element with css selector
Using Selenium Webdriver for FF/IE using C# (.Net)
Below is my page source and I am trying to use the CssSelector to find/contains the particular name from my page and i have tried with the below ...
1
vote
2answers
1k views
Getting Timeout using Selenium Webdriver
I am using Selenium WebDriver and its was working all fine and today i am getting either timeout if i use the below code or getting the error Unable to find element with id == ...


