Tagged Questions
0
votes
0answers
7 views
Selenium firefox profile opening pdf read when pdfjs.disabled is true
I am trying to download a pdf file using Selenium web driver with Java. This was working fine the last time I run it about 2 weeks ago, but now every time it clicks on the pdf link it is opening the ...
1
vote
1answer
25 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.
...
-1
votes
1answer
46 views
How to automatically post on a forum after a random interval? [closed]
I am a regular user of the forum: http://forums.vr-zone.com/
Currently, I am selling a laptop on the marketplace. As it gets very crowded in there, I have to manually bump my post every few hours to ...
0
votes
0answers
38 views
Automate running the runnable java jar using the shell script
I am running a runnable java jar from the command prompt like this-
java -jar CassandraClientReadLnP.jar config.properties
NUMBER_OF_THREADS:10 TOTAL_RUNNING_TIME:30 >
...
0
votes
1answer
51 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 ...
0
votes
3answers
67 views
Call a method every x minutes
currently I have a application which can send notifications, I would like this application to be able to send these notifications automatically every x minutes (for example, 15 minutes is the ...
0
votes
0answers
27 views
Robotium : I want to Do data driven Testing using robotium?
I am searching a way I want to test login and it is not possible to write all the function with hard code values So like we have Data driven(parametrization) in QTP etc the tool fetch data from a file ...
0
votes
1answer
42 views
Selenium — How to handle situation when driver's current url is not updated quickly when navigating through a web application
I am using the PageObject model to develop a test framework, and I have one instance where it takes some time before a new page's url is available.
The scenario is this: The user is creating a new ...
0
votes
1answer
41 views
Selenium webdriver Java how to wait until a link is present
I have a link that I press and then it runs some JS and a new link is generated on the page which has the text "View report"
How can I wait on the page until this link is present and clickable, or ...
2
votes
1answer
75 views
Selenium webdriver: How can I click these links?
<a onclick="requestReportGeneration('857f23e1baa767622a91f970963d8918', 'reportDiv31','CSV')" href="javascript:void[0];">CSV</a>
<a ...
0
votes
0answers
23 views
How can I start my app, when another app is starting
How can I start my app, as soon as another app is starting?
One idea:
Run background Service, which check all running apps.
If the specific app is running, the service starts my app... is this the ...
0
votes
3answers
67 views
Selenium WebDriver — How can I know a certain line has executed successfully?
I am testing a web application and my sample test case has three steps:
Enter Username
Enter Password
Click 'Login'
driver.findElement(By.id("username")).sendKeys(username);
...
0
votes
1answer
110 views
Selenium clicking a link where the href is javascript:void[0];
I'm trying to see if when a link is clicked a report is generated on the page using Selenium webdriver with Java.
What happens is there are a bunch of links on a page, most of them when clicked go to ...
1
vote
0answers
44 views
Any Java based framework for Automating C++ / Python code?
I am trying to explore (or) find is there any Java based Automation framework available for automating C++ based code (Client Server application). There are other C++ Automation framework available ...
1
vote
1answer
54 views
Play & pause video using Selenium [closed]
My aim is to automate play/pause YouTube video present on the web page using selenium.
How to play/pause YouTube video with Java code for Selenium?
1
vote
1answer
47 views
systemProperties in an external file?
I have just started with Maven today so am still getting up to speed. I have set up a selenium test in Eclipse, in my test I have baseUrl = System.getProperty("webdriver.base.url");
I then run the ...
0
votes
0answers
43 views
Creating automated script to simulate an app's http requests
I'm working on a Java simple code that automates the requests and responses executed for a specific application.
The given app is an .exe file that makes HTTP requests to a web server on port 8080 for ...
0
votes
1answer
24 views
Using SWTBot to automate a third party application. Is it possible?
I have a SWT application that I'd like to automate, making use of SWTBot. Is it possible? If yes, how?
All the examples I've found on the net seem to be more about testing your own applications than ...
0
votes
2answers
84 views
Invoke the main method of a class in Mule
I have a Java class that writes data to a file every time you run the program. The Java class is written in the Mule project, and i would like to use a mule flow to invoke this Java class. So my ...
0
votes
0answers
25 views
Twin UI Automation
I have been using the tool automation.
Need advice on how you can get access to the desktop and running programs.
I use code
Application app = new Application(new URL("localhos:4444"));
Element ...
0
votes
2answers
88 views
Selenium-How to find the exact text using selenium-eclipse-mozilla
Am new to Selenium RC and currently am using Java to run the scripts.Below is the scenario
Scenario
I am trying to login to my appliation, once i login have to find the login/user name. Once i find ...
2
votes
3answers
103 views
Can Java read what is happening in an Adobe Flash based game?
Quite simply as the title states, is it possible for Java to read what is happening in a web-browser based Flash game?
For Example: Could I make a Java program which could play FarmVille for me by ...
0
votes
1answer
56 views
Is it possible to run Eclipse application and Junit plug-in test simultaneously?
I have an eclipse application, where in i can create projects and perform some operations. I have written a test cases using Junit for some functions. To run these test functions, i am doing Right ...
0
votes
2answers
174 views
Selenium, how to extract text between two div tags
I am new to using Selenium to perform web automation on websites and I am trouble with extracting text between two div tags.
Here is a snip-bit of the HTML code that I am trying to extract the text ...
0
votes
1answer
66 views
Home automation, decoupling appliances and actions done onto them
I have an OOP design question (I am using java but the question is more general). I am programming home automation simulator and I have some trouble designing it. There's a class for each appliance, ...
2
votes
2answers
41 views
Add piece of code to shortcut
Is there a way in Eclipse to bound a piece of code to a shortcut?
I use System.out.println() quite often, for testing and other things, and it would be so much easier if I had to press you ctrl + ...
2
votes
3answers
64 views
Automatically set method scope in eclipse
Is there a way I can automatically make Eclipse to inspect the scope of all methods and then correct it depending on it's use?
So if I had a public method which I only use in the current class it ...
1
vote
2answers
30 views
DB population for Integration test sever
I am dealing with quite an interesting challenge, we have an integration project that needs to interconnect the "in development" application with legacy applications. We developed a proxy that calls ...
5
votes
4answers
126 views
Eclipse IDE: install set of plugins
I have a set of favorite Eclipse plugins, that I need to install every time I install new Eclipse. I would also like to have a way to install all those plugins in [semi-]automated way for my team ...
0
votes
1answer
133 views
How to get the CSS class of a span using Selenium Web Driver in Java
I have a span element like this
<span id="yui-gen56" class="ir i-doc" style="background-color: transparent;"></span>
Now I want to retrieve the class attribute value so that it should ...
-1
votes
3answers
127 views
How to extract data from HTML websites? [closed]
I need to extract some text from a html based website. I have about 3000 URLs and need to extract a single line of text from their html. The data I need looks like this:
<html ...
-1
votes
1answer
71 views
Test AutoCAD 3D images using selenium or some java library
My application involves 3D and 2D diagrams. I want to test 3D/2D diagrams(comparison,crop/color/isolation of different parts in 3d model) using selenium web driver. If it's not suitable, Can somebody ...
-1
votes
2answers
74 views
Sending strings through html textbox using java
i want to make a console program in java that will send the input that it gets from the user, to an HTML POST form. sort of an auto-fill program.
i only need a simple direction. thanks
0
votes
2answers
65 views
How to extract data from a lot of URLs?
I have about 3200 URLs to small XML files which have some data in the form of strings(obviously).The XML files are displayed(not downloaded) when I go to the URLs. So I need to extract some data from ...
1
vote
2answers
142 views
Accessing a pdf opened in a new browser window with Selenium and JAVA
Language - JAVA
IDE - Eclipse
Tool - Selenium Web Driver
I have a test scenario where clicking on a link opens a new window with a pdf content being shown. The PDF shows up a form with Save and ...
0
votes
2answers
129 views
Automating complete testing of Java EE web application
I have a doubt. Say I have a web application which is big and relies on Java/Java EE (JSP/Servlets).
Every time before a drop we test each and every functionality on GUI so that everything is ...
2
votes
1answer
61 views
Can I have multiple @BeforeMethod's that will run only for the groups they belong to?
@BeforeMethod (groups={"a"})
public void setup1() {
//do something
}
@BeforeMethod (groups={"b"})
public void setup2() {
//do something else
}
@Test (groups={"a"})
public void Test1() {
...
-1
votes
1answer
64 views
imacros keyword verification
I have a macro that auto fills a form. but sometimes after autofilling the form i need to check my email for a link to 'complete filling in the form' (kinda like a verification). sometimes it asks me ...
0
votes
1answer
387 views
Cannot find element in the popup window with Selenium Webdriver
I'm using InternetExplorerDriver with Selenium Webdriver in Java.
I load a URL which simultaneously opens another window which has the login box.
Using the method mentioned here
I could select the ...
0
votes
0answers
212 views
Testing web applications on IPad using Selenium & Java
I am working in testing web applications on IPad using Selenium & Java.
As far as I understand the iWebDriver can be used , but for this purpose I would require XCode and a Mac system to create ...
0
votes
0answers
78 views
Java check if external browser is done executing all scripts and ajax calls
I wish to create a function in Java that checks when a given web browser has completed executing javascript and ajax calls and is now ready to be tested. (Idea is that I am waiting for the page to ...
-1
votes
1answer
128 views
Automation android game test tool
I have got a project to create an automated test tool for 3rd party (Source code isn't available) android games.So my question is to what extend can we run an automated test for a game. Is it possible ...
0
votes
4answers
74 views
How to progammatically create tests for TestNG?
I'm writing a library to automate unit test generation for my JPA @Entity classes. In short: the user supplies a multimap of field -> values pairs and my library generates tests for them.
Example ...
4
votes
1answer
87 views
How to make JScrollPane/JTextPane “Intelligent”
So, i have a situation where, a scrollbar needs to scroll automatically when meets a certain logical situation.
In my case, i have few lines written on JTextPane, and i am highlighting the words.So, ...
-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
2answers
247 views
Sikuli logging settings
I'm using sikuli-script.jar in my java application. It writes a lot of logging messages in the console. So, I want to disable logging or change the logging level. How I can do this? What logging ...
1
vote
1answer
79 views
Find components of external java applications and use them
My problem looks like:
I have an external application written in java which I start.
Next is to start my application. It should find the JTextFields of external application and set proper text values ...
1
vote
1answer
88 views
Automate login to secure website in java?
As part of a small project i'm doing that will never actually go into 'production' I need to be able to log into a very secure website and retrieve html.
I've been looking into doing this using the ...
-3
votes
1answer
134 views
Java Web with IBM Rational Functional Tester (RFT)
I learning about different automated testing tools and I have been unable to figure out if IBM's RFT has support for web based java applications. I saw on the data sheet that it supports Java in ...
0
votes
0answers
96 views
Using Java to send “Double Click” signal to MS Word
I am an automation programmer for a certain company and product.
I need to automate a few things with MS Word (on all versions, but I'll cross that bridge when I get there, if needed)
Most of the work ...

