Tagged Questions
1
vote
2answers
240 views
FileUpload using selenium RC and java
I am using Selenium RC and Java and I need to automate the file upload feature.I tried a lot, Clicking on Browse button is not executing and rather getting stuck. I tried in FireFox but to no avail.
...
0
votes
2answers
322 views
Selenium WebDriver and Highchart testing
I know this question has been asked before on S.O. and other websites but I haven't found a definite answer -- most of them say its not easily done but I wanted to make sure that was the final ...
0
votes
2answers
704 views
Error upon starting Select server “Could not find agent library JVMHOOK”
I am attempting to run the Selenium server for the first time on my machine and am receiving an error when running the jar, or when attempting to find the java version. Here is the error:
...
1
vote
1answer
1k views
Unable to upload a file using selenium/web driver running with java
I have a complicated interface where uploading a file is three step ( The forum is not allowing me to add screenshots of my window so please try to visualise it)
step 1 click on browse tab and select ...
3
votes
3answers
556 views
Handling popup with many buttons using Selenium webdriver
I'm using Selenium web driver with Java language. When there are two buttons in a popup i.e. ok and cancel , it can be easily handled with web driver using the following code:
Alert alert = ...
0
votes
1answer
123 views
TestNg not executes @BeforeGroup if the method is in another class
My code structure is like this...
I have 4 classes having 10 tests and one @BeforeClass method to run before any of the test.In each of 4 classes ,all tests are of one single group.
And I have one ...
3
votes
4answers
2k views
How to handle self-signed SSL certificate error in IE8? (Selenium Webdriver + Java)
I am literally stuck to this problem for two days now.
Scenario
The website that needs to be tested has a self-signed certificate. So Internet Explorer (8 in Windows XP) shows
"The security ...
0
votes
1answer
401 views
SSO in Selemium web driver
I am trying to run selenium web driver(Firefox) test cases which will need a single sign on (web). Issue over here is i have to sign in manually with my OTP every time i tear down the test case. So i ...
3
votes
4answers
2k views
Downloading a file in Internet Explorer through Selenium
I have to automate a case in which I have to download an Excel file using Selenium IDE.I have done this in Firefox by using custom profile feature which automatically downloads file and saves it into ...
5
votes
1answer
2k views
“java.lang.NoClassDefFoundError” Error when running Selenium RC script
First of all I have recorded the script in Selenium IDE, then exported into the junit4 (RC), then copied the junit4 (RC) code into Eclipse IDE. When I run the project with junit test, I found the ...
1
vote
3answers
2k views
Handling multiple windows using selenium
Is it possible to work on multiple windows using selenium, when I searched on the net, there are only explanations and codes available for Selenium2 webdriver version. For the normal selenium I can't ...
2
votes
1answer
172 views
Har File Monitoring
I'm looking to automate some testing of calls we make to an external service. I've gotten Browsermob-proxy and selenium to play together nicely. I'd now like to monitor the requests as they occur, ...
0
votes
2answers
1k views
Selenium automation on Oracle applications
Is there a way we can perform Selenium automation (with Java) on Oracle applications? On the Oracle website they have given ways by which we can convert the Oracle applications into Oracle ADF faces ...
2
votes
1answer
861 views
How to get XPath of a list element generated by AJAX?
When I type a keyword ("Documents 1.xml")
driver.findElement(By.id("documentSelect_enter")).sendKeys("Documents 1.xml");
in this field:
<input id="documentSelect_enter" type="text" ...
3
votes
2answers
536 views
How to use TestNG to create multi-user tests scenarios?
What I need to do is to create UI test cases for our application and we have decided to use Selenium with TestNG (we're still open to other options if there are considerable advantages).
The tests we ...
2
votes
3answers
1k views
Unable to get Selenium Web Driver running with Java
I tried running the following code to start running Selenium WebDriver on Java, using the following code
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import ...
5
votes
2answers
384 views
Testing Java or Silverlight plugins embedded in a page using Selenium?
We have a product that defaults to a Java plugin to upload files, and then Silverlight after that if Java's not installed. There is a third fallback of a HTML 4 + JavaScript uploader, but I'd like to ...