Selenium-Webdriver provides an API to control and communicate with web browsers.
0
votes
0answers
4 views
Selenium 2.32 with play framework
I want to use Selenium WebDriver 2.32 with Play Framework 2.0.4. After setting Selenium up in my current project, I ran into the same problem as: ...
0
votes
0answers
6 views
Selenium web driver find element by id on non-focus able element
How do i get the element id using selenium, when that element is non-focus able.
The focus is set on that element after page is loaded?
0
votes
0answers
8 views
download text of an article in google news
I'd like to do some natural language processing (nlp) mining based on news.
google has a smart way of extracting a useful text from news articles. that's the text it displays in google news. is there ...
0
votes
0answers
14 views
Passing firefox profile with certain addons to remote webdriver
I am able to pass on the firefox profile with the below code set when running webdriver on my windows machine, (Firefox profile has a REST client addon and few certificates added)
File ...
0
votes
1answer
26 views
Not able to switch to pop-up window and find any elements in pop-up in Webdriver using Java
I have a application on which clicking a button will pop-up a window for filling a new user form. This is not really like a pop-up window, because it has some input fields and "save " and "cancel" ...
0
votes
1answer
12 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'.
...
1
vote
0answers
12 views
Selenium Frameworks and Remote Testing, recommended framework?
I installed and played around with Selenium WebDriver on Visual Studio 2012 (C#) last week and was very impressed by how easy it was to automate browser testing. I now want to find out if I can expand ...
0
votes
0answers
29 views
How to come out of iframe and click on Logout button using Webdriver in Java
How to come out of iframe and click on Logout button using Webdriver in Java. In my application after performing some actions, my application navigates to iframe, where the webdriver hangs and no ...
0
votes
2answers
15 views
How selenium webdriver is maintaining separate session for each run?
For example in gmail login, when we consider a login test, when doing it manually for the first time we'll get the login page, from next time onwards we'll be directly getting into the inbox page.
If ...
0
votes
0answers
10 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.
...
0
votes
1answer
22 views
Selenium Webdriver radio button issue
I export Selenium IDE code for automated testing in Selenium Web driver. the code is executed properly but on radio button it stopped and generate error on Selenium Webdriver. Kindly guide me to ...
1
vote
1answer
21 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. ...
1
vote
0answers
22 views
How Do I implement PhantomJS + Wedriver on c#
I have written the following code and downloaded PhantomJS intot he specified folder on c:\ but am getting the error: "Unable to connect to remote server ...". Here is the code I wrote:
[TestMethod]
...
0
votes
0answers
13 views
Viewing Selenium Scripts in Jenkins Server
I am using Jenking to run my selenium scripts on a remote server. My question is "Is there any way to visually see my scripts running on the server? I mean on an actual browser when scripts are ...
0
votes
0answers
15 views
Blank page while running selenium scripts on Iphone
I have successfully build the iWebDriver on iphone 4s ( provisioning profiles are also installed ).
I am able to ping ip address of Phone ( which is displayed when WebDriver is started on phone at ...
0
votes
0answers
16 views
Wait.until in webdriver2
I am trying to create a movie. Once the movie is completed it gives the text movie completion in 0s. I have given Thread.sleep(240000); the problem is it waits for this period even though the movie is ...
1
vote
1answer
26 views
Empty error message in Selenium WebDriverException
I am attempting to use Selenium/BeautifulSoup to unit test a web page. I am getting an error though that I haven't been able to Google.
selenium.common.exceptions.WebDriverException: Message: ''
I ...
0
votes
1answer
19 views
Can all my classes be singletons?
I'm implementing a project where I'm testing my UI. So, each part of my UI is a separate class(Seleniums page object pattern). Now, since it's just a single web page I'm testing, according to me, ...
1
vote
0answers
13 views
Selenium 2.32, Java 1.6.0_07, IE Webdriver (32 and 64 Bit), IE9 - getWindowHandles returns only one browser
I am using Selenium 2.32, Java JDK 1.6.0_07, IE9 with Windows 7. Here is the problem
When i use IE WebDriver 32 Bit and click on a link which opens a new browser containing PDF, the PDF is opened in ...
0
votes
1answer
27 views
Get() and Set() between multiple @Test, Selenium WebDriver
I'm using Selenium WebDriver and Arquillian drone for these test.
how my tests are build :
@RunWith(Arquillian.class)
public class SimpleTest{
private String idPo;
public String getIdPo() {
...
0
votes
0answers
29 views
Can we use static functions in multithreading environment?
I'm new to Java and Selenium. In selenium test I want to check whether element is displayed before performing any action on it. I have written static function to check for element existence. I'll be ...
0
votes
2answers
50 views
Not able to Click a Link in Gmail using Selenium Webdriver
I am a learner.
I am trying to automate the logout functionality of Gmail using Selenium Webdriver but unable to do so ..
There are two Phases in logout, first click the Right Link at the top, if ...
0
votes
0answers
62 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
0answers
24 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 ...
0
votes
0answers
24 views
Selenium Webdriver and Basic Auth in IE
Is there any way to provide username and password to a basic auth dialog in IE using selenium Webdriver? Passing the credentials in the URL is not an option for us.
1
vote
1answer
31 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 -
...
2
votes
1answer
23 views
Setting selenium web driver with perl
I am creating a sample script using perl for selenium web driver. i have downloaded selenium-server-standalone-2.32.0.jar file and i am executing followimng code:
use Selenium::Remote::Driver;
use ...
-1
votes
1answer
31 views
How to test multiple version of google chrome using chromedriver?
selenium web-driver with java then how to use chrome driver for test their lower version of Google chrome
0
votes
1answer
18 views
Using xpath to locate an element and click on it
Using selenium with java, Can not click on button. How to use xpath to locate an element and click on it?
Here is part of source page which I am using:
<div id="top-navigation">
<ul ...
0
votes
0answers
13 views
Firefox profile impact on element Ids with x paths
i am working on web application with multiple firefox profiles and i am using selenium web driver with java.
Whenever i change my firefox profile, few elements with absolute xpaths not getting ...
-1
votes
4answers
44 views
How to select nested elements using standard CSS selectors (nth-of-type or nth-child) for Selenium?
How would I select the paragraph tag for B (or C), using the nth-child or nth-of-type? I am using the Selenium WebDriver.
<tr>
<td>
<p class="myClass">A</p>
...
0
votes
1answer
29 views
How to get the parent of an element in webdriver
<div class="field select-container invalid" data-tooltip="Error message." "name="birthDate">
<div class="stack-wrap gutter-col-wrap-1">
<div class="stack size1of3">
<div ...
2
votes
1answer
38 views
Run time error while typecasting WebDriver to CheckBox
In my application, I have a grid with a column for check boxes. The ID of the check boxes for each row differs only by the number after a fixed value. xxxx_0, xxxx_1, ....
In order to select a check ...
1
vote
2answers
23 views
Not able to find get the text in browser
<!DOCTYPE html>
<html lang="en">
<head>
<body class="layout-two-column unibet uMyAccount">
<div class="tooltip-container">
<div id="tooltip" class="tooltip ...
0
votes
2answers
81 views
How to execute Selenium Webdriver test as TestNG in eclipse
I'm using Selenium WebDriver with Java and TestNG as Test framework. I'm using Eclipse (eclipse-jee-indigo-SR2-win32) as IDE. I want to execute my test (java file) in eclipse as TestNG test.
For ...
-1
votes
1answer
51 views
How to read the text in image box of while creating new google account using webdriver in java
How to read the text in image box of while creating new google account using webdriver in java. I am creating a new gmail account using webdriver in java. i am not able to read the text present in ...
0
votes
1answer
54 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
0answers
29 views
WebdriverJS and drop down menus
I am running WebdriverJS on nodeJS to test the UI of a website. I want select and click on a submenu item in a drop down menubar. The submenu items are hidden by CSS. The menubar looks like this:
...
1
vote
0answers
45 views
remove arguments passed to chrome by selenium / chromedriver
I'm using selenium with python and chromium / chromedriver. I want to REMOVE switches passed to chrome (e.g. --full-memory-crash-report), but so far I could only find out how to add further switches.
...
0
votes
1answer
28 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
40 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 = ...
0
votes
1answer
35 views
org.openqa.selenium.remote.UnreachableBrowserException: Error communicating with the remote browser
Hi I am getting the above exception when i try for Selenium in windows, but not when I am trying in Linux (CentO.S.).
Sample code is shown below :
public class Simple {
WebDriver driver = new ...
-2
votes
0answers
26 views
How to pass classname as parameter to function which returns same classname
We are using Selenium PageObjects and PageFactory design pattern for automation. I want reuse StudentPersonalArchives(ParagraphTitle,STStudentDashboardPage) with different classname i'll pass each ...
0
votes
1answer
27 views
Jenkins can't connect to window server - not enough permissions
I've just installed at local a Jenkins server in order to execute some tests using Selenium Webdriver.
When I execute the tests, the initial steps are executing well (maven calls, access to repo,...) ...
-1
votes
2answers
69 views
Difference between “Eclipse indigo” and “Eclipse juno”
Currently I'm using Eclipse indigo for Selenium WebDriver automation tests with Java. There is also Eclipse juno available that I have never used.
What's the difference between Eclipse Indigo and ...
0
votes
0answers
13 views
Arquillian Garphene, page loaded but unable to launch javascript
I'm using Arquillian Graphene with Selenium 2.
The trouble is coming from the Graphene.guardNoRequest(); method.
The error thrown is :
java.lang.RuntimeException: ...
0
votes
1answer
34 views
How to select element from options populated
I need to write a script with Selenium-Webdriver. I am stuck in a situation where I need to enter text (e.g : "tt") in the textbox and a list gets populated (hidden values). We need to select an ...
0
votes
3answers
80 views
Selecting incorrect submenu item after hover action
I'm developing a test case in Python with Webdriver to click through menu items on http://www.yumandyummer.com, and this particular one is meant to go through a menu item and click on a sub-menu item.
...
0
votes
1answer
65 views
How to use @FindBy annotation in Selenium Web Driver
I want to know what wrong with my code, because when i try to test my code, i didn“t nothing...
public class SeleniumTest {
private WebDriver driver;
private String nome;
private String idade;
...
-2
votes
1answer
25 views
A link to a specflow + Selenium WebDriver Test Framework [closed]
Does anyone know a link to a working Selenium WebDriver + Specflow implementation of a test framework that uses the page object model?



