<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for QA Automation</title>
	<atom:link href="http://www.qaautomation.net/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.qaautomation.net</link>
	<description>Improving software quality with automation.</description>
	<lastBuildDate>Mon, 29 Apr 2013 00:16:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Choosing Selenium locators effectively by Ganesh</title>
		<link>http://www.qaautomation.net/?p=188&#038;cpage=1#comment-33602</link>
		<dc:creator>Ganesh</dc:creator>
		<pubDate>Mon, 29 Apr 2013 00:16:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.qaautomation.net/?p=188#comment-33602</guid>
		<description><![CDATA[Hi,I have the HTML source code

In this I want a XPATH locator to the element with value 19500, so that I can use selenium RC get_value($locator) to return 19500.

If you notice there are two Tables  both without names.
Without unique identifiers, and the element 19500 also does not have name or id identification.

How do I do this ?








&lt;a href=&quot;?mmb=0.1.0.0.2.4&quot; rel=&quot;nofollow&quot;&gt;GE.HwMgr.192.168.1.40.Dr[0].HWitems&lt;/A&gt;

















Name
mDValue


Description



Properties
READ WRITE -60000.0 - 60000.0


Width
4


Type
HWITEM


Default
0.000000


Current
19500.000000
]]></description>
		<content:encoded><![CDATA[<p>Hi,I have the HTML source code</p>
<p>In this I want a XPATH locator to the element with value 19500, so that I can use selenium RC get_value($locator) to return 19500.</p>
<p>If you notice there are two Tables  both without names.<br />
Without unique identifiers, and the element 19500 also does not have name or id identification.</p>
<p>How do I do this ?</p>
<p><a href="?mmb=0.1.0.0.2.4" rel="nofollow">GE.HwMgr.192.168.1.40.Dr[0].HWitems</a></p>
<p>Name<br />
mDValue</p>
<p>Description</p>
<p>Properties<br />
READ WRITE -60000.0 &#8211; 60000.0</p>
<p>Width<br />
4</p>
<p>Type<br />
HWITEM</p>
<p>Default<br />
0.000000</p>
<p>Current<br />
19500.000000</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Locating page elements using WebDriver by Ganesh</title>
		<link>http://www.qaautomation.net/?p=388&#038;cpage=1#comment-33522</link>
		<dc:creator>Ganesh</dc:creator>
		<pubDate>Sat, 27 Apr 2013 15:50:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.qaautomation.net/?p=388#comment-33522</guid>
		<description><![CDATA[Hi, I am not using Webdriver API, but directly controlling Selenium RC using PERL.

a) Let us say I was able to invoke google.com using Perl, how do I use $Locator and Click($Locator) commands to actually clock on &quot;Sign In &quot; button of Google.


b) Sometimes webpages have two data entry fields.
How do I type into a particulat data entry field again using Locator and type($locator,$value) commands

Can somebody kindly give examples for these ?


c) How do I install and use Webdriver API on top of Selenium RC ?]]></description>
		<content:encoded><![CDATA[<p>Hi, I am not using Webdriver API, but directly controlling Selenium RC using PERL.</p>
<p>a) Let us say I was able to invoke google.com using Perl, how do I use $Locator and Click($Locator) commands to actually clock on &#8220;Sign In &#8221; button of Google.</p>
<p>b) Sometimes webpages have two data entry fields.<br />
How do I type into a particulat data entry field again using Locator and type($locator,$value) commands</p>
<p>Can somebody kindly give examples for these ?</p>
<p>c) How do I install and use Webdriver API on top of Selenium RC ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Locating page elements using WebDriver by jitendra</title>
		<link>http://www.qaautomation.net/?p=388&#038;cpage=1#comment-32889</link>
		<dc:creator>jitendra</dc:creator>
		<pubDate>Wed, 17 Apr 2013 10:11:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.qaautomation.net/?p=388#comment-32889</guid>
		<description><![CDATA[awesome information ......]]></description>
		<content:encoded><![CDATA[<p>awesome information &#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting started with Selenium 2 and WebDriver by Anshu</title>
		<link>http://www.qaautomation.net/?p=373&#038;cpage=1#comment-32713</link>
		<dc:creator>Anshu</dc:creator>
		<pubDate>Sun, 14 Apr 2013 02:19:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.qaautomation.net/?p=373#comment-32713</guid>
		<description><![CDATA[I have created one sample program in java which is basically importing input from a xls file and then running the script.
It is working fine when i run this using junit.Now I want to execute this code with the help of command prompt.
Can someone please guide me how i will do it?

I have install ant as well but not able to run this code.

package com.testing;
import java.io.FileInputStream;
//import java.io.IOException;
import jxl.Sheet;
import jxl.Workbook;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class Data{
Sheet s;
WebDriver driver;
@Before
public void setUp()
{
driver = new FirefoxDriver();
}
@Test
public void searchGoogle() throws Exception
{
FileInputStream fi = new FileInputStream(&quot;C:\\Users\\akhandelwal\\Documents\\Test.xls&quot;);
Workbook w = Workbook.getWorkbook(fi);
s = w.getSheet(0);
for(int row=1; row &lt;=s.getRows();row++)
{
String username = s.getCell(0, row).getContents();
System.out.println(&quot;Username &quot;+username);
driver.get(&quot;http://www.gmail.com&quot;);
driver.findElement(By.name(&quot;Email&quot;)).sendKeys(username);
String password= s.getCell(1, row).getContents();
System.out.println(&quot;Password &quot;+password);
driver.findElement(By.name(&quot;Passwd&quot;)).sendKeys(password);
driver.findElement(By.name(&quot;signIn&quot;)).click();
}
}
@After
public void tearDown()
{
driver.close();
driver.quit();
}
}]]></description>
		<content:encoded><![CDATA[<p>I have created one sample program in java which is basically importing input from a xls file and then running the script.<br />
It is working fine when i run this using junit.Now I want to execute this code with the help of command prompt.<br />
Can someone please guide me how i will do it?</p>
<p>I have install ant as well but not able to run this code.</p>
<p>package com.testing;<br />
import java.io.FileInputStream;<br />
//import java.io.IOException;<br />
import jxl.Sheet;<br />
import jxl.Workbook;<br />
import org.junit.After;<br />
import org.junit.Before;<br />
import org.junit.Test;<br />
import org.openqa.selenium.By;<br />
import org.openqa.selenium.WebDriver;<br />
import org.openqa.selenium.firefox.FirefoxDriver;<br />
public class Data{<br />
Sheet s;<br />
WebDriver driver;<br />
@Before<br />
public void setUp()<br />
{<br />
driver = new FirefoxDriver();<br />
}<br />
@Test<br />
public void searchGoogle() throws Exception<br />
{<br />
FileInputStream fi = new FileInputStream(&#8220;C:\\Users\\akhandelwal\\Documents\\Test.xls&#8221;);<br />
Workbook w = Workbook.getWorkbook(fi);<br />
s = w.getSheet(0);<br />
for(int row=1; row &lt;=s.getRows();row++)<br />
{<br />
String username = s.getCell(0, row).getContents();<br />
System.out.println(&quot;Username &quot;+username);<br />
driver.get(&quot;<a href="http://www.gmail.com&#038;quot" rel="nofollow">http://www.gmail.com&#038;quot</a> <img src='http://www.qaautomation.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ;<br />
driver.findElement(By.name(&quot;Email&quot;)).sendKeys(username);<br />
String password= s.getCell(1, row).getContents();<br />
System.out.println(&quot;Password &quot;+password);<br />
driver.findElement(By.name(&quot;Passwd&quot;)).sendKeys(password);<br />
driver.findElement(By.name(&quot;signIn&quot;)).click();<br />
}<br />
}<br />
@After<br />
public void tearDown()<br />
{<br />
driver.close();<br />
driver.quit();<br />
}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Waiting after web page interactions by Vishal</title>
		<link>http://www.qaautomation.net/?p=490&#038;cpage=1#comment-32572</link>
		<dc:creator>Vishal</dc:creator>
		<pubDate>Thu, 11 Apr 2013 11:45:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.qaautomation.net/?p=490#comment-32572</guid>
		<description><![CDATA[Please post the next session.]]></description>
		<content:encoded><![CDATA[<p>Please post the next session.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Selenium 2 Tutorial and User Guide with examples by Leela Krishna Sriram</title>
		<link>http://www.qaautomation.net/?p=365&#038;cpage=1#comment-32329</link>
		<dc:creator>Leela Krishna Sriram</dc:creator>
		<pubDate>Sun, 07 Apr 2013 04:04:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.qaautomation.net/?p=365#comment-32329</guid>
		<description><![CDATA[Hi rahul,
Iam a java Developer and want to move to QA automation as my career.Its completely self learning on selenium. But your blog was so clear and simple to understand. Really thanks alot and looking for further best publications]]></description>
		<content:encoded><![CDATA[<p>Hi rahul,<br />
Iam a java Developer and want to move to QA automation as my career.Its completely self learning on selenium. But your blog was so clear and simple to understand. Really thanks alot and looking for further best publications</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Started with FitNesse by Rahul Poonekar</title>
		<link>http://www.qaautomation.net/?p=11&#038;cpage=1#comment-30898</link>
		<dc:creator>Rahul Poonekar</dc:creator>
		<pubDate>Thu, 07 Mar 2013 11:27:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.qaautomation.net/?p=11#comment-30898</guid>
		<description><![CDATA[You are right in that you need both fitnesse and fitlibrary jars in your classpath to compile your code. I did that by using ant.

As for the error you are getting while running your test, it doesn&#039;t seem like your jar containing the Fixture (greetFixture.jar) is in the classpath. I would double check that you have added it in the COMMAND_PATTERN, the path to the jar (greet/greetFixture.jar?) is correct and that the package you created for the Fixture (greet.GreetTheWorldFixture) is correct.]]></description>
		<content:encoded><![CDATA[<p>You are right in that you need both fitnesse and fitlibrary jars in your classpath to compile your code. I did that by using ant.</p>
<p>As for the error you are getting while running your test, it doesn&#8217;t seem like your jar containing the Fixture (greetFixture.jar) is in the classpath. I would double check that you have added it in the COMMAND_PATTERN, the path to the jar (greet/greetFixture.jar?) is correct and that the package you created for the Fixture (greet.GreetTheWorldFixture) is correct.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Started with FitNesse by Karina</title>
		<link>http://www.qaautomation.net/?p=11&#038;cpage=1#comment-30697</link>
		<dc:creator>Karina</dc:creator>
		<pubDate>Fri, 01 Mar 2013 14:08:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.qaautomation.net/?p=11#comment-30697</guid>
		<description><![CDATA[This doesn&#039;t work.
I followed this step by step and it fails when I try to run the test. First of all, I cannot compile fitnesse.jar without compiling fitlibrary.jar as well.

javac -cp fitlibrary.jar:fitnesse.jar greet/GreetTheWorldFixture.java   will compile it, 
but when running the test, I get

Assertions: 0 right, 0 wrong, 0 ignored, 2 exceptions (0.004 seconds)
variable defined: TEST_RUNNER=fitlibrary.suite.FitLibraryServer

classpath: fitlibrary.jar
classpath: fitnesse.jar
classpath: greet/greetFixture.jar

Assertions: 0 right, 0 wrong, 0 ignored, 2 exceptions (0.006 seconds)
variable defined: TEST_RUNNER=fitlibrary.suite.FitLibraryServer

classpath: fitlibrary.jar
classpath: fitnesse.jar
classpath: greet/greetFixture.jar

greet.GreetTheWorldFixture Missing class or Missing method. Possibly:

    public Type getGreetDotGreetTheWorldFixture() { }
    public Type greetDotGreetTheWorldFixture() { }

show

 Missing method, possibly:
    public Type getSayHi() { }             say hi
    public Type sayHi() { }

In:]]></description>
		<content:encoded><![CDATA[<p>This doesn&#8217;t work.<br />
I followed this step by step and it fails when I try to run the test. First of all, I cannot compile fitnesse.jar without compiling fitlibrary.jar as well.</p>
<p>javac -cp fitlibrary.jar:fitnesse.jar greet/GreetTheWorldFixture.java   will compile it,<br />
but when running the test, I get</p>
<p>Assertions: 0 right, 0 wrong, 0 ignored, 2 exceptions (0.004 seconds)<br />
variable defined: TEST_RUNNER=fitlibrary.suite.FitLibraryServer</p>
<p>classpath: fitlibrary.jar<br />
classpath: fitnesse.jar<br />
classpath: greet/greetFixture.jar</p>
<p>Assertions: 0 right, 0 wrong, 0 ignored, 2 exceptions (0.006 seconds)<br />
variable defined: TEST_RUNNER=fitlibrary.suite.FitLibraryServer</p>
<p>classpath: fitlibrary.jar<br />
classpath: fitnesse.jar<br />
classpath: greet/greetFixture.jar</p>
<p>greet.GreetTheWorldFixture Missing class or Missing method. Possibly:</p>
<p>    public Type getGreetDotGreetTheWorldFixture() { }<br />
    public Type greetDotGreetTheWorldFixture() { }</p>
<p>show</p>
<p> Missing method, possibly:<br />
    public Type getSayHi() { }             say hi<br />
    public Type sayHi() { }</p>
<p>In:</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple Selenium 2 example by Manish B</title>
		<link>http://www.qaautomation.net/?p=263&#038;cpage=1#comment-30273</link>
		<dc:creator>Manish B</dc:creator>
		<pubDate>Wed, 20 Feb 2013 11:36:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.qaautomation.net/?p=263#comment-30273</guid>
		<description><![CDATA[I am getting below error while running this code

Exception in thread &quot;main&quot; java.lang.NoClassDefFoundError: com/google/common/base/Function
	at com.selenium.example.FirstTest.main(FirstTest.java:17)
Caused by: java.lang.ClassNotFoundException: com.google.common.base.Function
	at java.net.URLClassLoader$1.run(Unknown Source)
	at java.net.URLClassLoader$1.run(Unknown Source)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.net.URLClassLoader.findClass(Unknown Source)
	at java.lang.ClassLoader.loadClass(Unknown Source)
	at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
	at java.lang.ClassLoader.loadClass(Unknown Source)
	... 1 more]]></description>
		<content:encoded><![CDATA[<p>I am getting below error while running this code</p>
<p>Exception in thread &#8220;main&#8221; java.lang.NoClassDefFoundError: com/google/common/base/Function<br />
	at com.selenium.example.FirstTest.main(FirstTest.java:17)<br />
Caused by: java.lang.ClassNotFoundException: com.google.common.base.Function<br />
	at java.net.URLClassLoader$1.run(Unknown Source)<br />
	at java.net.URLClassLoader$1.run(Unknown Source)<br />
	at java.security.AccessController.doPrivileged(Native Method)<br />
	at java.net.URLClassLoader.findClass(Unknown Source)<br />
	at java.lang.ClassLoader.loadClass(Unknown Source)<br />
	at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)<br />
	at java.lang.ClassLoader.loadClass(Unknown Source)<br />
	&#8230; 1 more</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Locating page elements using WebDriver by Igor</title>
		<link>http://www.qaautomation.net/?p=388&#038;cpage=1#comment-29901</link>
		<dc:creator>Igor</dc:creator>
		<pubDate>Thu, 14 Feb 2013 10:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.qaautomation.net/?p=388#comment-29901</guid>
		<description><![CDATA[Hi there!

In Telerik it&#039;s possible to search elements within an element that was already found. E.g. I found a , that has some  elements. After that I can invoke find() directly from the  element.

Is there such possibility using the WebDriver?]]></description>
		<content:encoded><![CDATA[<p>Hi there!</p>
<p>In Telerik it&#8217;s possible to search elements within an element that was already found. E.g. I found a , that has some  elements. After that I can invoke find() directly from the  element.</p>
<p>Is there such possibility using the WebDriver?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
