Tagged Questions
1
vote
0answers
8 views
Selenium IDE click at x,y coorinates on the visible page
How do I get selenium to click at x,y on the visible webpage - I don't care if there is an element there or not - just click there anyway
regards
derick
0
votes
2answers
49 views
Random data for test automation in python
I am using unittest and selenium to automate my browser testing.
How would I go about making a test which I can run multiple times, where a user creates a ticket. The ticket has to has a title name, ...
0
votes
1answer
44 views
Mouse Hover in selenium Ruby using capybara [duplicate]
Searching from many forums i got the code to hover the mouse over an element
.I want to hover the mouse over a thumbnail image.
i put html element ".thumbnail" as class inside find_element method .I ...
-1
votes
0answers
20 views
Hover the mouse over thumbnail image in capybara [duplicate]
I have a thumbnail image on a page. When hovering mouse over the thumbnail I have to display a hover modal. But I can't figure out how to hover mouse over the thumbnail image. I can test it using ...
1
vote
1answer
30 views
Is there a way to have selenium store the cookie so I can call it, in java code?
So, basically I am using selenium to automate testing against a web application.
I am using Java imported in from the Selenium IDE of the basic steps and then I am adding some additional Java code.
...
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 ...
2
votes
0answers
94 views
Selenium Webdriver + python - Not able to hide the tooltip after mouse over action
I am testing tooltips on my web page using Selenium WebDriver with Firefox.
I'm trying to hover over the element that has the tooltip attached. To test that the tooltip is displayed and then to hover ...
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 ...
0
votes
2answers
137 views
Using CSS with Selenium 2 / Webdriver
So I'm new to Selenium and I hardly have any background in programming and such. So here is my dilemma: normally I'd be using a firefox add-on to find Xpath locators to create automation test scripts. ...
0
votes
1answer
46 views
Firefox produces unsearchable pdfs
Currently I'm writing software for web automation using selenium and autoit.
I've found a strange issue, that for some pages when printing to pdf with firefox I get unsearchable pdfs. I've tried ff ...
0
votes
0answers
59 views
Selenium webdriver: Clicking a legend to fire a javascript function?
I have a page I am trying to automate. When the page loads there is a table with headings, when you click a heading it calls some javascript function and expands the page to reveal some links. This is ...
0
votes
3answers
78 views
Selenium WebDriver — How can I know a certain line has executed successfully?
I am testing a web application and my sample test case has three steps:
Enter Username
Enter Password
Click 'Login'
driver.findElement(By.id("username")).sendKeys(username);
...
0
votes
1answer
124 views
Selenium clicking a link where the href is javascript:void[0];
I'm trying to see if when a link is clicked a report is generated on the page using Selenium webdriver with Java.
What happens is there are a bunch of links on a page, most of them when clicked go to ...
0
votes
1answer
49 views
How to get the Browser info in C# WebDriver?
I see a ICapabilities interface to get the Browser info;Did couple of googling with no luck for any code example; Can anybody please share anything how I can get the browser info for a particular ...
0
votes
1answer
73 views
What is best Selenium tool to Automate tests?
I have just started with Selenium to automate couple of tests and have found that there are couple of tools that I can choose from, like the Selenium IDE, Selenium WebDriver, Selenium RC, WebDriver ...
0
votes
2answers
55 views
Automate right click save as in IE, Chrome and Firefox?
Does anybody know a way I can automate the right click and save as actions for IE, Chrome and Firefox?
I am doing some selenium work using Maven and need to be able to download some files but I am ...
0
votes
2answers
46 views
while automation unable to click on link because of horizontal scrolling is not working
I am automating webpage using JavaScript but while automating I can't click on links which are hidden behind scroll. I wrote code for horizontal scroll, but it's not working. So can you help with how ...
1
vote
1answer
58 views
Play & pause video using Selenium [closed]
My aim is to automate play/pause YouTube video present on the web page using selenium.
How to play/pause YouTube video with Java code for Selenium?
1
vote
1answer
52 views
systemProperties in an external file?
I have just started with Maven today so am still getting up to speed. I have set up a selenium test in Eclipse, in my test I have baseUrl = System.getProperty("webdriver.base.url");
I then run the ...
0
votes
0answers
139 views
How to write selenium tests on ios simulator
I am trying to use Selenium WebDriver for writing automated tests to run on the iOS Simulator
I am using xcode 4.6.1, installed iwebdriver.xcodeproj, seleniumWebdriver is installed on the simulator
...
0
votes
2answers
94 views
Selenium-How to find the exact text using selenium-eclipse-mozilla
Am new to Selenium RC and currently am using Java to run the scripts.Below is the scenario
Scenario
I am trying to login to my appliation, once i login have to find the login/user name. Once i find ...
0
votes
1answer
59 views
Selenium IDE: Click command with no ID
How do I perform click action on a button with no "id".
<a class="ui-button altbuttonfix" ...
0
votes
2answers
119 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
108 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
2answers
186 views
Selenium, how to extract text between two div tags
I am new to using Selenium to perform web automation on websites and I am trouble with extracting text between two div tags.
Here is a snip-bit of the HTML code that I am trying to extract the text ...
1
vote
1answer
143 views
Automate clicking on JavaScript link with Selenium
I am trying to automate a click to page 2 of a database that runs asynchronously on a webpage. When using the Xpath:
//id('standardView')/x:div[3]/x:div[3]/x:a[1]
I get the following error:
...
0
votes
4answers
51 views
Navigating website with application
I'm looking to make a C# application to automate some processes for me. One of which would be navigating a few websites that I frequent, such as grooveshark. I'd like my application to be able to ...
0
votes
0answers
62 views
checking a checkbox having random ids in cucumber-rails
i have a scenario where i want to check/verify that the checkbox is disabled/checked.i have all the required steps which uses id of the element to verify/check the checkbox.Now i have a checkbox whose ...
-1
votes
1answer
73 views
Test AutoCAD 3D images using selenium or some java library
My application involves 3D and 2D diagrams. I want to test 3D/2D diagrams(comparison,crop/color/isolation of different parts in 3d model) using selenium web driver. If it's not suitable, Can somebody ...
2
votes
3answers
359 views
Interacting with JavaScript drop down menu using WebDriver and Ruby?
I'm writing automation for a web page using Ruby and Selenium WebDriver but have encountered a blocking issue with some of the drop downs on the site which are made using JavaScript instead of ...
2
votes
2answers
553 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
0answers
69 views
Automate PDF extraction from web [closed]
I want to download PDFs from various web sites. Each of these web sites will have username/password logins and each of the logins will have many PDFs to download. My preferred programming language is ...
0
votes
1answer
86 views
Selenium verify randomly generated email
I am building test cases for a particular website, where I need Selenium to fill out a registration form, Ive got it all set up, however my only issue is getting it to "Verify" the random email it ...
0
votes
2answers
154 views
selenium pass value from a file
i am trying to pass a value to test case from a file.
here i have worked on a small example, created a js file with content,
var sch = 'java'; // sch.js and added to ide options - selenium ide ...
1
vote
0answers
121 views
Building selenium from source in Visual Studio 2010 (errors)
I am trying to build the source of Selenium using Visual Studio 2010.
Here are the steps that I did:
1 download the entire source from http://selenium.googlecode.com/svn/trunk/
2 Executed go bat ...
0
votes
0answers
31 views
Combining several plugins for testing in Eclipse
I'm looking at automating testing at the moment. There are a few areas that would benefit from automation:
Webservices,
client applications (mobile applications for iPhone, Android and Blackberry),
...
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 ...
-3
votes
1answer
195 views
Webdriver Testing automation
I am using webdriver for automating the tests for a webapp along with Junit.
I keep getting "NoHttpResponseException: Target server failed to respond" in a very irregular way.
What could be the cause ...
0
votes
0answers
146 views
Any tool to implement mobile test automation on iOS Safari browser? [closed]
There is any tool to create automated test in mobile sites, testing it on Safari mobile iPhone browser?
Thank!
1
vote
0answers
459 views
Can a Selenium Grid 2 Node Json config file point to multiple hub / Servers?
I was wondering if there is a way to register a single Selenium Grid 2 Node to multiple hubs, using a json configuration file for this.
I was thinking something like this:
{
"capabilities":
[
...
0
votes
0answers
163 views
java.lang.NoSuchMethodError: in selenium web Driver (Selenium 2)
In my project i use selenium web driver(Selenium2) to automate UI tests, version is 2.25.0, and the Firefox Browser version is 4,
when I try to build the project in maven it gives the below error,
...
-1
votes
2answers
83 views
Calling a method from a JUint test which creates a failure
From my JUnit test I want to call this method, it lets me call it however even though it is supposed to cause an error it passes the test instead of failing.
public void handleErrors(String string, ...
0
votes
1answer
181 views
IE is continously maximizing and minimizing when test suite executes
I'm using
Selenium standalone server - 2.25.0
IE - 8.0.7601.17514 (64 - bit edition)
IEDriverServer.exe - 2.28.0 (64-bit)
OS - Windows 7 professional
Java - SDK7
I'm using below code to launch IE ...
1
vote
1answer
121 views
Design pattern for data flow
We have some kind of test-workflow consisting of steps.
Now I want to build classes to represent that.
e.g.
Step 1: Get edit control for username
Step 2: Write username into the control
Step 3: Get ...
0
votes
2answers
380 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
198 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
...
0
votes
4answers
270 views
What are some alternatives to Selenium?
What are some web UI automation frameworks available out there?
I know about this question, but it was asked 3 years ago and things have changed a lot since then. I just wanted to find out if the ...
1
vote
1answer
896 views
StaleElementReferenceException: Element is no longer attached to the DOM: Selenium
I am completely new to automation testing. After referring some tutorials, I have created an automated test case. The test case I try to automate is to check whether the sorting worked correctly after ...
5
votes
2answers
2k views
Casperjs/PhantomJs vs Selenium
Currently we were using Selenium to automate our UI testing.Recently we have seen majority of our users using chrome.So we wanted to know - pros and cons of using Phantomjs versus selenium.is there ...


