1
vote
1answer
19 views
What XPath to select only non-taged text inside div. Selenium. Java
I want to select only the text "only this text" from the snipet below using XPath (in Java) but that text is random and I don't know what is written there.
<div class="A">
<input ...
1
vote
0answers
19 views
Selenium in a web service - jar not loaded
I tried to implement a web service in a bottom-up manner. First I created a dynamic web project and implemented a function that uses selenium. I then added the selenium-server-standalone-3.23.0.jar to ...
0
votes
1answer
9 views
Why I get GridException when trying to open a website using Selenium
I am new to selenium.
This is what I did:
I started a standalone selenium server on cmd prompt.
I ran below code, for both webDriverWay() and seleniumWay() I get error like below. In both cases I ...
0
votes
0answers
21 views
selenium in a web service throws java.lang.NoClassDefFoundError exception
I created a dynamic web project, implemented a function that uses selenium in it, added the selenium-server-standalone-2.32.0.jar in the project's buidlpath, then used the wizard to generate the web ...
1
vote
1answer
25 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
25 views
What are these extra methods in the Selenium Webdriver code?
So I record some steps of my website using Selenium IDE and then I Export it using Java /JUnit 4 / WebDriver . And then I open it in my Eclipse and I find 4 extra methods in my code. I don't really ...
-2
votes
1answer
33 views
Verify the change of background color of the Textfield
How can I verify if the TextField changed its background color after an action is commited or the form is to be submitted?
Thank You!
0
votes
0answers
34 views
using selenium in a web service throws java.lang.NoClassDefFoundError exception
I tried to implemented a web service from a dynamic web project. I added the selenium-server-standalone-2.32.0.jar file to the buildpath, then I also added it to the WEB-INF/lib folder. Then I used ...
0
votes
0answers
13 views
Arquillian and Selenium in mixed Container/Client mode
i am reading the tutorial on Arquillian's website
http://arquillian.org/guides/functional_testing_using_drone/
Under the paragraph of "Enabling Client Mode" they state that it is possible to mix ...
0
votes
2answers
60 views
How can I click on a button specific to its column name for different rows on a webtable
How can do I click on Add button using the specific name from Column1 for different rows on a webtable using selenium webdriver.
The webtable is as
Row 1|column1| Column2| Add Button
Row ...
0
votes
2answers
40 views
How to write sorting of strings with some additional rules
I have a problem with the testing sort strings with an addition conditions.
Table contains a column which contains some string.
The strings can be sorted in alphabetical order.
But there are ...
0
votes
1answer
45 views
Not able to switch to pop-up window and find any elements in pop-up in Webdriver using Java
I have a application on which clicking a button will pop-up a window for filling a new user form. This is not really like a pop-up window, because it has some input fields and "save " and "cancel" ...
0
votes
1answer
36 views
Use one class more than once int TestNG
There is and example of structure in my test running using TestNG and Selenium:
<test>
<classes>
<class name="com.pou.MyTest">
<methods>
...
1
vote
1answer
37 views
using selenium grid remote webdriver java client to take screenshots with messy characters returned
I established a selenium grid 2 on one linux platform, with both hub and node on the same machine. Then I used selenium remote webdriver(java client) to take a screenshot of www.google.com.hk page. ...
0
votes
0answers
57 views
selenium webdriver isDisplayed() returns true when element is not visible
I have elements in a drop down list in a collapsing side bar. There are two top-level items in the side bar. When you click one, the contents beneath it are revealed.
I am testing a bookmark, so I ...
0
votes
1answer
50 views
How to handle windows file upload window when using selenium
I am trying to write selenium tests for a website using java. However, I have come across a problem when testing file uploading..
When I click the file upload button, it automatically opens the ...
0
votes
0answers
10 views
Taskkill 64bit java.exe and keep 32bit java.exe
I'm working on Windows 2008 server 64bits with
- Jenkins
- Selenium Hub/Node
The Jenkins site launched using java.exe *32
Selenium Hub/Node launched by a Jenkins jobs with java.exe (I assumpt it's ...
0
votes
1answer
59 views
Button not visible
I want to click on "Open device Access" button but when i click on accordion, the button "Open device access is not display.
I think that javascript is not active because the transfert between ...
0
votes
2answers
43 views
null pointer exception in selenium code using java
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
import com.thoughtworks.selenium.DefaultSelenium;
import com.thoughtworks.selenium.Selenium;
public class RedBus {
...
0
votes
2answers
42 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() {
...
0
votes
2answers
34 views
Trouble using parent::* axes in selenium web driver
I am trying to use a wildcard to navigate up the DOM in selenium, using something like this...
ArrayList<WebElement> list = (ArrayList<WebElement>) ...
1
vote
1answer
30 views
Is there a way to have selenium store the cookie so I can call it, in java code?
So, basically I am using selenium to automate testing against a web application.
I am using Java imported in from the Selenium IDE of the basic steps and then I am adding some additional Java code.
...
0
votes
0answers
10 views
Are there any plugins to handle frames and framesets for slenium ide?
From what I have experienced:
The selenium ide does not record frame and also window changes.
But it should.
And I think it's feasible.
I want to write a plugin but I want to make sure such a plugin ...
0
votes
1answer
24 views
saucelabs java tutorial compilation errors
I'm experiencing various compile/run errors when I try the Sauce Labs Java tutorial. These errors are different when I run Maven in the command line and in Eclipse (Juno)
The java tutorial for Sauce ...
-2
votes
2answers
49 views
How to send a post?
How to send a post using Java?
I am using selenium and java to run some automated tests against a web application.
One part of my java code, I would like to send a http post request with an post data ...
1
vote
1answer
134 views
Using selenium webdriver in Internet Explorer
While using IE for automation using Selenium Webdriver, I am able to open the url but finding the element on that page is throwing the following exception:
org.openqa.selenium.NoSuchWindowException: ...
0
votes
0answers
92 views
Activate javascript on Webdriver selenium
I have program with java and i use selenium Webdriver.
But my script doesn't see the button "Open device access because he is "display : none".
http://clip2net.com/s/53N136
Normally, when I click ...
1
vote
3answers
49 views
Java/SeleniumWebDriver - Click a JQuery dialog button with Selenium
I currently trying to test a dialog with Selenium WebDriver but the "Create Employee" button doesn't have an id nor a name. This is what the code looks like.
<div class="ui-dialog-buttonpane ...
0
votes
2answers
65 views
Button click selenium java
I have a button:
<input type="button" onclick="onOpenSessionClick()" value="Open device access">
But when I do the command:
driver.findElement(By.xpath("//input[@value='Open access ...
0
votes
0answers
15 views
Arquillian Garphene, page loaded but unable to launch javascript
I'm using Arquillian Graphene with Selenium 2.
The trouble is coming from the Graphene.guardNoRequest(); method.
The error thrown is :
java.lang.RuntimeException: ...
1
vote
1answer
42 views
selenium webdriver tests using C#
I have a set of Selenium WebDriver tests written in C sharp in visual studio IDE.
Is there framework with web interface where I can run them?
This web interface should display list of all tests, ...
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
0answers
39 views
Selenium ide generated code does not indicate what frame
I have done several selenium recordings and played back in java and a common issue is that the play back will say find by locator of something and I would get an exception of not found.
It was ...
0
votes
1answer
89 views
How to use @FindBy annotation in Selenium Web Driver
I want to know what wrong with my code, because when i try to test my code, i didn´t nothing...
public class SeleniumTest {
private WebDriver driver;
private String nome;
private String idade;
...
0
votes
2answers
34 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
2answers
79 views
Webdriver no such element when it does exist and I have waited long enough for it
I am using WebDriver not to test but to do routine things like find out my account balance.
In doing that, I had some not found elements and I iterate though the windows and was able to log in.
Now ...
0
votes
0answers
41 views
How to completely stop selenium in Java
I have put together a APP using JFrame and selenium. It is fully functional. What I want it to do is execute and return the results then pause for 1 minute and exit the next in the while loop. But ...
0
votes
1answer
54 views
Selenium: Element not located via LINK_TEXT or PARTIAL_LINK_TEXT
I am attempting to find a robust way to locate the logout link in a dropdown user menu in a web app. This is the html for for the link:
<a href="logout.jsp">Logout</a>
I have attempted ...
-2
votes
1answer
78 views
File Upload Feature using Selenium and java
I need to automate the file upload feature in a web console and i am using selenium and java for this.
I tried multiple approaches but when i click on upload button and windows explorer gets opened, ...
0
votes
2answers
67 views
How to check that the options in dropdown are displayed twice in Selenium Webdriver using Java
I am stuck in one logic, where I have to verify if the options in dropdown are displaying twice. I searched in google for the solution, but didnt find any.
I have this code to get all the options ...
-1
votes
0answers
17 views
Mockito and Selenium 2.0 [closed]
I'm about to do some software testing fot TAD developers and I would like to ask if it is best to use Mockito in some methods?
Thanks in advence
0
votes
1answer
35 views
What kind of software testing is Selenium 2.0?
I just what to know your opinion about this.
We all know that Selenium is a Black Box Testing, but it is a Unitng Testing or an Intergration Testing?
1
vote
1answer
29 views
Selenium Issue: Select.deselectAll() causing iframe issues
I'm testing a site using the Selenium Browser Automation framework. During testing I switch to a specific frame, let's call it "frame_1". Later, I use the deselectAll() method in the Select class. ...
0
votes
3answers
300 views
How to select value from dropdown using java (selenium web driver)
I need to select a value from dropdown can some one help me on that. Html part is below
<div id="element11_chzn" class="chzn-container chzn-container-single" style="width: 320px;">
<a ...
0
votes
3answers
78 views
How to select an option from dropdown list by matching text pattern using selenium webdriver and java
I'm trying to select an option from a dropdown list by matching only some part of visible text, since the whole text is not going to always be the same. Can anyone please help me out on this?
0
votes
3answers
57 views
Selenium automatically accepting alerts
Does anyone know how to disable this? Or how to get the text from alerts that have been automatically accepted?
This code needs to work,
driver.findElement(By.xpath("//button[text() = ...
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 ...
-5
votes
4answers
59 views
How to copy a file from one location to another using java [duplicate]
i am running some automation scripts which will save the files downloaded from the server and by default they are saved in the downloads folder. After these download acion get completed, i need to run ...
0
votes
1answer
54 views
Toggle Native Events Capability of WebDriver at run time
Mouse Actions like Hover-over an element using 'Action Builder' does not seem to be reliable while running on Internet Explorer, when 'Native Events' is enabled. (Chrome and Firefox works perfectly)
...
-2
votes
2answers
46 views
how to change the file download location of firefox using java [closed]
I'm using java with selenium to download multiple files from a site using firefox browser. I need to save those files of specific format to a specific folder path and others to another specific path.
...
