<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-14084</id>
	<title>Nabble - Selenium - Users</title>
	<updated>2009-12-10T04:46:33Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Selenium---Users-f14084.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Selenium---Users-f14084.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26726578</id>
	<title>internet explorer always hangs</title>
	<published>2009-12-10T04:46:33Z</published>
	<updated>2009-12-10T04:46:33Z</updated>
	<author>
		<name>Marcel Overdijk</name>
	</author>
	<content type="html">No matter what I try, running selenium tests on internet explorer always hangs.
&lt;br&gt;Using firefox or chrome works withou a problem.
&lt;br&gt;&lt;br&gt;Using Selenium 1.0.1 on Vista/IE7</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/internet-explorer-always-hangs-tp26726578p26726578.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26726535</id>
	<title>SeleneseTestCase always opening iexplorer</title>
	<published>2009-12-10T04:36:48Z</published>
	<updated>2009-12-10T04:36:48Z</updated>
	<author>
		<name>Marcel Overdijk</name>
	</author>
	<content type="html">I'm using SeleneseTestCase with Eclipse/JUnit like:
&lt;br&gt;&lt;br&gt;class SearchTests extends SeleneseTestCase {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; void testSearch() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; setUp(&amp;quot;&lt;a href=&quot;http://www.google.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.com&lt;/a&gt;&amp;quot;, &amp;quot;*chrome&amp;quot;)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ..
&lt;br&gt;&lt;br&gt;But it always tests against iexplorer, no matter what I provide as browserString in setup.
&lt;br&gt;&lt;br&gt;If I create a custom testcase (not extending SeleneseTestCase) chrome is started.
&lt;br&gt;I guess there is something wrong with SeleneseTestCase and the provided browserString.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/SeleneseTestCase-always-opening-iexplorer-tp26726535p26726535.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26544336</id>
	<title>Dynamic variables between different tests</title>
	<published>2009-11-27T08:02:20Z</published>
	<updated>2009-11-27T08:02:20Z</updated>
	<author>
		<name>Lanqu</name>
	</author>
	<content type="html">Im using selenium RC 1.0 beta 2 under Linux system with CruiseControl to run automatic scripts. Workflow to be tested consists of creating different application objects. And I need to create in first testCase for example Object1 , and then use its Id in next testCase to create object2. But its Id written to a variable in testCase1 can't be accessed in next testCase. Who can advise something? May be some workaround (I think that merging all tests in one great script is not good workaround or new version of Selenium RC ?
&lt;br&gt;&lt;br&gt;Please, I'm very need an advise.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Dynamic-variables-between-different-tests-tp26544336p26544336.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26523445</id>
	<title>How to select a combobox item using java and selenium RC</title>
	<published>2009-11-25T18:13:15Z</published>
	<updated>2009-11-25T18:13:15Z</updated>
	<author>
		<name>riccc</name>
	</author>
	<content type="html">I got a problem with the combobox, while I am using a selenium RC.
&lt;br&gt;&lt;br&gt;I wrote some codes in java and the elements in my web page are generated automatically by java script.
&lt;br&gt;So the IDs of the elements on the web page are random.
&lt;br&gt;&lt;br&gt;&lt;br&gt;my codes are like this:(mBrowser is the selenium object)
&lt;br&gt;&lt;br&gt;mBrowser.click(&amp;quot;xpath=//*[contains(@id,'root')]&amp;quot;);//(click this span will generate a combobox)
&lt;br&gt;mBrowser.mouseOver(&amp;quot;document.getElementById('table').getElementsByTagName('TD')[2]&amp;quot;);//(the selected item)
&lt;br&gt;mBrowser.click(&amp;quot;document.getElementById('table').getElementsByTagName('TD')[2]&amp;quot;);
&lt;br&gt;&lt;br&gt;However, after the click action, the selected item was just highlighted,and nothing happened, the combobox list was still there.
&lt;br&gt;&lt;br&gt;I've try everything,would you please give me some advices? 
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-select-a-combobox-item-using-java-and-selenium-RC-tp26523445p26523445.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26421425</id>
	<title>Selenium IDE versus Selenium RC /Java in Eclipse</title>
	<published>2009-11-19T10:18:05Z</published>
	<updated>2009-11-19T10:18:05Z</updated>
	<author>
		<name>alberta01997</name>
	</author>
	<content type="html">Hello folks,
&lt;br&gt;I'm running a Junit test case (Eclipse) to verify static elemt on a webpage. I'm geting the following result:
&lt;br&gt;Got result: OK,false on session
&lt;br&gt;When I run the same test in Selenium IDE, it passes and when I use the Find button in Selenium IDE, it finds the element in question on the webpage
&lt;br&gt;The code in Eclipse is as follows: verifyEquals(&amp;quot;Name:&amp;quot;, selenium.getText(&amp;quot;//tr[6]/td[1]/table/tbody/tr[1]/td[1]&amp;quot;));
&lt;br&gt;Any suggestions thanks in advance</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Selenium-IDE-versus-Selenium-RC--Java-in-Eclipse-tp26421425p26421425.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26316122</id>
	<title>isElementPresent returns false for an element I'm able to get the name !</title>
	<published>2009-11-12T04:05:30Z</published>
	<updated>2009-11-12T04:05:30Z</updated>
	<author>
		<name>Damien.Garrido</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I'm using Selenium with Java and I'm trying to control Internet Explorer.
&lt;br&gt;&lt;br&gt;I am using a javascript snippet to retrieve a link element.
&lt;br&gt;I'm able to get the name of the element or any of its attributes using the getEval method.
&lt;br&gt;But the isElementPresent method always returns false for that element !
&lt;br&gt;&lt;br&gt;Here is my code:
&lt;br&gt;&lt;br&gt;void testLink()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String linkText = &amp;quot;NameOfTheLink&amp;quot;;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; linkPath = getLinkJavascriptSnippet() + &amp;quot;getLink( '&amp;quot; + linkText + &amp;quot;' )&amp;quot;;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; String eval = session().getEval( linkPath + &amp;quot;.nodeName&amp;quot; );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println( &amp;quot;eval: &amp;quot; + eval );
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; boolean present = session().isElementPresent( &amp;quot;dom=&amp;quot; + linkPath );
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; System.out.println( &amp;quot;present: &amp;quot; + present );
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;And here is the result:
&lt;br&gt;eval: A
&lt;br&gt;present: false
&lt;br&gt;&lt;br&gt;How the heck is it possible to get the name of an element that does not exist !?!
&lt;br&gt;&lt;br&gt;Is it a Selenium bug ?
&lt;br&gt;Am I missing something here ?
&lt;br&gt;Any advice on this issue would be greatly appreciated !
&lt;br&gt;&lt;br&gt;Thanks in advance
&lt;br&gt;Damien
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/isElementPresent-returns-false-for-an-element-I%27m-able-to-get-the-name-%21-tp26316122p26316122.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26229975</id>
	<title>Re: selenium.selectframe(&quot;Desktop Innerpage &quot;)</title>
	<published>2009-11-06T02:51:42Z</published>
	<updated>2009-11-06T02:51:42Z</updated>
	<author>
		<name>mpst</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;Try to using as see below
&lt;br&gt;&lt;br&gt;selenium.selectFrame(&amp;quot;relative=top&amp;quot;);
&lt;br&gt;selenium.selectFrame(&amp;quot;Desktop Innerpage &amp;quot;);
&lt;br&gt;&lt;br&gt;I hope to go :)
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;HS-10 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;hi 
&lt;br&gt;&lt;br&gt;I am running a simple test where the script received by the IDE says
&lt;br&gt;selenium.selectFrame(&amp;quot;Desktop Innerpage &amp;quot;);
&lt;br&gt;&lt;br&gt;Running this test in java I get : ERROR: Element Desktop Innerpage not found on session 300828
&lt;br&gt;&lt;br&gt;I have tried to to use :
&lt;br&gt;selenium.selectFrame(&amp;quot;relative=up&amp;quot;);
&lt;br&gt;selenium.selectFrame(&amp;quot;relative=parent&amp;quot;);
&lt;br&gt;&lt;br&gt;but nothing helps. 
&lt;br&gt;&lt;br&gt;Anyone knows how to solve this bug?
&lt;br&gt;&lt;br&gt;Thanks 
&lt;br&gt;yuval
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: selenium-users-unsubscribe@openqa.org
&lt;br&gt;For additional commands, e-mail: selenium-users-help@openqa.org
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/selenium.selectframe%28%22Desktop-Innerpage-%22%29-tp11862280p26229975.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26157869</id>
	<title>gotolabel - return to where the goto command was originally called</title>
	<published>2009-11-02T14:03:03Z</published>
	<updated>2009-11-02T14:03:03Z</updated>
	<author>
		<name>meow730</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;...
&lt;br&gt;echo / Test Case #1
&lt;br&gt;...do something...
&lt;br&gt;gotolabel / UncheckAll
&lt;br&gt;&lt;br&gt;echo / Test Case #2
&lt;br&gt;...do something...
&lt;br&gt;gotolabel / UncheckAll
&lt;br&gt;&lt;br&gt;echo / Test Case #3
&lt;br&gt;...do something...
&lt;br&gt;gotolabel / UncheckAll
&lt;br&gt;label / UncheckAll
&lt;br&gt;...
&lt;br&gt;&lt;br&gt;&lt;br&gt;All I want is to be able to &amp;quot;return&amp;quot; to the spot in the script at which the gotolable command was called. &amp;nbsp;Is this possible?</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/gotolabel---return-to-where-the-goto-command-was-originally-called-tp26157869p26157869.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26157868</id>
	<title>gotolabel - return to where the goto command was originally called</title>
	<published>2009-11-02T14:02:52Z</published>
	<updated>2009-11-02T14:02:52Z</updated>
	<author>
		<name>meow730</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;...
&lt;br&gt;echo / Test Case #1
&lt;br&gt;...do something...
&lt;br&gt;gotolabel / UncheckAll
&lt;br&gt;&lt;br&gt;echo / Test Case #2
&lt;br&gt;...do something...
&lt;br&gt;gotolabel / UncheckAll
&lt;br&gt;&lt;br&gt;echo / Test Case #3
&lt;br&gt;...do something...
&lt;br&gt;gotolabel / UncheckAll
&lt;br&gt;label / UncheckAll
&lt;br&gt;...
&lt;br&gt;&lt;br&gt;&lt;br&gt;All I want is to be able to &amp;quot;return&amp;quot; to the spot in the script at which the gotolable command was called. &amp;nbsp;Is this possible?</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/gotolabel---return-to-where-the-goto-command-was-originally-called-tp26157868p26157868.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26157863</id>
	<title>gotolabel - return to where the goto command was originally called</title>
	<published>2009-11-02T13:59:57Z</published>
	<updated>2009-11-02T13:59:57Z</updated>
	<author>
		<name>meow730</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;...
&lt;br&gt;echo / Test Case #1
&lt;br&gt;...do something...
&lt;br&gt;gotolabel / UncheckAll
&lt;br&gt;&lt;br&gt;echo / Test Case #2
&lt;br&gt;...do something...
&lt;br&gt;gotolabel / UncheckAll
&lt;br&gt;&lt;br&gt;echo / Test Case #3
&lt;br&gt;...do something...
&lt;br&gt;gotolabel / UncheckAll
&lt;br&gt;label / UncheckAll
&lt;br&gt;...
&lt;br&gt;&lt;br&gt;&lt;br&gt;All I want is to be able to &amp;quot;return&amp;quot; to the spot in the script at which the gotolable command was called. &amp;nbsp;Is this possible?</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/gotolabel---return-to-where-the-goto-command-was-originally-called-tp26157863p26157863.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26118844</id>
	<title>Re: Selenium to test Stand Alone applications</title>
	<published>2009-10-29T11:59:00Z</published>
	<updated>2009-10-29T11:59:00Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">Selenium is for testing web applications. I don't think, we can perform testing on stand-alone apps using Selenium.
&lt;br&gt;&lt;br&gt;thanks.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Selenium-to-test-Stand-Alone-applications-tp25780971p26118844.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26088428</id>
	<title>Re: Selenium - maven configuration</title>
	<published>2009-10-27T19:34:50Z</published>
	<updated>2009-10-27T19:34:50Z</updated>
	<author>
		<name>russpitre</name>
	</author>
	<content type="html">&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;indranilsarkar wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;I have a selenium test suite which is having two types of groups &amp;quot;sanity&amp;quot; and &amp;quot;All&amp;quot;
&lt;br&gt;I want to run mvn command which will tell &amp;nbsp;maven which group should be executed
&lt;br&gt;Command could be like this : mvn -Dtest=sanity test
&lt;br&gt;&lt;br&gt;Any pointer?
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
You could use maven profiles and then run maven like this: mvn verify -P sanityTests
&lt;br&gt;&lt;br&gt;You would need to configure maven-surefire-plugin to include the Tests you want to run and exclude the ones you don't. &amp;nbsp;Something like this i suppose:
&lt;br&gt;&lt;br&gt;&amp;lt;profiles&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;profile&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;id&amp;gt;sanityTests&amp;lt;/id&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;properties&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;environment&amp;gt;development&amp;lt;/environment&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/properties&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;build&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;plugins&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;plugin&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;groupId&amp;gt;org.apache.maven.plugins&amp;lt;/groupId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;artifactId&amp;gt;maven-surefire-plugin&amp;lt;/artifactId&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;configuration&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Exclude all integration tests so that they are not executed during
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; the test phase. This is because of a limitation in Maven 2.0.x which
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; only supports compiling a single test source tree. The
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; recommendation is to create a separate module for functional tests
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; as is done in the cargo-archetype-webapp-functional-test-module
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; --&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;excludes&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;exclude&amp;gt;**/it/**&amp;lt;/exclude&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;exclude&amp;gt;**/selenium/**&amp;lt;/exclude&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/excludes&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/configuration&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;executions&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;execution&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;phase&amp;gt;integration-test&amp;lt;/phase&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;goals&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;goal&amp;gt;test&amp;lt;/goal&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/goals&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;configuration&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!--
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Include only integration tests so that they are executed during
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; the integration-test phase. Again this this is because of a
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; limitation in Maven 2.0.x which only supports compiling a single
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; test source tree. The recommendation is to create a separate
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; module for functional tests as is done in the
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cargo-archetype-webapp-functional-test-module
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; --&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;excludes&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;exclude&amp;gt;none&amp;lt;/exclude&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/excludes&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;includes&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;include&amp;gt;**/it/**&amp;lt;/include&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;include&amp;gt;**/selenium/**&amp;lt;/include&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/includes&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/configuration&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/execution&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/executions&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/plugin&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/plugins&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/build&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/profile&amp;gt;
&lt;br&gt;&amp;lt;/profiles&amp;gt;
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Selenium---maven-configuration-tp26005545p26088428.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26084189</id>
	<title>[SOLVED] Maximize browser window when testing with Selenium RC</title>
	<published>2009-10-27T13:02:10Z</published>
	<updated>2009-10-27T13:02:10Z</updated>
	<author>
		<name>BoBoMonkey</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;You would have noticed that there isn't a way to maximize (fully strech-out) the browser window using selenium RC. However this is possible using the JAVA robot class. Check out the post &lt;a href=&quot;http://functionaltestautomation.blogspot.com/2009/10/maximize-browser-window-using-java.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;maximize browser window&lt;/a&gt;&amp;nbsp;on my blog to get the code to do just that. I have tested this on Firefox and IE but it should work on every browser.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-SOLVED--Maximize-browser-window-when-testing-with-Selenium-RC-tp26084189p26084189.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26065273</id>
	<title>Popups again!</title>
	<published>2009-10-26T11:48:22Z</published>
	<updated>2009-10-26T11:48:22Z</updated>
	<author>
		<name>George.Francis</name>
	</author>
	<content type="html">I know that many questions along this theme have been asked previously, but here is my specific case:
&lt;br&gt;I'm running Java selenium tests by inheriting from SeleneseTestCase. &amp;nbsp;IE7 on WinXP.
&lt;br&gt;In this one test, the framework 'clicks on' a link that invokes a popup window (by submitting a form whose target is _blank). &amp;nbsp;I have put a call to pause() so Selenium waits 30 seconds for the popup window to appear, and it's contents initialise. &amp;nbsp;I have observed this occurring. &amp;nbsp;The problem is that after that pause, when the test calls:
&lt;br&gt;selenium.getAllWindowTitles()
&lt;br&gt;it only returns only one element - the title of the original IE window, not the popup. &amp;nbsp;I have no way to refer to the popup window to validate it's content.
&lt;br&gt;Please advise if there's another approach I can take to 'refer to' the popup window. &amp;nbsp;I need this test to run on IE.
&lt;br&gt;Thanks,</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Popups-again%21-tp26065273p26065273.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26008841</id>
	<title>how to configure selenium server and selenium script on diffrent machines</title>
	<published>2009-10-22T05:11:39Z</published>
	<updated>2009-10-22T05:11:39Z</updated>
	<author>
		<name>anuppala</name>
	</author>
	<content type="html">I have started selenium server on machine A. Now I am running selenium perl script on machine B.
&lt;br&gt;&lt;br&gt;When I start the perl script, it is opening the browser on machine A instead on machine B. 
&lt;br&gt;&lt;br&gt;What configuration changes I need to make to make the browser open in machine B, where I start the Selenium Perl automation script.
&lt;br&gt;&lt;br&gt;I am using Selenium-RC on Machine A.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-configure-selenium-server-and-selenium-script-on-diffrent-machines-tp26008841p26008841.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26005545</id>
	<title>Selenium - maven configuration</title>
	<published>2009-10-22T00:54:56Z</published>
	<updated>2009-10-22T00:54:56Z</updated>
	<author>
		<name>indranilsarkar</name>
	</author>
	<content type="html">I have a selenium test suite which is having two types of groups &amp;quot;sanity&amp;quot; and &amp;quot;All&amp;quot;
&lt;br&gt;I want to run mvn command which will tell &amp;nbsp;maven which group should be executed
&lt;br&gt;Command could be like this : mvn -Dtest=sanity test
&lt;br&gt;&lt;br&gt;Any pointer?</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Selenium---maven-configuration-tp26005545p26005545.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25995737</id>
	<title>Selenium - can it handle captcha validation?</title>
	<published>2009-10-21T09:22:12Z</published>
	<updated>2009-10-21T09:22:12Z</updated>
	<author>
		<name>indranilsarkar</name>
	</author>
	<content type="html">I have a sign up form with copy characters. Could there be any solution, so that selenium test case can even read captcha from the for, and write it to the captcha validation text box?</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Selenium---can-it-handle-captcha-validation--tp25995737p25995737.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25982999</id>
	<title>Selenium with Perl</title>
	<published>2009-10-20T14:36:09Z</published>
	<updated>2009-10-20T14:36:09Z</updated>
	<author>
		<name>akc31</name>
	</author>
	<content type="html">Hi All,
&lt;br&gt;&amp;nbsp; &amp;nbsp;Does someone know where to get perl version of all the commands used in selenium.
&lt;br&gt;&lt;br&gt;Thank You. </content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Selenium-with-Perl-tp25982999p25982999.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25970531</id>
	<title>Selenium server jams to &quot;Checking Resource aliases&quot;</title>
	<published>2009-10-19T23:54:05Z</published>
	<updated>2009-10-19T23:54:05Z</updated>
	<author>
		<name>Metusaleh</name>
	</author>
	<content type="html">I try to start my simple test suite like this
&lt;br&gt;java -jar selenium-server.jar -multiwindow -port 4444 -htmlSuite &amp;quot;*firefox&amp;quot; &amp;quot;&lt;a href=&quot;http://www.google.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.com&lt;/a&gt;&amp;quot; &amp;quot;C:\path\mysuite.html&amp;quot; &amp;quot;C:\path\myresults.html&amp;quot;
&lt;br&gt;&lt;br&gt;It goes fine until it jams to &amp;quot;Checking Resource aliases&amp;quot;. This comes when Selenium is trying to finish suite's first test case. From Selenium IDE test suite works just fine. Does anyone know what might be wrong? Thanks in advance!</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Selenium-server-jams-to-%22Checking-Resource-aliases%22-tp25970531p25970531.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25783890</id>
	<title>Re: Need help with pop-up issue using Selenium RC in IE7 testing</title>
	<published>2009-10-07T03:58:01Z</published>
	<updated>2009-10-07T03:58:01Z</updated>
	<author>
		<name>boomi_selenium</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Which type of popup you are getting?
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Boomi.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Hades_Pluto wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi all,
&lt;br&gt;&lt;br&gt;I am having some trouble in IE7 testing with Selenium RC. I have no trouble automate the test in Firefox but I can never work around this issue in IE testing. Whenever there has to deal with a pop-up window, I am receiving an &amp;quot;Permission Denied&amp;quot; error message but I have disabled Pop-up blocker in IE browser, enabled all the Scripting options, and shutdown all the Virus-Scan. I have also checked on the Machine Debug Manaager (MDM) to make sure that there is no any influence to the IE automation testing. A lot of people have helped me already but i still cannot find a solution to work around this. Any suggestions?
&lt;br&gt;&lt;br&gt;By the way, the pop-up window does not have any title and no window id associate with it, I would like to like a way to work around this issue in this situation if it is possible.
&lt;br&gt;&lt;br&gt;Thank you very much.
&lt;br&gt;&lt;br&gt;Best,
&lt;br&gt;&lt;br&gt;Hades Pluto
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Need-help-with-pop-up-issue-using-Selenium-RC-in-IE7-testing-tp25757017p25783890.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25780971</id>
	<title>Selenium to test Stand Alone applications</title>
	<published>2009-10-06T22:59:34Z</published>
	<updated>2009-10-06T22:59:34Z</updated>
	<author>
		<name>lakpr02</name>
	</author>
	<content type="html">Hi Friends,
&lt;br&gt;&lt;br&gt;&amp;nbsp;I work on a product that runs as a Stand Alone application and we are trying to see if we can use Selenium to automate our product. But after going through the Selenium website and referring to other forums i have understood that Selenium supports automation of ONLY Web applications. So my specific question is - 
&lt;br&gt;&lt;br&gt;= &amp;gt; Is it possible to test Stand Alone applications using Selenium ? If so, can you please point me to the appropriate references ?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Pravin
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Selenium-to-test-Stand-Alone-applications-tp25780971p25780971.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25757017</id>
	<title>Need help with pop-up issue using Selenium RC in IE7 testing</title>
	<published>2009-10-05T14:11:17Z</published>
	<updated>2009-10-05T14:11:17Z</updated>
	<author>
		<name>Hades_Pluto</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;I am having some trouble in IE7 testing with Selenium RC. I have no trouble automate the test in Firefox but I can never work around this issue in IE testing. Whenever there has to deal with a pop-up window, I am receiving an &amp;quot;Permission Denied&amp;quot; error message but I have disabled Pop-up blocker in IE browser, enabled all the Scripting options, and shutdown all the Virus-Scan. I have also checked on the Machine Debug Manaager (MDM) to make sure that there is no any influence to the IE automation testing. A lot of people have helped me already but i still cannot find a solution to work around this. Any suggestions?
&lt;br&gt;&lt;br&gt;By the way, the pop-up window does not have any title and no window id associate with it, I would like to like a way to work around this issue in this situation if it is possible.
&lt;br&gt;&lt;br&gt;Thank you very much.
&lt;br&gt;&lt;br&gt;Best,
&lt;br&gt;&lt;br&gt;Hades Pluto</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Need-help-with-pop-up-issue-using-Selenium-RC-in-IE7-testing-tp25757017p25757017.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25731717</id>
	<title>Re: Data Driven test with Selenium</title>
	<published>2009-10-03T12:02:18Z</published>
	<updated>2009-10-03T12:02:18Z</updated>
	<author>
		<name>BoBoMonkey</name>
	</author>
	<content type="html">&lt;br&gt;Hi All, 
&lt;br&gt;&lt;br&gt;I have created a tutorial on &lt;a href=&quot;http://functionaltestautomation.blogspot.com/2009/10/dataprovider-data-driven-testing-with.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Data Driven testing using Selenium &amp; TestNG in the Eclipse environment&lt;/a&gt;&amp;nbsp;on my blog. I have described a very simple but very powerful way of storing &amp; retrieving test data from excel files and and linking them to the test logic in your java test class file. The example given is self containing and very easy to follow. I have used this approach to automate close to 1000 test cases so far.
&lt;br&gt;&lt;br&gt;Cheers</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Data-Driven-test-with-Selenium-tp7375808p25731717.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25731673</id>
	<title>Data Driven Testing with Selenium and TestNG</title>
	<published>2009-10-03T11:58:59Z</published>
	<updated>2009-10-03T11:58:59Z</updated>
	<author>
		<name>BoBoMonkey</name>
	</author>
	<content type="html">Hi All, 
&lt;br&gt;&lt;br&gt;I have created a tutorial on &lt;a href=&quot;http://functionaltestautomation.blogspot.com/2009/10/dataprovider-data-driven-testing-with.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Data Driven testing using Selenium &amp; TestNG in the Eclipse environment&lt;/a&gt;&amp;nbsp;on my blog. I have described a very simple but very powerful way of storing &amp; retrieving test data from excel files and and linking them to the test logic in your java test class file. The example given is self containing and very easy to follow. I have used this approach to automate close to 1000 test cases so far.
&lt;br&gt;&lt;br&gt;Cheers</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Data-Driven-Testing-with-Selenium-and-TestNG-tp25731673p25731673.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25687735</id>
	<title>Selenium-java client not working with any IE8 on Vista - getting Javascript error &quot;null&quot; is null or not an object</title>
	<published>2009-09-30T12:52:44Z</published>
	<updated>2009-09-30T12:52:44Z</updated>
	<author>
		<name>boriskin</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;I am using selenium java client and lately has spent some good chunk of time trying to get it to work with IE 8 on Vista. I am using selenium server 1.0.1, but also tried 1.0-beta-2 and 1.0.0 - all getting the same error. Here's the error: before the start of every test, i get a Javascript error popup window that displays error message: &amp;quot;null&amp;quot; is null or not an object in C:/[userhomedir]/[IE temp profile dir]/selenium-bot.js. If i press either yes or no, test finishes normally and the same problem happens when the next test starts.
&lt;br&gt;&lt;br&gt;I have tried not only different server versions, but also different browser executable strings, *iexplore, *iehta, *iexploreproxy. *iexplore and *iehta produce the above error, but *iexploreproxy simply freezes on the first page of a test (does not produce that javascript error however). It is possible that *iexploreproxy works but is simply very very slow, but i set the timeout to 20 times as high and the test was timing out before doing something as simple as clicking on the link. 
&lt;br&gt;&lt;br&gt;Have anyone else had a similar problem with IE 8 (or any other version of IE). If yes, please post what your remedy was.
&lt;br&gt;&lt;br&gt;Thank you</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Selenium-java-client-not-working-with-any-IE8-on-Vista---getting-Javascript-error-%22null%22-is-null-or-not-an-object-tp25687735p25687735.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25657494</id>
	<title>Re: how to handle showModelDialog using selenium</title>
	<published>2009-09-28T23:17:18Z</published>
	<updated>2009-09-28T23:17:18Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">You can use &amp;quot;selectWindow&amp;quot; and &amp;quot;windowFocus&amp;quot; commands.
&lt;br&gt;&lt;br&gt;thanks.
&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;ki2 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi,
&lt;br&gt;&amp;nbsp;
&lt;br&gt;How do I get hold of modal window and do some action on it using selenium.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;I have on url which opens a modal window (probably javascript). The window has two input fields and two buttons. I need to enter data in the input fields and click one of the button.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;How can I do this using selenium?
&lt;br&gt;&amp;nbsp;
&lt;br&gt;~ki2
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/how-to-handle-showModelDialog-using-selenium-tp21215599p25657494.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25622882</id>
	<title>Re: Data Driven test with Selenium</title>
	<published>2009-09-25T23:47:36Z</published>
	<updated>2009-09-25T23:47:36Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">thanks for sharing this.
&lt;br&gt;&lt;br&gt;thanks.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Data-Driven-test-with-Selenium-tp7375808p25622882.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25622836</id>
	<title>Re: Not able to click on link because of some of French or German characters.</title>
	<published>2009-09-25T23:40:07Z</published>
	<updated>2009-09-25T23:40:07Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">use xpath (or) id of the link in script for clicking it. this would just be one work around.
&lt;br&gt;&lt;br&gt;thanks.
&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;ajnavi wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;I have french link called &amp;quot;Qui sommes-nous ?&amp;quot;, and because of ?, selenium is unable to perform click.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Selenium server log: 13:03:22.012 INFO - Command request: isElementPresent[//a[text()='Qui sommes-nous ?'], ] on session 4a0b9ea8c66f40b1a24fd772b0f69a17
&lt;br&gt;13:03:22.196 INFO - Got result: OK,false on session 4a0b9ea8c66f40b1a24fd772b0f69a17
&lt;br&gt;&lt;br&gt;&lt;br&gt;Any thought most welcome.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Not-able-to-click-on-link-because-of-some-of-French-or-German-characters.-tp23395886p25622836.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25622792</id>
	<title>Re: Selenium selectWindow command</title>
	<published>2009-09-25T23:31:51Z</published>
	<updated>2009-09-25T23:31:51Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">Or try to move the focus to new window and then run the script. use this command - windowFocus
&lt;br&gt;&lt;br&gt;thanks.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Selenium-selectWindow-command-tp23702409p25622792.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25622697</id>
	<title>Re: How to select window</title>
	<published>2009-09-25T23:12:32Z</published>
	<updated>2009-09-25T23:12:32Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">Use selectWindow - to select the window first and then use - 
&lt;br&gt;windowFocus - to focus onto the selected window.
&lt;br&gt;&lt;br&gt;thanks.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Gaurang033 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi folks,
&lt;br&gt;&lt;br&gt;I am new to the selenium. I am testing a website which has a button. Upon clicking on the buttion it opens a new window. But the strange thing is that it doesn't have any window Id or name. I tried to select it using the title but no Luck..
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Here is the code that opens the New window
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;lt;button onclick='window.open(&amp;quot;&lt;a href=&quot;http://google.co.in&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://google.co.in&lt;/a&gt;&amp;quot;,&amp;quot;&amp;quot;,&amp;quot;toolbar=no,status=yes,menubar=no,location=no,resizable=yes,scrollbars=yes,width=1000,height=600,top=80,left=80&amp;quot;);'&amp;gt;Popup&amp;lt;/button&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;I tried the following things..
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;getAllWindowTitles()[1]
&lt;br&gt;&lt;br&gt;getAllWindowNames()[1]
&lt;br&gt;&lt;br&gt;getAllWindowIds()[1]
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;with waitForPopUp and selectWindow but It's always fails to select the window..
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Please let me know if there is any way to select the window
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-select-window-tp24266930p25622697.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25622662</id>
	<title>Re: assertTextNotPresent not working as expected</title>
	<published>2009-09-25T23:06:54Z</published>
	<updated>2009-09-25T23:06:54Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">try this, it works - 
&lt;br&gt;&lt;br&gt;&amp;lt;tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;open&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;&lt;a href=&quot;http://www.google.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.google.com&lt;/a&gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;lt;tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;assertTextNotPresent&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;yahoo&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;lt;/tr&amp;gt;
&lt;br&gt;&lt;br&gt;thanks.
&lt;br&gt;&lt;br&gt;&lt;quote author=&quot;jochen69&quot;&gt;&lt;br&gt;Hello, i´am also biginner... I´am working with IDE 1.0.2
&lt;br&gt;&lt;br&gt;By me it´s NOT working. I tried a lot, but it won´t work.
&lt;br&gt;&lt;br&gt;Command: assertTextNotPresent
&lt;br&gt;&lt;br&gt;i tried all combinations in target and value field, with quotes and without. It isn´t working. Is it a bug?
&lt;br&gt;I there another way to check the text on page? The text i want to check i simply saved in form tag.
&lt;br&gt;&lt;br&gt;Thank you.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Alexandre Garel wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Roger P a écrit :
&lt;br&gt;&lt;br&gt;&amp;gt;This is my first try with this promising product.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt;When I run assertTextNotPresent in the IDE it fails and I get this in the console:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;# [info] Executing: |open | /modules/start/start.php3 | |
&lt;br&gt;&amp;gt;# [info] Executing: |assertTextNotPresent | | sxsx |
&lt;br&gt;&amp;gt;# [error] Page text not found 
&lt;br&gt;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;gt;
&lt;br&gt;TextPresent and TextNotPresent are exception to the target/value rule as 
&lt;br&gt;you have to put the value in the target field
&lt;br&gt;&lt;br&gt;|assertTextNotPresent | sxsx | |
&lt;br&gt;&lt;br&gt;Hope it helps
&lt;br&gt;Alex
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Ce message est protégé par les règles relatives au secret des correspondances. Il est donc établi à destination exclusive de son destinataire. Celui-ci peut donc contenir des informations confidentielles. La divulgation de ces informations est à ce titre rigoureusement interdite. Si vous avez reçu ce message par erreur, merci de le renvoyer à l'expéditeur dont l'adresse e-mail figure ci-dessus et de détruire le message ainsi que toute pièce jointe.
&lt;br&gt;&lt;br&gt;This message is protected by the secrecy of correspondence rules. Therefore, this message is intended solely for the attention of the addressee. This message may contain privileged or confidential information, as such the disclosure of these informations is strictly forbidden. If, by mistake, you have received this message, please return this message to the addressser whose e-mail address is written above and destroy this message and all files attached.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: selenium-users-unsubscribe@openqa.org
&lt;br&gt;For additional commands, e-mail: selenium-users-help@openqa.org
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;/quote&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/assertTextNotPresent-not-working-as-expected-tp3068492p25622662.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25622613</id>
	<title>Re: How to run tests in a live system periodically?</title>
	<published>2009-09-25T22:57:46Z</published>
	<updated>2009-09-25T22:57:46Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">May not be a best solution, but just my thought - 
&lt;br&gt;how about writing a java program which doesn't complete and then calling all selenium tests in that? something like this - 
&lt;br&gt;&lt;br&gt;While (1=1) {
&lt;br&gt;aPro=new Thread(this);
&lt;br&gt;aPro.start();
&lt;br&gt;InvoteSeleniumtests (); //call tests here
&lt;br&gt;aPro.sleep(1000*120); //2 hours
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Once you run this program, it never ends and would continue to run your tests for every 2 hours. Not sure if this makes sense, but just thought - this could be one of the solution.
&lt;br&gt;&lt;br&gt;thanks.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;sudhi123 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hello,
&lt;br&gt;&lt;br&gt;&amp;nbsp; I have written test automation using webdriver/selenium. Now my automation is fine and it up and working from my eclipse.
&lt;br&gt;&lt;br&gt;&amp;nbsp; The problem is we have live systems where my automated tests has to run for every hour and see the live application critical functionality is working and log them to the data base.
&lt;br&gt;&lt;br&gt;&amp;nbsp; I have done everything except putting my tests run against the live systems. I really don't know how to run my tests against the live system. Windows task creation is not the best option that i have. 
&lt;br&gt;&lt;br&gt;&amp;nbsp;Can somebody suggest something ? or is anybody has done any similar to this ?
&lt;br&gt;&lt;br&gt;&amp;nbsp;Thanks for your help in advance.
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-run-tests-in-a-live-system-periodically--tp24852880p25622613.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25622555</id>
	<title>Re: How to disable Javascript when running Selenium?</title>
	<published>2009-09-25T22:46:43Z</published>
	<updated>2009-09-25T22:46:43Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">can you not disable on the browser?
&lt;br&gt;&lt;br&gt;thanks.
&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;chobo2 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Hi
&lt;br&gt;&lt;br&gt;I want to do some server side validation. How can I disable java script so I can test it?
&lt;br&gt;&lt;br&gt;Thanks
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-disable-Javascript-when-running-Selenium--tp25000283p25622555.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25622458</id>
	<title>Re: How to create Test Cases with Internet Explorer as a browser</title>
	<published>2009-09-25T22:27:32Z</published>
	<updated>2009-09-25T22:27:32Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">May be this framework would help you in creating data driven tests using Selenium RC. Some of my colleagues use this and it helps you in recording tests using IDE, and then you can convert them to excel sheets, and provide input data. from then - it will help you to run the tests in IE.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.w3qa.eu/index.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3qa.eu/index.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please check this for now, I will try to send you more information over the weekend.
&lt;br&gt;&lt;br&gt;thanks.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;jm legrand wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;In my organisation, we have used Selenium IDE &amp;nbsp;to add regression tests to the release process.
&lt;br&gt;&lt;br&gt;We are facing a problem with a couple of application, that are only IE compatible. For these, we can't use the Firefox plugin to record the tests.
&lt;br&gt;&lt;br&gt;I have tried to manually create HTML test cases that are executed with Selenium Core for validation. There are after run against Selenium RC coupled to Internet Explorer. The manual creation is however a painful step in the process.
&lt;br&gt;&lt;br&gt;What would be a proper solution to create and record these test cases with Internet Explorer (as the browser constraint).
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;jml
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-create-Test-Cases-with-Internet-Explorer-as-a-browser-tp25385287p25622458.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-25622435</id>
	<title>Re: ClickAndWait command not working in IE</title>
	<published>2009-09-25T22:22:24Z</published>
	<updated>2009-09-25T22:22:24Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">Can you use &amp;quot;pause&amp;quot;? that might work.
&lt;br&gt;&lt;br&gt;thanks. 
&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Roshni Basu wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Yes &amp;quot;click&amp;quot; works. But It does not help to run my test case. I am trying to create a test case where I have to click a button and then it should go to the new page. So either it should use &amp;quot;ClickAndWait&amp;quot; or &amp;quot;WaitForTextPresent&amp;quot; or &amp;quot;WaitForElementPresent&amp;quot; . And whenever I use any command using wait it fails when run in IE but works fine in firefox. So I want to know Whether IE does not support any selenium command like &amp;quot;ClickAndWait&amp;quot; where it has to wait?
&lt;br&gt;&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ClickAndWait-command-not-working-in-IE-tp25452154p25622435.html" />
</entry>

</feed>
