Uncheck

This command can turn the state of a checkbox to the unchecked state with just a simple indication of the right location using the Element Locator attribute.

Required Attributes
locator
Element Locator to identify the html element.
Usage Examples
Example #1
<selenium baseurl="http://www.google.com" browser="*${browser}">
   
<open url="/finance" />
   
<waitForPageToLoad timeout="30000" />
   
<for property="i" range="0..6">
      
<check locator="//input[@name='gf-chart-ticker${i}']" />
      
<sleep time="1s" />
   
</for>
   
<for property="i" range="0..6">
      
<uncheck locator="//input[@name='gf-chart-ticker${i}']" />
      
<sleep time="1s" />
   
</for>
</selenium>