-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> ...
1
vote
1answer
105 views

Selenium 2 driver.findElement()

How is it possible that driver.findElement(By.cssSelector("input[id*='supplierOps_input'][class*='ui-autocomplete-input']")); throw this exception : org.openqa.selenium.NoSuchElementException : ...
0
votes
1answer
210 views

How to find an element using Selenium WebDriver, when Id is not contant (<input id=“ext-gen26”)

I need help in finding an element using Selenium WebDriver. I have tried all the possible selectors, but I am unable to locate the element. FYI. id="ext-gen26" is not constant, this will change every ...
0
votes
1answer
168 views

Selenium WebDriver - getthe first row of a table in C#

I'm a total selenium newbie, so the code below is far from perfect(supported by the fact that it doesn't work). I want to get the first row in a table and check whether it has a certain CSS class ...
2
votes
1answer
94 views

How do you select elements in selenium that have a period in their id?

I am trying to write code that will select all options for an HTML drop-down menu. I have written the following code which I believe should work. public void testSelectMultipleOptions () { // ...
0
votes
1answer
41 views

CssSelector multiple, Arquillian Graphene

i'm using Arquillian Graphene to get an element, and i want to be sur the get this one, becaus there is a lot of element with the same class and the id is generated so i can't really use it. So, i'm ...
2
votes
2answers
106 views

Css selector is not finding element in selenium grid

I am trying to find Submit element.My html structure is as below. <div> <span class=" combutton"><a href="javascript:void(0);">Submit</a></span> </div> ...
1
vote
1answer
66 views

Testing chrome webstore using WebdriverJS

I'm facing problems by testing the chrome webstore - using WebdriverJS and my own node.js script. When trying to query the result using css selectors, I get allmost everytime "no such element" errors ...
0
votes
0answers
59 views

SeleniumWebdriver - size of collection selected elements

I would like to select all childs and grandchilds and grand-grand etc. in root div, But problem is: when collection of these selected elements has size greater than 55, The collection cut first half ...
0
votes
1answer
97 views

How to get the child div id's,which are directly the child under one parent div?

If I have a markup like shown below,i want to access each of the eigth div seperately from its parent div and print its id using for loop. <div class=abc> <div id="parent"> <div ...
2
votes
3answers
251 views

Unable to find element in IE but in FF it works fine

EDIT: my CSSSelector is like this: (which is working fine in FF) for (int i = 1; i < _count; i++) { .................. .................. div#ctl00_ContentPlaceHolder1 table.gv tbody ...
0
votes
1answer
2k views

Selenium CSS selector by id AND multiple classes

Using selenium for the first time here, I was wondering why: final WebElement justAnId = findElement(By.cssSelector("#someId")); final WebElement whatIWant = justAnId.findElement( ...
0
votes
2answers
385 views

nth-of-type css selector

Below is a snippet of my HTML page: <td id="Platinum" align="center" width="16%"> <div></div> <a>link1</a> </td> <td></td> <td ...
0
votes
3answers
116 views

Is there any other option to select item from dropdown instead “selectByVisibleText”?

I have the following line of code in my Selenium test which is about selecting item from DropDown: new ...
1
vote
2answers
124 views

First matching element using CSSSelector

Here is my updated HTML Code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html ...
0
votes
3answers
119 views

Matching elements/Contains using CSSSelector

I have very long page and i have extract the tr and td related to my question. <tr> <td colspan="2"><a ...
1
vote
1answer
364 views

How to convert this xpath to css?

How to change this below Xpath to css? Please help. //button[text()='Continue' and @class='buttonLargeAlt' and @type='submit']
0
votes
1answer
73 views

How do I select a css element with a text not attached to the attribute?

I am currently working on Eclipse using java bindings and i'm automating an e-commerce website. I am using Selenium 2 (Webdriver) to write my automation scripts and I'm having an issue trying to get a ...
0
votes
2answers
680 views

How do I check all checkboxes on a page using webdriver?

I want to check/uncheck all checkboxes present in page. Code snippet is as following:- @Test public void checkBoxAll() { List<WebElement> ...
0
votes
1answer
94 views

xpath and csspath from HTML code for using in WebDriver

I have the following HTML snippet: <label for="widget_118_login_username">Username</label> What's the xpath and csspath (cssSelector) to use in Selenium 2 (WebDriver)?
1
vote
3answers
2k views

Unable to find element with css selector

Using Selenium Webdriver for FF/IE using C# (.Net) Below is my page source and I am trying to use the CssSelector to find/contains the particular name from my page and i have tried with the below ...
0
votes
1answer
105 views

weird issue - ssSelector unable to find objects using css structure

I am facing a weird issue when locating elements using cssSelector with webdriver. On a fresh environment that I setup on Windows, cssSelector is unable to find objects when the identification is ...
0
votes
4answers
488 views

How to manage dynamic id for COMPOSE button in Gmail in Selenium Automated Test

The id of COMPOSE button of Gmail is dynamic. So when it is clicked different xpath is recorded by Selenium IDE as follows: //div[@id=':lw']/div/div , //div[@id=':as']/div/div What can be the ...
1
vote
2answers
272 views

Why are Selenium tests so slow?

I am writing a scraper that downloads (legally) a bunch of images and I`ve run into an issue. On the relevant pages, after a page is done loading, it just takes too long find elements by css. So for ...
1
vote
3answers
1k views

How to use multiple CSS locators as a selenium locator?

I'm trying to hit a link in a table-row that contains multiple links. This pattern is used throughout the table. This works: browser.wait_for(:element => "css=tr:nth-child(1) li:nth-child(2) ...