Tagged Questions
-2
votes
0answers
20 views
how to work with maven, selenium, java and TestNG together. and run test suite [on hold]
can anyone please tell me or share some link about how to work with maven, selenium, java and TestNG together and run test suite.
I know selenium, java and testng very well but don't have much ...
0
votes
1answer
25 views
Need some plugin to use in selenium for browser compatable( for cross browser UI testing )
I am using selenium for functionality testing.
When I testing on each browser , I would like to know any plugin can support to test UI ( cross browser )difference between browsers (browser ...
0
votes
0answers
23 views
error with safari web driver in selenium
Jun 19, 2013 3:48:48 PM org.openqa.selenium.safari.SafariDriverServer start
INFO: Server started on port 27821
Jun 19, 2013 3:48:49 PM org.openqa.selenium.safari.SafariDriverChannelHandler$1 ...
-1
votes
1answer
60 views
Robot Framework - Case sensitive
I need to know if there is a workaround on this error:
When I use Keywords like:
Location Should Be
Location Should Contain
(Which are both part of the Selenium2Library.)
I get this error:
...
0
votes
1answer
57 views
Waiting for a chart to refresh, selenium Java
I'm trying to find an appropriate ExpectedConditions method for this situation. I have a chart and I want to check the text in each row after re-sorting the chart. Problem is, when the chart is ...
0
votes
0answers
26 views
automated testing of epos systems
I have just started working for a new team - who currently test retail applications such as EPoS (end point of sale - tills). This is all currently done manually and I would like to start the process ...
-2
votes
0answers
26 views
Is it possible to test a Java applet form with capybara - selenium - cucumber?
Since this applet forms are not tied to the DOM i wonder if exists some approach for automated testing with capybara cucumber selenium-webdriver.
-1
votes
2answers
73 views
How to test multiple version of google chrome using chromedriver?
selenium web-driver with java then how to use chrome driver for test their lower version of Google chrome
0
votes
0answers
52 views
WebdriverJS and drop down menus
I am running WebdriverJS on nodeJS to test the UI of a website. I want select and click on a submenu item in a drop down menubar. The submenu items are hidden by CSS. The menubar looks like this:
...
0
votes
4answers
153 views
Using selenium 2, how to type in textbox?
I am using Selenium 2.
But after running following code, i could not able to type in textbox.
package Actor;
import org.openqa.*;
import org.openqa.selenium.By;
import ...
0
votes
1answer
104 views
Selenium how to get the alert Alert message
Hi i am using the below for retrieving the alert message data but it is failed
Alert alert = driver.switchTo().alert();
String ss1=alert.getText();
it display the bellow error message .
...
-2
votes
2answers
105 views
What is the best tool for Mobile Testing? [closed]
At present we have frame work which supports All web browsers (Firefox,IE and Chrome) this one is for testing a web application.
The question is we have a mobile and ipad sites as well.
So Can you ...
3
votes
2answers
121 views
Capturing JS errors in Chrome
I'm capturing js errors in the application with window.onerror, but the thing is - in Chrome if dev tools isn't opened - then the url parameter passed to onerror handler always equals to the opened ...
1
vote
1answer
702 views
Skipping selenium webdriver scripts after “Error communicating with the remote browser” error in chrome
I am running a set of 400 selenium2 scripts (webdriver backed) in java.
When I am running the scripts on a node registered with the grid, sometimes I get the Error communicating with the remote ...
1
vote
0answers
172 views
Set session cookies in play framework testing using selenium hd
I am trying to do some unit testing using selenium hd. I currently have the following code:
browser.goTo("http://localhost:3333/")
browser.$("#email").text("[email protected]")
...