Version 2 of Selenium Browser Automation Framework
0
votes
1answer
23 views
<HTML> <head> <title> text empty with selenium Firefox webdriver
I'm using Firefox 21 and C# WebDriver 2.33 on Windows 7. I'm baffled why the following test fails (which I have just to check my configuration is set up correctly). This passes in other browsers.
...
0
votes
0answers
8 views
How to call a global file before running any test suite
I want to call a keyword which should be executed prior to the start of any robot tests and that keyword should be run only once per entire project suite...
eg: Lets say there is a project suite ...
1
vote
0answers
27 views
How to unit-test Page Objects in a Selenium framework with PowerMock
I'm working an automation framework built on Selenium 2 and based on the Page Object design pattern. I am at the point where I want to start thinking about writing test suites for my code. Due to ...
0
votes
1answer
30 views
Selenium Firefox Profile Path not taken into account
I just want to test locally. With Internet Explorer it works. With Firefox, I get a timeout on line driver.FindElement :
var capabilitiesInternet = new OpenQA.Selenium.Remote.DesiredCapabilities();
...
3
votes
1answer
25 views
How to set Google Chrome in WebDriver
I am trying to set chrome as my browser for testing in webdriver and set the chromedriver.exe file properly but still i am getting below error:
org.openqa.selenium.WebDriverException: The path to the ...
0
votes
1answer
16 views
Selecting a non-visible item in the dropdown for a GXT ComboBox
I am trying to test an application written using GWT 2.3.0 and GXT 2.2.5 with the Selenium 2.25 WebDriver on Java.
In the application, I have a ComboBox with a large number of options, so many that ...
0
votes
1answer
26 views
difference between thoughtworks and openqa selenium
What the difference between openqa.selenium and thoughtworks.selenium? How they compatible with each other?
There is no class Selenium in package openqa.selenium, but there is class WebDriver. I want ...
0
votes
0answers
42 views
Fitnesse suite with selenium webdriver - Exception while running the second suite
The intention is to run a bunch of test cases across multiple browsers i.e {Firefox, Chrome} using FitSharp2.2 ,Fitnesse, Selenium WebDriver.
Currently we are reusing entire suites with symbolic ...
0
votes
1answer
26 views
Getting Error while awaiting automation ping from browser process, while launching google chrome from Selenium WebDriver
public void setUp(){
System.setProperty("webdriver.chrome.driver", "chromedriver.exe");
driver = new ChromeDriver();
driver.get("http://book.theautomatedtester.co.uk/chapter4");
}
Error:
...
0
votes
1answer
16 views
Arquillian and Selenium in mixed Container/Client mode
i am reading the tutorial on Arquillian's website
http://arquillian.org/guides/functional_testing_using_drone/
Under the paragraph of "Enabling Client Mode" they state that it is possible to mix ...
0
votes
2answers
40 views
selenium firefox driver python
I have python functional scripts using selenium 2.32 with the Firefox driver. On a html like below:
<div id="reminder">
<div>
<ul>
<li>
<strong>text ...
0
votes
1answer
81 views
How to eliminate xpaths in Webdriver code?
I working on automating a website and I'm trying to find a way to reduce the use of xpaths in my code.
My code looks something like this
...
0
votes
0answers
43 views
verify Popup Alert message text using selenium webdriver
<tr>
<td style="padding: 15px 5px 0 0;" colspan="2">
<input class="LoginButton2" type="button" value="Login" name="login">events=Object { click=[1]}handle=function()
...
0
votes
2answers
43 views
Unable to either launch or connect to Chrome using selenium-webdriver
I am creating webdriver as follows:
var driver = require("selenium-webdriver");
driver = new webdriver.Builder().
usingServer(server.address()).
withCapabilities({'browserName': 'chrome'}).
...
0
votes
0answers
36 views
How to test a JavaScript-based application, for example Ember.js with Selenium 2?
I have created a JavaScript based application, powered by Ember.js framework. Now, I'd like to create Selenium 2 tests for the application. However, I have encountered the following problem:
The test ...
0
votes
1answer
14 views
Select all matching elements in PHPUnit Selenium 2 test case
It is simple to select an element by specifying its class, in PHPUnit Selenium 2 test case:
$element = $this->byClassName("my_class");
However, even if there are two items of my_class, the ...
1
vote
1answer
40 views
Using wildcard in WebDriver By.XPATH
Researching on Google I was lead to beleive that you could use * as wildcard in XPATH statements but that seems not to be the case. Therefor could anybody help me find a good XPATH statement for the ...
1
vote
1answer
20 views
How can I reset the Selenium mouse cursor position?
I'm testing a javascript web app with some behavior depending on mouse over using Selenium2 WebDriver C# API. I have an extension method that performs a hover on a web element to keep code DRY.
...
1
vote
1answer
51 views
using selenium grid remote webdriver java client to take screenshots with messy characters returned
I established a selenium grid 2 on one linux platform, with both hub and node on the same machine. Then I used selenium remote webdriver(java client) to take a screenshot of www.google.com.hk page. ...
0
votes
0answers
22 views
selenium2 (webdriver), firefox short crash? then it reopens but InvocationTargetException is thrown
The following piece of code is used to kick start the firefox
public static WebDriver driverSetUp() {
// FirefoxBinary bin = new FirefoxBinary(new
// File("C:\\Program Files\\Mozilla Firefox ...
0
votes
0answers
28 views
How do I user relative paths with the webdriver.Navigate().GotoUrl()?
driver.Navigate().GoToUrl("/") sets the location to "/" instead of "http://www.domain.com/"
another example would be
driver.Navigate().GoToUrl("/view1") sets the location to "/view1" instead of ...
1
vote
1answer
42 views
Webdriver - Infinite Page loads on submit
I am testing a login page. At certain times (read as intermittent) loading of the home page takes infinite time. In this case, the below command never completes -
...
0
votes
1answer
27 views
Check a valeur with selenium
I want to verify that i have a trafic in my box. So i want to check that "Total" is different de 0 but i fail.
http://clip2net.com/s/54bx8J
HTML code :
<span>
<table>
<tbody>
...
0
votes
1answer
79 views
How to run selenium test case in two different nodes?
Actually I need to run my single selenium test case in two different nodes using FIREFOX browser (selenium grid) , I have started my hub using below command
java -jar ...
0
votes
2answers
46 views
Input field hiden by title in selenium
I'm working on an automated selenium test which has a header with a fixed position.
div#floatingDiv {
position: fixed;
background-color: #000000;
color:white;
...
0
votes
0answers
14 views
Is it possible to 'pretend' a site is a third party to test functionality if 3rd party cookies are blocked?
I do automation testing for a company that is trying to implement a single sign on via an iFrame; a third party site will include our page in an iFrame and we will do an authorization.
We had to ...
0
votes
1answer
54 views
Cannot call Selenium 2 System.setProperty(“webdriver.ie.driver” from C#
When trying to call System.setProperty("webdriver.ie.driver" from C#, LinqPad says setProperty cannot be found in System.
Actually System doesn't exist in any Selenium dll for c# so is it possible ...
0
votes
2answers
70 views
Button click selenium java
I have a button:
<input type="button" onclick="onOpenSessionClick()" value="Open device access">
But when I do the command:
driver.findElement(By.xpath("//input[@value='Open access ...
0
votes
1answer
30 views
Firefox opens blank page instead of application url – Codeception and selenium2
I'm trying to use codeception for acceptance tests. I decided to use it with Selenium2.
Starting environment:
acceptance.suite.yml:
class_name: WebGuy
modules:
enabled:
- Selenium2
...
0
votes
0answers
26 views
Is it possible to execute selenium java test scripts in IE 10 simulating IE 8 browser?
is it possible to execute the selenium scripts in IE10 simulating IE8. I mean i need to execute the selenium scripts in IE8 on IE10. Manually we have option to select IE8 in IE10. The same should be ...
0
votes
1answer
57 views
Selenium: Element not located via LINK_TEXT or PARTIAL_LINK_TEXT
I am attempting to find a robust way to locate the logout link in a dropdown user menu in a web app. This is the html for for the link:
<a href="logout.jsp">Logout</a>
I have attempted ...
0
votes
4answers
97 views
Using selenium 2, how to type in textbox?
I am using Selenium 2.
But after running following code, i could not able to type in textbox.
package Actor;
import org.openqa.*;
import org.openqa.selenium.By;
import ...
0
votes
2answers
51 views
How to handle share location functionality of browser in selenium web driver
Now i am working in a project which contain google map or geo location API. When we click on map it show browser Share location pop up but using selenium web driver i am not able to click on it. And ...
0
votes
2answers
82 views
How to check that the options in dropdown are displayed twice in Selenium Webdriver using Java
I am stuck in one logic, where I have to verify if the options in dropdown are displaying twice. I searched in google for the solution, but didnt find any.
I have this code to get all the options ...
0
votes
0answers
42 views
Selenium - codeception - chrome issue
I get the following errors in random when running test on chrome using codeception in selenium server:
WebDriver\Exception\UnknownError: The current platform is not supported: LINUX
...
1
vote
1answer
43 views
Selenium send keys to page without an input element
On a web page that has a keypress event listener running I want to be able to test sending keystrokes. But the page doesn't have an input element, and calling
...
1
vote
1answer
124 views
Selenium: Can't SendKeys() to an item that was below the visible window but was made visible by Click()
I have this problem with a text field that is visible at the time of the SendKeys. I'm using IEDriverServer.exe and C#.
Here's how I can reproduce the problem:
The text field in question is visible ...
-4
votes
0answers
17 views
How to configure selenium and php on windows [closed]
please provide some details on how i can configure php and selenium on windows.
I am using xampp for php.
1
vote
0answers
55 views
How to get the number of idle browsers for a node in selenium grid2
My current setup is 5 nodes with 10 Firefox browsers each, all connected to a hub.
I am running into a problem where I am exhausting the 10 firefox browsers for each node. So any new selenium runs ...
0
votes
0answers
46 views
Focusing between different drivers; Selenium
I have set up two different drivers, one for IE and one for Firefox.
How would I switch between focusing on the IE browser, and then the Firefox browser.
0
votes
1answer
25 views
How to switch to dynamically named iframe with Behat/Mink
Writing test for an iFrame generated when a button is clicked. The iFrame name and id are similar but generated dynamically. I have used "switchToiFrame" successfully before.
<div ...
0
votes
2answers
78 views
Alert doesn't close using Selenium WebDriver with Google Chrome.
I have the following Selenium script for opening alert on rediff.com:
public class TestC {
public static void main(String[] args) throws InterruptedException, Exception {
...
0
votes
2answers
62 views
WebDriver Actions.Perform() or Actions.Build().Perform()
I use Selenium2 WebDriver with C#
Actions.Build - returns a composite IAction which can be used to perform the actions. (IActions has a Perform method to execute the actions)
Actions.Perform - ...
0
votes
0answers
160 views
Selenium : webdriver did not recognized the webelement
Can any one figure out this issue
I generated the script for login page, after login i wanted to log out the app or perform some action on that current page but i failed to do so. I performed by ...
1
vote
2answers
125 views
Selenium Webdriver - How to deal with the html page Element/Count after delete
I have been trying to fix the problem i am facing, but i ran out of ideas so I need help here.
I have a very simple page:
╔════════════════════════════╦═══════════════════════════════════════╗
║ ...
0
votes
1answer
45 views
Selenium — How to handle situation when driver's current url is not updated quickly when navigating through a web application
I am using the PageObject model to develop a test framework, and I have one instance where it takes some time before a new page's url is available.
The scenario is this: The user is creating a new ...
1
vote
0answers
22 views
handling javascript alert 'forgot password' using selenium2
There is a "forgot Password" link on login page. on clicking on this link, javascript pop comes up "do you want to retrieve your password". Script is failing in 4/10 attempts if i use below code with ...
0
votes
1answer
41 views
Junit, Selenium, and NoClassDefFound
I feel like a complete newb here. I recently switch to using a Mac for development and i'm running into problems with some of my projects. I feel like its a class pathing issue within the macs ...
3
votes
1answer
93 views
Selenium webdriver verifying the text displayed in one row
I encountered a problem when trying to check if some text on a page is displayed in one row,
I mean the html does not contain br tag, but because of resolution / font size - the text is wrapped to a ...
0
votes
1answer
109 views
How to group test cases in testng?
I want to launch two browsers at a time with different parameters. I've written Test suite like below. but, it is launching 8 browsers at a time (As I've mentioned parallel='tests' it is launching ...




