Skip to main content

Selenium - CSS Locators

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. 

  1. <div id='testdiv'>
  2. <span><a href='http://sds1'>my Link2</a></span>
  3. <a href='http://sds'>my Link1</a>
  4. <div class='myDiv1'><a href='sds'>my link3</a></div>
  5. <form>
  6. <input class="username"></input>
  7. <input class="alias"></input>
  8. <input type="hidden" name="vid" value="442bbdf4-9226-41cd-801e-0d065a16cc52"><input type="hidden" name="lf_cid" value="LF_c10cf6d6"></form>
  9. </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:
  1. css=form input[name='username']  //This will give you input field under form with name='username'
  2. css=input[name='continue'][type='button']  //This will do AND operation

SubStrings:
  1. css=a[id^='id_prefix_']  //Like starts-with
  2. css=a[id$='_id_sufix']   //Like ends-with
  3. 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...
  1. <ul id="recordlist">
  2. <p>Heading</p>
  3. <li>Cat</li>
  4. <li>Dog</li>
  5. <li>Car</li>
  6. <li>Goat</li>
  7. </ul>

  1. css=ul#recordlist li:nth-child(4)   //This will give you 'Car'. Finds childs with type 'li'
  2. css=ul#recordlist *:nth-child(4)  //This will give you 'Car'. Finds any-type child
  3. css=ul#recordlist li:nth(3)    //This will give you 'Goat'
  4. 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,
  1. Node-Set: last(), position(), count(), id(), local-name(), namespace-uri(), name()
  2. String: string(), concat(), starts-with(), contains(), substring-before(), substring-after(), substring(), string-length(), normalize-space(), translate()
  3. Boolean: boolean(), not(), true(), false(), lang()
  4. Number: number(), sum(), floor(), ceiling(), round()

Here are some examples.

  1. selenium.click("xpath=(//input[@type='checkbox'])[last()]");
  2. selenium.click("xpath=(//input[@type='submit'])[last()-1]");
  3. selenium.click("xpath=(//input[@type='checkbox'])[position()=2]");

Hope this will you some ideas about CSS locators to use in your projetcs....

Comments

Popular posts from this blog

Some good Resources / Blogs / Sites for Selenium Users

Here I have listed out some good blogs and sites by extensive selenium automation users. Hope these will help you a lot. http://automationtricks.blogspot.com  - by NirajKumar http://www.theautomatedtester.co.uk/ http://testerinyou.blogspot.com   - by Naga/Mathu http://seleniumready.blogspot.com  - by Farheen Khan http://seleniumdeal.blogspot.com/  - Amit Vibhuti http://seleniumexamples.com/blog Sauce Labs and BrowserMob are companies doing cloud and extensive selenium automation services, products, etc http://saucelabs.com/blog http://blog.browsermob.com http://testingbot.com/ Cedric Beust -  creator of the TestNG Java testing framework. http://beust.com/weblog/ http://blog.reallysimplethoughts.com/  - by Samit Badle, Created many Selenium IDE Plug-Ins Available Colud Testing: 1. SauceLabs 2. Soasta 3. BrowserMob 4. CloudTesting.com  etc. Selenium Testing Products: 1. Twist by ThoughtWorks 2.  TestMaker by...

Robotic Process Automation vs Traditional Test Automation vs Process/Task Automation

In IT industry, the term RPA is keep on hearing all sides of the walls for a while; and I was so confused about What's the difference from the test automation tools in the market and what's more into it. I did some search, understanding, and writing this post to share with you all. If I am not correct, PLEASE correct me. Traditional Test Automation: First, we have to recall the test automation tool QTP or UFT (Initially developed by Mercury Interactive Corporation(MIC) after WinRunner, then sold to HP, and again MicroFocus acquired from HP now). If you look into the architecture of this tool, MIC was trying to convert the testers into more efficient testers i.e. Testers were executing the test cases manually for regression suites, performance suites, etc. which had lot of repetitive tasks done by human testers instead of concentrating into new ideas or bug finding strategies to improve the quality of the product.  Thus WinRunner was introduced but it was demanding m...

Change IE Browser ZOOM settings

Lot of UI automation testers could have faced this problem as we could change the zoom settings while operating manually for our convenience and forgot to reset to 100%. But our QTP and some other related tools would operate the browser perfectly if browser zoom is 100%. So wee need to change the zoom before start to run the scripts. Its better to have a code snippet in our framework to change this zoom setting right? Here we go... 1. We can simply change the Registry values before Invoking IE Function  ChangeRegistry   Dim  objShell   Set  objShell =  CreateObject ( "WScript.Shell" )  objShell.RegWrite  "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Zoom\ZoomFactor" ,  "100000" ,  "REG_DWORD"   Set  objShell =  Nothing End   Function This option is very useful. But in real time, lot of customers could have restricted write access to windows registry. So we can try othe...