Here are some tips to use CSS locators in your selenium automation projects.
Just go through this XML structure. I going to speak about some locators to get inside elements.
Direct Child:
css=div > a //This will give you 'My Link1' element
Child or SubChild:
css=div a //This will give you 'My Link2' element
ID:
css=div#testdiv //This will give you 'testdiv' element
Class:
css=div.myDiv1 //This will give you 'myDiv1' element
Next Sibling:
css=form input.username + input //This will give you 'alias' input under form
Using Attribute values:
SubStrings:
Using InnerText:
css=a:contains('Log Out') //Link contains InnerText
Others:
Sometimes you have to find elements using count and type etc. Here you can use nth-child or nth or nth-of-type. Consider this structure...
Other Common ways to use:
XPath Type : Functions
Always we have chances to meet locator problems while elements with same attributes, ids, names, etc. These kind of scenarios can be solved by using below techniques. Normally we can use 4 ways to identify the elements.
1. String
2. Boolean
3. Number
4. Node-Set
Here they are,
Here are some examples.
Hope this will you some ideas about CSS locators to use in your projetcs....
Just go through this XML structure. I going to speak about some locators to get inside elements.
- <div id='testdiv'>
- <span><a href='http://sds1'>my Link2</a></span>
- <a href='http://sds'>my Link1</a>
- <div class='myDiv1'><a href='sds'>my link3</a></div>
- <form>
- <input class="username"></input>
- <input class="alias"></input>
- <input type="hidden" name="vid" value="442bbdf4-9226-41cd-801e-0d065a16cc52"><input type="hidden" name="lf_cid" value="LF_c10cf6d6"></form>
- </div>
Direct Child:
css=div > a //This will give you 'My Link1' element
Child or SubChild:
css=div a //This will give you 'My Link2' element
ID:
css=div#testdiv //This will give you 'testdiv' element
Class:
css=div.myDiv1 //This will give you 'myDiv1' element
Next Sibling:
css=form input.username + input //This will give you 'alias' input under form
Using Attribute values:
- css=form input[name='username'] //This will give you input field under form with name='username'
- css=input[name='continue'][type='button'] //This will do AND operation
SubStrings:
- css=a[id^='id_prefix_'] //Like starts-with
- css=a[id$='_id_sufix'] //Like ends-with
- css=a[id*='id_pattern'] //Like contains
Using InnerText:
css=a:contains('Log Out') //Link contains InnerText
Others:
Sometimes you have to find elements using count and type etc. Here you can use nth-child or nth or nth-of-type. Consider this structure...
- <ul id="recordlist">
- <p>Heading</p>
- <li>Cat</li>
- <li>Dog</li>
- <li>Car</li>
- <li>Goat</li>
- </ul>
- css=ul#recordlist li:nth-child(4) //This will give you 'Car'. Finds childs with type 'li'
- css=ul#recordlist *:nth-child(4) //This will give you 'Car'. Finds any-type child
- css=ul#recordlist li:nth(3) //This will give you 'Goat'
- css=ul#recordlist *:nth(4) //This will give you 'Goat'
css=ul#recordlist li:first-child //This will give you 'Cat'
css=ul#recordlist li:last-child
Other Common ways to use:
XPath Type : Functions
Always we have chances to meet locator problems while elements with same attributes, ids, names, etc. These kind of scenarios can be solved by using below techniques. Normally we can use 4 ways to identify the elements.
1. String
2. Boolean
3. Number
4. Node-Set
Here they are,
- Node-Set: last(), position(), count(), id(), local-name(), namespace-uri(), name()
- String: string(), concat(), starts-with(), contains(), substring-before(), substring-after(), substring(), string-length(), normalize-space(), translate()
- Boolean: boolean(), not(), true(), false(), lang()
- Number: number(), sum(), floor(), ceiling(), round()
Here are some examples.
- selenium.click("xpath=(//input[@type='checkbox'])[last()]");
- selenium.click("xpath=(//input[@type='submit'])[last()-1]");
- selenium.click("xpath=(//input[@type='checkbox'])[position()=2]");
Hope this will you some ideas about CSS locators to use in your projetcs....
Comments
Post a Comment