Tagged Questions
0
votes
1answer
3 views
Radio button click in Selenium Webdriver
I have write a code for radio button click by using XPath but it is not click on radio button during execution of code.
My code is:
...
0
votes
0answers
11 views
How do I interact with a popup window with Mink, Selenium 2, and Behat?
I am running through an internal site with Behat and for the most part it is going really well. But the problem is that on certain parts of the site we have popup windows that come up to complete an ...
0
votes
1answer
21 views
How to click an element and hold? And capture screenshot before release?
The code i have tried so far is:
Actions act = new Actions(driver);
WebElement ele = driver.findElement(By.id("btn1"));
act.clickAndHold(ele);
<capture screenshot>
act.release(ele);
0
votes
0answers
16 views
How to create a new session using WebDriver.js
I am new to Selenium. I am trying to write a simple javascript test that will click on an element using webdriver.js compiled from the latest selenium open source code.
I have this right now:
...
-3
votes
0answers
27 views
Selenium webdriver- Identify an element
I am new to automation (selenium).Scenario :To identify the element of the mobile title on any mobile site(eg:flipkart).I wanted to know whether there is any other way apart from the href/title to ...
0
votes
0answers
23 views
Chrome Driver not handling Alerts and constantly showing a notification about background apps when running selenium test
Running selenium tests using chrome driver, everytime the browser starts up I'm getting a notification balloon about added persistent background apps and then the test hangs it doesn't even appear to ...
0
votes
1answer
36 views
Selenium Firefox Profile Path not taken into account
I just want to test locally. With Internet Explorer it works. With Firefox, I get a timeout on line driver.FindElement :
var capabilitiesInternet = new OpenQA.Selenium.Remote.DesiredCapabilities();
...
0
votes
0answers
21 views
How to add addons using Selenium WebDrvier
I have to test some ads on the Webpage, this adds will be displayed, when i install the ads.exe file (internally it will add firefox add-on) to the Firefox browser.
When i run the script using ...
3
votes
1answer
28 views
How to set Google Chrome in WebDriver
I am trying to set chrome as my browser for testing in webdriver and set the chromedriver.exe file properly but still i am getting below error:
org.openqa.selenium.WebDriverException: The path to the ...
0
votes
0answers
18 views
NoSuchWindowException after Close Window
I'm using robotframework with the Selenium2Library.
And i've been having some trouble on handling popup windows in IE8.
Try Popup
Open Browser To PageXYZ
Click Element XYZ
Select Window ...
0
votes
1answer
23 views
Selenium node failing to run IE or Chrome web drivers
Here's simple batch file I wrote to start the node for selenium grid
set webdriver.ie.driver=C:\selenium-server\IEDriverServer.exe
echo %webdriver.ie.driver%
set ...
0
votes
1answer
27 views
difference between thoughtworks and openqa selenium
What the difference between openqa.selenium and thoughtworks.selenium? How they compatible with each other?
There is no class Selenium in package openqa.selenium, but there is class WebDriver. I want ...
1
vote
0answers
34 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
2answers
43 views
Page loads and the item is not found
I test some site. Just only try put some text into input field (near Site URL:). I use selenium. My code throw exception. Please, tell me why?
IWebDriver driver = new FirefoxDriver();
...
0
votes
0answers
29 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
2answers
41 views
How to test the ads displayed on UI, using Selenim WebDriver/RC
How to test the ads which displayed on web page. This ads are injected thorugh some plugins. When i record using IDE, it displays the adds on Firefox browser. But when i run the webdriver selenium ...
1
vote
2answers
28 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
37 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
37 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
1answer
82 views
How to eliminate xpaths in Webdriver code?
I working on automating a website and I'm trying to find a way to reduce the use of xpaths in my code.
My code looks something like this
...
0
votes
0answers
44 views
verify Popup Alert message text using selenium webdriver
<tr>
<td style="padding: 15px 5px 0 0;" colspan="2">
<input class="LoginButton2" type="button" value="Login" name="login">events=Object { click=[1]}handle=function()
...
0
votes
2answers
66 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
0answers
12 views
Selenium iPhoneDriver - build errors
I am new to Selenium iPhonedriver testing. I am following exact steps from http://code.google.com/p/selenium/wiki/IPhoneDriver
I checked out trunck from ...
0
votes
1answer
34 views
[org.openqa.selenium.remote.RemoteWebElement@f76d0bdd -> unknown locator]
I am trying to read the element so that i can later use to get the id of that element. Using below code to get first the WebElement. But throws the following in console:
...
0
votes
1answer
33 views
How to use explicit in selenium?
i am using Selenium to get div value, but the fallowing code is not waiting for the page, just for url. I used time.sleep what is very primitive and totally not flexible. And want to change it on the ...
-1
votes
1answer
66 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" ...
1
vote
0answers
25 views
Selenium Frameworks and Remote Testing, recommended framework?
I installed and played around with Selenium WebDriver on Visual Studio 2012 (C#) last week and was very impressed by how easy it was to automate browser testing. I now want to find out if I can expand ...
0
votes
1answer
48 views
Selenium Webdriver radio button issue
I export Selenium IDE code for automated testing in Selenium Web driver. the code is executed properly but on radio button it stopped and generate error on Selenium Webdriver. Kindly guide me to ...
1
vote
1answer
55 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. ...
1
vote
1answer
40 views
Empty error message in Selenium WebDriverException
I am attempting to use Selenium/BeautifulSoup to unit test a web page. I am getting an error though that I haven't been able to Google.
selenium.common.exceptions.WebDriverException: Message: ''
I ...
0
votes
2answers
45 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
0answers
35 views
Can we use static functions in multithreading environment?
I'm new to Java and Selenium. In selenium test I want to check whether element is displayed before performing any action on it. I have written static function to check for element existence. I'll be ...
0
votes
0answers
46 views
Selenium Webdriver and Basic Auth in IE
Is there any way to provide username and password to a basic auth dialog in IE using selenium Webdriver? Passing the credentials in the URL is not an option for us.
-1
votes
1answer
42 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
-1
votes
4answers
58 views
How to select nested elements using standard CSS selectors (nth-of-type or nth-child) for Selenium?
How would I select the paragraph tag for B (or C), using the nth-child or nth-of-type? I am using the Selenium WebDriver.
<tr>
<td>
<p class="myClass">A</p>
...
2
votes
1answer
56 views
Run time error while typecasting WebDriver to CheckBox
In my application, I have a grid with a column for check boxes. The ID of the check boxes for each row differs only by the number after a fixed value. xxxx_0, xxxx_1, ....
In order to select a check ...
1
vote
0answers
51 views
remove arguments passed to chrome by selenium / chromedriver
I'm using selenium with python and chromium / chromedriver. I want to REMOVE switches passed to chrome (e.g. --full-memory-crash-report), but so far I could only find out how to add further switches.
...
0
votes
1answer
58 views
Cannot call Selenium 2 System.setProperty(“webdriver.ie.driver” from C#
When trying to call System.setProperty("webdriver.ie.driver" from C#, LinqPad says setProperty cannot be found in System.
Actually System doesn't exist in any Selenium dll for c# so is it possible ...
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: ...
0
votes
3answers
104 views
Selecting incorrect submenu item after hover action
I'm developing a test case in Python with Webdriver to click through menu items on http://www.yumandyummer.com, and this particular one is meant to go through a menu item and click on a sub-menu item.
...
0
votes
1answer
105 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
57 views
How to locate search links in google in Selenium for testing
I am trying to search Google for Selenium, then run down the list of links by clicking each one, printing the page title, then navigating back.
List<WebElement> linkElements = ...
0
votes
2answers
47 views
Connection refused error when I try to close a Watir browser?
This thing just seems to give me problem after problem.
I posted another question earlier, trying to solve the problem of retaining my session state between closing and opening through Watir. Firefox ...
1
vote
0answers
58 views
selenium webdriver on virtual machine
I'm working on a virtual machine using Selenium WebDriver. I'm trying to run tests on the machine I work on (again, virtual) and I'm getting a NoClassDefFoundError on the line where I instantiate my ...
0
votes
4answers
98 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
2answers
83 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
vote
1answer
124 views
Selenium: Can't SendKeys() to an item that was below the visible window but was made visible by Click()
I have this problem with a text field that is visible at the time of the SendKeys. I'm using IEDriverServer.exe and C#.
Here's how I can reproduce the problem:
The text field in question is visible ...
0
votes
3answers
329 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 ...
-1
votes
2answers
61 views
Selenium object identification
I am using Selenium webdriver to test my application & i am facing difficulties in identifiying button on the same. the code snippet is like :
<input type="submit" onclick="return sign(this);" ...
1
vote
0answers
56 views
How to get the number of idle browsers for a node in selenium grid2
My current setup is 5 nodes with 10 Firefox browsers each, all connected to a hub.
I am running into a problem where I am exhausting the 10 firefox browsers for each node. So any new selenium runs ...




