Selenium is a portable software testing framework for web applications. It provides a record/playback tool for authoring tests without learning a test scripting language and a test domain specific language (DSL), to write tests in a number of popular programming languages.
0
votes
0answers
7 views
Ruby Selenium Webdriver unable to find and click elements
So I'm pretty new to Selenium, but I'm using the Ruby binding to test a page with the following code:
require "selenium-webdriver"
profile = Selenium::WebDriver::Firefox::Profile.new
...
0
votes
1answer
5 views
How to handle Random UnhandledAlertException in Selenium WebDriver
When running my testscripts, sometimes an UnhandledAlertException appears. The problem is that the Alert is totally random and I have no way of knowing when it's going to appear.
I need to know what ...
0
votes
0answers
13 views
find_elements_by_partial_link_text(link_text) Selenium Python
Got this issue:
I'm trying to find the last link on webpage:
try:
elems=self.br.find_elements_by_partial_link_text(category)
except NoSuchElementException:
print 'The ...
0
votes
1answer
30 views
Identify the text following a specific string with Selenium IE webdriver and JAVA
How can I identify whether the text following "FIND ME PLEASE" is "YES" or "NO"? (i.e. "FIND ME PLEASE 1" is followed by "YES". "FIND ME PLEASE 2" is followed by "NO"). Please refer to the HTML below:
...
-5
votes
0answers
28 views
To check the multiple testcase
I have create the test case as an java object, totally i having 5 test cases ie 5 java objects, every object have own method call execute() and i am passing , Webdriver as object.
First test case ...
0
votes
0answers
8 views
IEDriver Wait Loading page
I am using selenium IEDriverServer along with python.
Is it possible to make sure that IEDriverServer waits for a page to load , until some time and if the operation is not complete in time then it ...
1
vote
3answers
20 views
How to avoid Compound Class name error in Page Object?
When I try to use the class name that having space (class = "country name")in page object, I'm getting Compound class names not permitted (Selenium::WebDriver::Error::UnknownError) message.
How can I ...
0
votes
1answer
18 views
Starting with Phantomjs driver
Can anyone suggest me good documentations or steps to start or configure phantomJs driver in java so that i can run my test cases in remote server.
0
votes
0answers
9 views
Configuring PhantomjsDriver to run selenium test cases
Am new to this PhantomjsDriver in selenium webdriver.I need to run my selenium scripts in server without GUI. Please can anybody tell me how to achieve this. I need a head's up from the start of how ...
0
votes
0answers
17 views
Login Programmatically to DotNetNuke
I'm working on a windows console application base on C#. Now in this app my user will enter their username and password (assume gmail.com) i should let them access to other part of program if they ...
0
votes
0answers
10 views
Selenium IDE, how to set window focus
this should be a no-brainer but I just can't find a solution. Here's my problem: I try to automate Replicon Timesheets with Selenium IDE (under Ubuntu 10.04 as well as under WindowsXP) and my script ...
-1
votes
2answers
28 views
How to click on each marker of google map present on any website using selenium webdriver
How to do the Automation testing of any Google map. I have a map in my project/application, now I want to click on each markers.
0
votes
0answers
17 views
How to expand jQM collapsible using Selenium>
I've been looking for an answer for a while now, with no results. I am testing my jQuery Mobile application with Selenium. I have some problems with expanding collapsible. There is a problem with ...
0
votes
1answer
26 views
Select Drop-down List using Selenium 1 or 2
I need to navigate frames by clicking this drop-down list using selenium. I need to select the links on the menu and drop-down list. But selenium.click doesn't work.
on manual execution:
Mouse-Over ...
0
votes
0answers
8 views
PHPUnit + Selenium 2: Action on ajax load
During test I need to do following:
Click button which leads to ajax request and redirect after that
Check that user has been redirected to correct page
My Code:
...