0
votes
1answer
41 views

Junit, Selenium, and NoClassDefFound

I feel like a complete newb here. I recently switch to using a Mac for development and i'm running into problems with some of my projects. I feel like its a class pathing issue within the macs ...
1
vote
2answers
93 views

Basic Selenium Java generated from IDE not working

I have generated this script from Selenium IDE. It is working in IDE not in Eclipse : it only runs Firefox 20 and go to Google. But it doesn't search anything. Update : I replaced setSpeed by ...
0
votes
2answers
84 views

How to create a executable jar file for Testng and the runnnig point should be the Xml file

I am currently working on the selenium web driver and testng on Eclipse IDE. I usually run the test from the XML file that i have created which runs all the methods in the eclipse. Now i want to ...
0
votes
0answers
36 views

TestNG Groups wise Test Execution not Working from xml file

Please help me to execute an test with group wise using testng xml file i have an class with inherit a subclass public class testcase extends Loginclass { inside this class i have an multiple Test ...
0
votes
1answer
79 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 ...
3
votes
2answers
560 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
0answers
52 views

Eclipse : Setting up an easily exportable project

I am a new eclipse user. I want to set up a new java project in eclipse, and I would be using Selenium and TestNG with that for Web app testing. I want to set my project up such a way that anyone ...
-1
votes
2answers
493 views

Java/Selenium WebDriver: How to get user input and insert it in to a text field?

At the moment in Eclipse, I have the following code: driver.findElement(By.name("LoginText1")).clear(); System.out.println("Username: "); Scanner scan1 = new Scanner(System.in); String input1 = ...
0
votes
1answer
265 views

Eclipse error: 'Selection does not contain a main type/an applet'

I know very similar questions are already there, however I am a beginner to Java/Selenium WebDriver, and had originally created this in Selenium IDE, and then exported it as Java / JUnit4 / WebDriver ...
1
vote
0answers
307 views

How to configure Eclipse with Web driver PHP Binding and selenium stand alone server ,so that we can run test cases from Eclipse

I am getting lots of instruction material related to "how to configure eclipse for java and selenium" , but my requirement is i want to use eclipse for PHP and i want to connect it with selenium stand ...
0
votes
1answer
213 views

Issue in running generated build using Selenium Webdriver?

I have prepared a testing framework using selenium webdriver. It uses testng to generate test results. Now when I run the Build.xml file then it shows that build is successful, but when try to ...
0
votes
1answer
887 views

DataProvider in TestNG to pass data from excel

I started learning Selenium2 (WebDriver) with Eclipse and TestNG. I have a question about DataProvider. I have a login page having user, password and login button for example. I have written a test ...
2
votes
1answer
408 views

How to use different version of IE (IE6, 7, 8, 9 and 10) in Selenium WebDriver test using Java

I have downloaded "IEDriverServer_Win32_2.28.0.zip" from the following URL: http://code.google.com/p/selenium/downloads/detail?name=IEDriverServer_Win32_2.28.0.zip&can=2&q= After extracting ...
0
votes
1answer
209 views

Webdriver script working fine in FF17,But not working in IE7

Below Webdriver script woking fine for FF17,But getting error in IE-7.I have changed protected mode of IE.Still no output. public class driver{ DefaultSelenium selenium; private WebDriver driver; ...
0
votes
1answer
265 views

@Given statement is not running in cucumber-jvm

import package org.test.launch; import static junit.framework.Assert.*; import java.util.concurrent.TimeUnit; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import ...
1
vote
3answers
178 views

Selenium 2: something wrong with “driver.findElement(By…);

the selenium webDriver just does nothing when no Element is found by calling driver.findElement(By.className("item")); the driver does not even throw an ElementNotfoundException, which I´m sometimes ...
2
votes
1answer
2k views

Selenium Webdriver JUNIT Maven Eclipse Running Test Cases fails

I am trying to run test cases using JUNIT 4.10 with Selenium for a Web Application using Maven in Eclipse. I have created a simple java project with JUNIT Test cases added proper dependency. It ...
0
votes
1answer
462 views

How to upgrade/update selenium version of a pre-existing java project?

Ok, I ended up solving this problem before I could post it :) but figured since I started this might be of help to someone so I will post it. I have a selenium webdriver project eclipse IDE Ubuntu 11 ...
0
votes
0answers
206 views

java.lang.NoClassDefFoundError while run selenium project

I reinstall window, so reinstall Eclipse and copy there my project in Selenium webdriver. Try run it as junit test, I get error: java.lang.NoClassDefFoundError: org/openqa/selenium/WebDriver at ...
0
votes
0answers
128 views

Retrying request in selenium web driver

I use selenium web driver with Eclipse, on windows 7, ie9. I get such message: org.apache.http.impl.client.DefaultRequestDirector tryExecute INFO: I/O exception (java.net.SocketException) caught when ...
0
votes
0answers
369 views

Receiving java.lang.NullPointerException in eclipse with Aptana Studio 3 plugin

I am using Aptana Studio 3 plugin for SpringSource Tool Suite(Eclipse). For some weird reason, after installing the plugin I get the 'Building Workspace Error' every few mins. I am working on a ruby ...
0
votes
2answers
1k views

How to click a button in WebDriver with Java using jQuery

I have the following HTML: <button class="gbqfba" name="btnK" aria-label="Google Search" id="gbqfba"><span id="gbqfsa">Google Search</span></button> My following code for ...
1
vote
1answer
162 views

Firefox is opened but no URL is shown during using WebDriver

I am using WebDriver for Automated test. IDE: eclipse Framework: TestNG Language: Java WebDriver driver = = new FirefoxDriver(); After running the test, the following error was found: [TestNG] ...
1
vote
2answers
2k views

How to use JUnit with eclipse [closed]

I want to use JUnit as test framework with Selenium using eclipse as IDE. I am using Java for Selenium. Which jar file needed to add as library?
0
votes
2answers
745 views

How to use WebDriver

I am using Selenium RC, TestNG, Java with Eclipse. I want to use WebDriver. How can I use it? Which jar file will be added in eclipse as external jar file?