Tagged Questions
0
votes
0answers
38 views
Selenium firefox profile opening pdf read when pdfjs.disabled is true
I am trying to download a pdf file using Selenium web driver with Java. This was working fine the last time I run it about 2 weeks ago, but now every time it clicks on the pdf link it is opening the ...
0
votes
0answers
33 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:
...
0
votes
4answers
99 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 ...
2
votes
1answer
33 views
possible to parameterise junit tests and run with maven?
I have a bunch of selenium webdriver tests split in different classes. I run these tests across a number of sites but I don't want to run them all on every site.
In the past I used msBuild and c# and ...
0
votes
0answers
61 views
Handling two browser windows using Selenium
I am working on a web application which integrates with several other web applications. Just for reference sake, i'll call the main application X and another application that integrates with the the ...
0
votes
2answers
87 views
How to do a File upload using selenium grid using the MacOS as a hub and WinOS as a node?
My Code is as below, I'm executing the script using the Mac and running 2 nodes, 1 on windows and 1 on the mac itself. The upload on the Mac works perfect but the windows upload doesnt work.
...
0
votes
2answers
122 views
Selenium Web Driver(Firefox) fails sometimes to find an element by id which is present in the web page
I am using Selenium Web Driver for Fire Fox to automate a web page inPython.
The issue is that sometime for some elements i am getting NoSuchElementException even though the element is present with ...
2
votes
2answers
110 views
getWindowHandle function doesn't exist for driver in Selenium
I need to implement switch from one window to another in IE. However, element driver doesn't support getWindowHandle function.
I assume it might be just configuration problem or settings, though I ...
0
votes
0answers
60 views
How to use webdriver using the dart library?
I am having trouble getting started with the webdriver dart library.
I was hoping for some simple examples.
I do have the seleniumn server standalone running in the background.
I am very new to dart ...
0
votes
1answer
146 views
How to get the CSS class of a span using Selenium Web Driver in Java
I have a span element like this
<span id="yui-gen56" class="ir i-doc" style="background-color: transparent;"></span>
Now I want to retrieve the class attribute value so that it should ...
0
votes
0answers
137 views
Selenium webdriver with TeamCity CIS in vs2010
Our QA team have migrated Selenium scripts in VS2010. I would like to know how to proceed with the selenium webdriver and teamcity continuation build.
My purpose is when team city release the build ...
1
vote
1answer
675 views
RemoteWebDriver Unable to bind to locking port 7054 within 45000 ms
I use the .NET binding for WebDriver to run tests concurrently through Grid2. Running tests individually is no issue, however when running multiple tests through the Grid, the following error will ...
2
votes
2answers
569 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 ...
0
votes
1answer
89 views
Implementing the Page Object Model
I am building a test automation project using Perl and Selenium. I am using the Page Object Model. I am somewhat unsure about where the Selenium driver would fit into the implementation of the page ...
0
votes
0answers
34 views
How to move to next command in webdriver without waiting for third party dependancies?
I observed that even after document.readyState returns complete, webdriver keeps waiting for third party dependancies (badgeville in my case) and does not move to next webdriver instruction. How do I ...
0
votes
1answer
392 views
Cannot find element in the popup window with Selenium Webdriver
I'm using InternetExplorerDriver with Selenium Webdriver in Java.
I load a URL which simultaneously opens another window which has the login box.
Using the method mentioned here
I could select the ...
0
votes
0answers
213 views
Testing web applications on IPad using Selenium & Java
I am working in testing web applications on IPad using Selenium & Java.
As far as I understand the iWebDriver can be used , but for this purpose I would require XCode and a Mac system to create ...
0
votes
2answers
382 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
1answer
201 views
Automating “Browse” button event in Selenium
I need to automate the "Browse" button click from Selenium.
For this, I have tried
driver.findElement(By.xpath("//*[@id=\"dnn_ctr383_View_filename\"]")).click();
and
...
-3
votes
3answers
267 views
Failed to test special characters using contains() in webdriver
I want to verify whether the particular text is present on the page or not.
I used the following code:
driver.getPageSource().contains("String to check");
The above code is working only for the ...
1
vote
1answer
336 views
Can i use MyEclipse IDE instead of Eclipse IDE (Eclipse for Testers) for using testing with Selenium
I am new with Selenium and having java development experience.
I have installed Selenium IDE as plugin with Firefox.
I have MyEclipse IDE. Should i download another Eclipse IDE for using testing ...
3
votes
1answer
2k views
Flash Automation using Selenium web driver
We are trying to automate a web application which has Flex based functionality using Selenium web driver. We are struck here as we learnt that we need to rely on third party extensions to get this ...
0
votes
2answers
105 views
Generic Click Method in WebDriver
I am migrating test scripts from Selenium RC to WebDriver. The biggest issue so far is that our extension classes are having to be rewritten to use the WebDriver API, which I don't mind, but the By ...
0
votes
1answer
75 views
Get result from junit test
I'm using selenium webdriver 2.0 java api to run some tests in my company. I'm doing it at free will and have no heavy knowledge about automation so part my ignorance.
I would like to know how can I ...
1
vote
1answer
626 views
Selenium webdriver script failing to locate button even with ID
I'm hoping this is easier than it seems and I've just gone snow blind trying to fix it! Your help would be massively appreciated on this.
I am using the PageObject Model (I think!) to create my ...
0
votes
1answer
234 views
Selnium WebDriver Automatically Throws TimeoutException - C#
We are currently migrating our automation scripts from Selenium RC to WebDriver. I have ran into a few issues with WebDriver, mainly dealing with TimeoutExceptions being thrown the instant something ...
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
192 views
Is there a better to way to write this code in Java(for web table handling)?
I have two methods which does the same. Unfortunately, Option Two works some times (5 out of 10 times)... Option One works rarely (2 out of 10 times)... Is there a better to way to write this code...
...
0
votes
0answers
78 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 ...
1
vote
1answer
413 views
Selenium webdriver autocomplete
I have input like
<input id="idForm:j_idt21Input" class="rf-sel-inp" type="text" value="Начните ввод" name="idForm:j_idt21Input" autocomplete="off">
and divs with variants
<div ...
2
votes
1answer
95 views
Is There a way to keep focus on a different element when clicking submit button in Selenium webdriver
I am using Selenium WebDriver and have a list where I need one element to remain selected when I submit.
But when I find the element and click it the focus shifts to the button so item is not ...
4
votes
2answers
3k views
Unable to locate iframe in Selenium Webdriver(java)
I want to select a element of iframe which is located with in a popup window. I am able go inside popup window but not able to locate iframe. Below is html code of popup window.
<html>
...
0
votes
2answers
406 views
Selenium Webdriver - Store multiple linktext's
I'm automating a web application using Selenium Webdriver(Java), but having difficulty in storing multiple linktext's. Below is my html code, I have to fetch all email id's to verify before inserting ...
1
vote
1answer
504 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 ...
