0
votes
0answers
6 views

Obtain return value from a class executed using JUnit 4 SuiteClasses annotation

I'm using JUnit4 to drive test programs written in Java + Selenium Webdriver API. The test programs exercise EXT-JS web applications. A typical test driver class utilizes JUnit SuiteClasses to execute ...
-1
votes
1answer
16 views

JUnit 4 (WebDriver) on Ubuntu

I use Junit 4 and selenium WebDriver and Eclipse to run my test on ubuntu. When i run my test i have this error: > org.openqa.selenium.StaleElementReferenceException: Element not found > in the ...
1
vote
3answers
125 views

how to clear browser cache automatically in selenium webdriver?

How to clear browser cache before every test run? I tried with driver.manage().deleteAllCookies(); in setUp method after creating the driver instance, it is working for firefox, but for IE no use. Is ...
0
votes
0answers
184 views

How to handle SSL errors for chrome and internet explorer in selenium Webdriver testing?

How we can handle SSL certificate errors for chrome and internet explorer with selenium web driver. When I am working with Firefox it is working fine. Could you please provide me the solution to ...
0
votes
1answer
81 views

Selenium Scripts on the command line

Is there any way to run selenium webdriver tests scripts from the command line that have been written using Java and JUnit through Eclipse IDE? I've been trying to use Ant or Maven but I can't get it ...
0
votes
2answers
285 views

selenium Webdriver can't even execute the click() function

I'm facing an issue in using Selenium WebDriver. I'm a fully beginner in Selenium WebDriver so excuse me in advance. I've followed step by step somme explanations by creating a simple webdriver test ...
3
votes
2answers
572 views

running selenium webdriver test cases against multiple browsers

I am new to selenium testing. I want to run selenium test cases on multiple browsers against internet explorer, Firefox, opera and chrome. What approach i have to follow. Can you people please suggest ...
0
votes
2answers
91 views

Identifying Web elements that have no obvious identifier

I have written a Webdriver test that when ran, sometimes completes and sometimes doesn't. I can't see why, my guess is that the way I verify that the page has loaded is not robust. I verify that the ...
0
votes
2answers
212 views

How can i run my scenario with chrome using junit4 and selenium webdriver

In 2 days ago a was used this scenario and it works but know all time she didn't I don't know why, I use Selenium webdriver and junit4 so this my scenario and how i run chrome-driver with cmd and the ...
0
votes
1answer
140 views

How to run ant by using maven for selenium junit to generate test reports

Hi am trying to run testsuite which has implemented to by using JUNIT,ANT,MAVEN configuration. The below pom.xml I have created but ... testsuites are not running... if I run maven. I am runnning ...
0
votes
1answer
198 views

Auto download pdf files in Firefox

I'm doing tests with Selenium and JUnit. I'm trying to export a report (pdf and xls). With Selenium, I click the download link, and do a verifcar to assert that the file is in the correct folder. I ...
0
votes
0answers
259 views

FindElement by Name Fails but by Xpath Succeeds?

This doesn't make any sense to me. Here is the source code of the page element I'm trying to intereact with: <li> <input type="checkbox" name="includeStudents" value="true" checked /> ...
0
votes
3answers
86 views

How do I re-use (include) Junit test block in other tests

I am fairly new to the JAVA world - coming from a ColdFusion background - and have been learning Java because I'm learning Selenium WebDriver /JUnit. I have written several test classes that test ...
1
vote
1answer
1k views

Selenium web driver not able to close firefox instance if a Test cases is failed

i folks, i am using junit with selenium web driver 2.28. the problem is if i run a successful test case the web drives is able to close the firefox instance, but when a test case fails the selenium ...
1
vote
1answer
186 views

clearing / resetting the selenium webdriver between junit tests

I am using arquillian graphene with selenium webdriver and I have an irritating problem. The WebDriver seems to retain page state in between each test. I am currently testing a login page and the ...
1
vote
1answer
1k views

Can selenium take a screenshot on test failure?

When my test case fails, especially on our build server, I want to take a picture / screenshot of the screen to help me debug what happened later on. I know how to take a screenshot, but I was hoping ...
3
votes
4answers
622 views

Which is the correct way to check if an element is present or displayed on a page with Selenium WebDriver using Java?

I'm testing a web application using Selenium WebDriver and I was wondering which is the proper method to check if the elements are present or displayed. I usually assert that all elements are present ...
0
votes
1answer
172 views

Manual test cases mapping with Selenium test cases

I have manual test cases written in Excel file with an unique Id associated with each test case. I have test methods written for these test cases using Selenium Webdriver+TestNG. I need help on ...
2
votes
2answers
3k views

how to get selected option using selenium web driver for java

I am newbie in selenium and i am stuck here : I want to get the selected label or value of a drop down using selenium web driver and then print it on console . I am able to select any value from ...
0
votes
2answers
1k views

Get Css Value Width in % - Selenium WebDriver- JUnit [solved]

I have a web page which displays a dynamic layout (generated by extjs) which is supposed to occupy 100% of the width. I am using WebElement element = driver.findElement(By.id("ext-gen4")); ...