Tagged Questions
0
votes
0answers
4 views
webdriver, catching @Test(timeout = 10000)
My webdriver tests are annotated with @Test(timeout = 10000) to force the test to end after 10000ms. This prevents my tests from hanging all night if there is an error.
However, My tests are also ...
0
votes
2answers
41 views
Get() and Set() between multiple @Test, Selenium WebDriver
I'm using Selenium WebDriver and Arquillian drone for these test.
how my tests are build :
@RunWith(Arquillian.class)
public class SimpleTest{
private String idPo;
public String getIdPo() {
...
-1
votes
1answer
33 views
Web Application Tests Visualization [closed]
I'm testing a web application with several functionalities. I didn't develop this application, I'm a mere tester. I'm new to testing and when I started working on it I was given a series a Selenium ...
0
votes
0answers
30 views
Data Creation from spreadsheet for Parameterized Junit Test
I have written a test class with a few of test cases inside it using Selenium Junit. I need to run these tests based on the configuration values stored in a spread sheet. Could some one please help me ...
0
votes
1answer
28 views
How to run ant inside java command
I have written a Selenium Junit test case (say a1.java). There is another java program say a2.java which reads a spreadsheet for different config related values and it sets these values into member ...
0
votes
2answers
32 views
Selenium test runs won't save cookies?
So I'm experimenting with Selenium automation, and I'm trying to write a testcase that logs in, goes to a specific page, inputs data, then presses submit. The issue is that when it runs, it types out ...
0
votes
0answers
43 views
Focusing between different drivers; Selenium
I have set up two different drivers, one for IE and one for Firefox.
How would I switch between focusing on the IE browser, and then the Firefox browser.
1
vote
1answer
35 views
java.lang.IllegalAccessError in Selenium
I got this code from BitMotif - Selenium Remote Control For Java — A Tutorial
package Practice;
import com.thoughtworks.selenium.Selenium;
import com.thoughtworks.selenium.DefaultSelenium;
import ...
1
vote
0answers
19 views
Call all test script with test function(based on tester choice) into main Test script file in JUnit
System Information:
OS: Win XP (32bit)
Selenium Webdriver: 3.32
Firefox: 20.0
Junit: 4.0
Eclipse: 3.8
I have two test script file over JUnit(4.0) under my test project. These files are working fine. ...
0
votes
0answers
51 views
Junit Selenium Test Suite
I'm trying to launch "selenium" only once for my test suite but it's not working.
Here is what I've done :
My file AllTest.java is generating the test suite and I want to launch selenium from here:
...
0
votes
1answer
77 views
Issue on Running JUnit Selenium tests in Jenkins
I'm beginner by using Selenium and Jenkins. So here is my problem.
I got on a Linux VM, jenkins which is installed and got plugins : JUnit attachment and filesystem_SCM.
I got in a folder of that VM ...
0
votes
0answers
41 views
How to migrate Selenium tests from JBehave to Cucumber?
We have got a suite of old Selenium BDD tests running on jBehave. The new generation of the tests has been written on Cucumber in Ruby. What is the easiest approach to migrate these tests to ...
0
votes
1answer
183 views
How can i use my Junit test (selenium webdriver) with Jmeter
I created my functional tests with JUnit 4 and Selenium Webdriver and it works.
Now I want to use this test with JMeter for performance tests.
I copied selenium-server-standalone-2.0b2.jar at ...
4
votes
2answers
280 views
How to use Selenium 2 + Jenkins
I would like to be able to use Selenium 2 with Jenkins.
I am new to both so please excuse any of my ignorance.
I noticed the following plugin for jenkins HERE, and installed it.
I have a base ...
0
votes
0answers
59 views
Jmeter + junit + selenium + resources/properties binding
I've a problem since a few days with Jmeter and Junit tests. I will try to explain it as most as I can't:
I work on a java project (gxt/maven/spring...) and I implement the automatical tests part. ...
0
votes
3answers
43 views
selenium run only few methods
I know by creating test suite I can run all my class files, using code like
suite.addTestSuite( TestCase3.class);
suite.addTestSuite( TestCase2.class);
suite.addTestSuite( TestCase1.class);
But ...
0
votes
1answer
119 views
Random (?) ElementNotVisibleException
I have looked at some of the other questions covering this topic, but I don't see this particular issue anywhere. I have a test that clicks on a Web Element. I have tried referencing it by ID and by ...
0
votes
2answers
200 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 ...
1
vote
2answers
86 views
How to get Jenkins to show skipped tests
I found this Jenkins graph:
https://wiki.jenkins-ci.org/display/JENKINS/TAP+Plugin#TAPPlugin-JenkinsJUnitcompatiblereportsandgraphs
It clearly shows red, blue, and yellow sections, yellow being ...
0
votes
2answers
51 views
How can I test the alignment of my form?
I use Selenium and JUnit4, and I have a form which I want to test for correct alignment.
-2
votes
1answer
230 views
SeleniumException: Timed out after 30000ms error
I am getting same error, it just open the mention URL and closes the browser with following error
com.thoughtworks.selenium.SeleniumException: Timed out after 30000ms
Following is the code i am ...
0
votes
2answers
123 views
WebDriver finding elements in grid layout
To test my application I use Selenium, JBehave and JUnit. To find elements in page I use WebDriver.
I have grid layout and in each part of grid I have button I want to click button like:
...
0
votes
2answers
327 views
WebDriver - Unable to locate element, extracting web page input fields
I'm trying to extract all input fields from a web page with their Title and element details and to put them in a HashMap for later use in a JUnit test like
This is the example code from the test ...
0
votes
2answers
85 views
How to getText on one page and then use it for assertEquals on another one?
I have a table with some data like:
|_name_|___email_____|
|website|website@test.com|
After clicking on the name Website, a settings page of the Website is displayed. On the top, there is a header ...
0
votes
0answers
413 views
Trouble Running Selenium 2 Junit Tests on Chrome with RemoteWebDriver on Jenkins Grid
I'm currently running the Selenium Grid using the Jenkins Plugin in an effort to move testing from Selenium v1 to v2. More specific to this question; I'm trying to use RemoteWebDriver to kick-off ...
0
votes
3answers
236 views
How to test downloading files in Selenium2 using Java and then check the downloaded file' format?
I have an "Export" button so after click on it the .csv file with some data is downloaded.
Is there a way to test in Selenium2 the following points:
The file is downloaded after click on the ...
0
votes
1answer
77 views
Element appears to be stale error on webelement.clear()
I'm locating an element with HtmlUnitDriver. Element is text field (input).
WebElement username = driver.findElement(By.id("username"));
username.clear();
username.sendKeys("myValue");
...
0
votes
0answers
53 views
how to open links whith accents (selenium java junit)
I use selenium RC and grid.
When i use this code :
selenium.click("link=Actualités");
I have an error because of the charset into the grid.
com.thoughtworks.selenium.SeleniumException: ERROR: ...
0
votes
1answer
304 views
Use Selenium with same browser session
import java.util.regex.Pattern;
import java.util.concurrent.TimeUnit;
import org.junit.*;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;
import org.openqa.selenium.*;
...
1
vote
0answers
377 views
Compile error during running Selenium tests remotely from jenkins
I am trying to run selenium tests from a remote machine through Jenkins (Jenkins is running as root). I am able to run the tests perfectly by SSH through terminal but when I try to run the tests from ...
-1
votes
2answers
81 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, ...
1
vote
0answers
375 views
Webdriver Backed Selenium, missing confirmation dialog
I have a problem related to some strange behavior when trying to test confirmation popups using Webdriver Backed Selenium in JUnit.
I have a following chunk of code in my test case:
...
0
votes
1answer
87 views
Related to speeding up Selenium JUnit tests
I have written junit test cases using web driver backed selenium.
I had come across a situation wherein sometimes selenium.isElementPresent() or selenium.isTextPresent() would throw a ...
0
votes
3answers
269 views
How to run Junit / TestNG tests based on an external input?
I have an Excel file where I am storing the Test case Name / Id.
Now, If my Test case name(in excel) is starting with 'test' I want to execute one of my Junit / TestNG test . If my test case name(in ...
2
votes
5answers
137 views
do assertations exist in both JAVA and JUnit?
I am looking at one of the question that is posted long back by x person.
Ex: assertEquals(driver.getPageSource().contains("sometext"), true);
(or) assertEquals(boolean , boolean);
If the above ...
0
votes
3answers
3k views
How to read excel data in java, selenium testing?
I have a selenium webdriver backed code in java for testing an web application. My code is given below:
package testcases;
import com.thoughtworks.selenium.Selenium;
import ...
-1
votes
1answer
141 views
Selenium JUnit test stuck at click()
I made a quick test in Selenium IDE, and I exported it as Webdriver backed JUnit test. It works fine if every element exists on the page. I changed some of the locators to see what happens if Selenium ...
0
votes
0answers
56 views
CI reporter gem occasionally fails to define 'testcases'
There is no sure way to reproduce this, but here is my story/question
I have ruby selenium tests running via jenkins.
Occassionally I get this error, and the tests dont load.
0.00 tests/s, 0.00 ...
2
votes
3answers
431 views
JUnit. Parallel running. But all the test methods processing singleton instance. How to solve?
So, I have a couple of JUnit classes, each one contains a list of test methods.
Each method is independent of each other, there is no direct connection.
But we have indirect connection: all methods ...
1
vote
1answer
107 views
Selenium Help needed [closed]
I am the beginner on selenium testing. I need step by step tutorials of selenium testing(using JUnit or PHP) from beginning to advance. Can anyone help me for this?? (if possible, link of video ...
-1
votes
4answers
133 views
Selenium + JUnit. How DRY?
My situation below:
I have couple test cases:
user log on Site;
user open Home Page;
User see some information, is not so important, maybe some table or div, etc..
User go to HelpDesk Page.
User go ...
0
votes
3answers
795 views
How to get entered text from a textbox in selenium
I enter a value in TextBox or a Combobox, and would like to retrieve the value I have just entered. I see that Selenium Weblement method 'getText()' doesnt retrieve the value, it seems the entered ...
0
votes
1answer
356 views
Determine popup/new window type so I can interact with it in selenium webdriver
This may be a noob question, but I don't know how to determine what type of popup I am interacting with so I can have enough information to automate it using selenium webdriver.
I assumed it was just ...
0
votes
0answers
61 views
Running tests from Spring application
I have JUnit Selenium test class like
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("/testContext.xml")
public class SearchTest extends VisibleTestBase {
@Test
public void ...
1
vote
0answers
71 views
JUnit test failing because some properties not read
I have a selenium tests written in Junit that I'm running via a Jenkins job. The tests execute fine from Eclipse and from my local command line (Win7). The tests only fail when I execute them via ...
2
votes
2answers
588 views
Selenium JUnit 4 test - usage of findElement()
I have a problem that I can't get through. I just started to use Selenium, and I made a simple JUnit test with it. (Open CMS admin panel, log in and log out.) If I use the correct username and ...
3
votes
1answer
451 views
Selenium WebDriver cannot locate Element that Selenium IDE can locate
This is a issue I did not expect to run into.
I am writing a selenium Webdriver test using JUnit 4 in eclipse on Ubuntu 11. I had been using Selenium IDE combined with firebug and firepath to make ...
0
votes
0answers
73 views
How to add cookie which specific domain using selenium.creatCookie
I cannot use function selenium.createCookie to setcookie which have domain agrument specific. (Using Jmeter still OK )
I used as following:
selenium.createCookie("name=value", ...
1
vote
1answer
1k views
Publish HTML Test Report through email in Jenkins?
I am using Jenkins and Ant. I am running Selenium and JUnit tests in Jenkins. I am able to generate HTML reports and emails to developers. I would like to publish the Jenkins unit test graph and HTML ...
7
votes
3answers
2k views
Failed to connect to binary FirefoxBinary with Selenium in Maven
I am running some Selenium-Tests. When I start them directly from Eclipse everything works fine. But when I Start them through Maven there the following Exception occurs:
...




