<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-14083</id>
	<title>Nabble - Selenium</title>
	<updated>2009-11-25T18:13:15Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Selenium-f14083.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Selenium-f14083.html" />
	<subtitle type="html">Selenium is a test tool for web applications. Selenium tests run directly in a browser, just as real users do. And they run in Internet Explorer, Mozilla and Firefox on Windows, Linux, and Macintosh. Selenium home is &lt;a href=&quot;http://openqa.org/selenium/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<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;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium---Users-f14084.html&quot; embed=&quot;fixTarget[14084]&quot; target=&quot;_top&quot; &gt;Selenium - Users&lt;/a&gt;&lt;/p&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-26523395</id>
	<title>Re: Combo Box and Click</title>
	<published>2009-11-25T18:04:27Z</published>
	<updated>2009-11-25T18:04:27Z</updated>
	<author>
		<name>riccc</name>
	</author>
	<content type="html">hi eleo,
&lt;br&gt;&lt;br&gt;I got the same problem with you, 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;I adopt your method.
&lt;br&gt;&lt;br&gt;my codes are like this:
&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;&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;Eleo-3 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;I got solution,
&lt;br&gt;&lt;br&gt;&amp;lt;tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;click&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;RadComboBox1_Input&amp;lt;/td&amp;gt; 
&lt;br&gt;&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;lt;td&amp;gt;waitForVisible&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;td&amp;gt;RadComboBox1_DropDownPlaceholder&amp;lt;/td&amp;gt;
&lt;br&gt;&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;lt;td&amp;gt;waitForElementPresent&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;td&amp;gt;//div[@id=&amp;quot;RadComboBox1_c3&amp;quot;]&amp;lt;/td&amp;gt;
&lt;br&gt;&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;lt;td&amp;gt;mouseOver&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;//div[@id=&amp;quot;RadComboBox1_c3&amp;quot;]&amp;lt;/td&amp;gt;(this is the id of the drop down item div element)
&lt;br&gt;&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;lt;td&amp;gt;click&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;//div[@id=&amp;quot;RadComboBox1_c3&amp;quot;]&amp;lt;/td&amp;gt;
&lt;br&gt;&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;Posted via Jive Forums
&lt;br&gt;&lt;a href=&quot;http://forums.openqa.org/thread.jspa?threadID=6598&amp;messageID=18963#18963&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.openqa.org/thread.jspa?threadID=6598&amp;messageID=18963#18963&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: selenium-ide-users-unsubscribe@openqa.org
&lt;br&gt;For additional commands, e-mail: selenium-ide-users-help@openqa.org
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Combo-Box-and-Click-tp9037176p26523395.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26510286</id>
	<title>Re: ClickAt(...) Sliderbar</title>
	<published>2009-11-25T02:14:14Z</published>
	<updated>2009-11-25T02:14:14Z</updated>
	<author>
		<name>TH Lim</name>
	</author>
	<content type="html">I did manage to get it work. Though the IDs are randomly generated I use index in xpath. e.g 
&lt;br&gt;&lt;br&gt;dragAndDrop
&lt;br&gt;//div[@class=&amp;quot;WizardStep&amp;quot;]/div[contains(@class,&amp;quot;QuestionPanelMandatory&amp;quot;)]&lt;b&gt;[2]&lt;/b&gt;//div[contains(@class,&amp;quot;horizThumbDiv&amp;quot;)]
&lt;br&gt;200,0
&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;kjaladi wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Hi Lim, just curious if you were able to figure out the solution for this problem? I tried many ways to verify your site using Selenium IDE, but not successful. After clicking on the &amp;quot;next&amp;quot; link on home page, a bunch of website names are loaded in next page in a table, but all of them are having &amp;quot;ids&amp;quot; generated dynamically - which is why I wasn't able to figure out a solution using IDE.Please do post here if you have got a solution for this problem.
&lt;br&gt;&lt;br&gt;thanks.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ClickAt%28...%29-Sliderbar-tp26209646p26510286.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26494707</id>
	<title>Re: How can i perform Data-driven testing with selenium.</title>
	<published>2009-11-24T04:00:09Z</published>
	<updated>2009-11-24T04:00:09Z</updated>
	<author>
		<name>ann samuel</name>
	</author>
	<content type="html">Can you please send me the sample code..
&lt;br&gt;i want &amp;nbsp;in C#..
&lt;br&gt;Thanks in advance
&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;Eleo-3 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi,
&lt;br&gt;I am using selenium RC with C#, and with the help of C# I can read and write the excel sheet and use those values whenever I need in the script.
&lt;br&gt;&lt;br&gt;-Mkind
&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;Posted via Jive Forums
&lt;br&gt;&lt;a href=&quot;http://forums.openqa.org/thread.jspa?threadID=11359&amp;messageID=39626#39626&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.openqa.org/thread.jspa?threadID=11359&amp;messageID=39626#39626&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: selenium-ide-users-unsubscribe@openqa.org
&lt;br&gt;For additional commands, e-mail: selenium-ide-users-help@openqa.org
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-can-i-perform-Data-driven-testing-with-selenium.-tp14289583p26494707.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26482063</id>
	<title>Selenium and SVG ?</title>
	<published>2009-11-23T09:03:50Z</published>
	<updated>2009-11-23T09:03:50Z</updated>
	<author>
		<name>The love dada</name>
	</author>
	<content type="html">Is it possible to capture and replay a test case for a web application that uses SVG ?
&lt;br&gt;&lt;br&gt;Part of the test would be clicking on SVG hyperlinks. I can't get this to work at the moment.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Selenium-and-SVG---tp26482063p26482063.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26476906</id>
	<title>selenium-grid-1.0.4 and &quot;SeleniumException: Timed out&quot; (need help badly :( )</title>
	<published>2009-11-23T04:07:26Z</published>
	<updated>2009-11-23T04:07:26Z</updated>
	<author>
		<name>selcdp</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;I am relatively new to selenium grid and currently trying to use the selenium-grid-1.0.4 for my test suit.
&lt;br&gt;&lt;br&gt;I have worked with selenium rc and seems to be working at my end also the internet connection is good.
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;But when i am trying to run the examples in the above elenium gridmy tests are not at all getting executed.
&lt;br&gt;&lt;br&gt;Instead all the sessions are always getting timed out with the following exception. I also tried to change in the time out values in the java code, compiled it and ran the test suit again but still the problem persists.
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;com.thoughtworks.selenium.SeleniumException: Timed out after 120000ms &amp;nbsp; &amp;nbsp; &amp;nbsp;at com.thoughtworks.selenium.HttpCommandProcessor.throwAssertionFailureExceptionOrError(HttpCommandProcessor.java:97) &amp;nbsp; &amp;nbsp; &amp;nbsp;at com.thoughtworks.selenium.HttpCommandProcessor.doCommand(HttpCommandProcessor.java:91) &amp;nbsp; &amp;nbsp; &amp;nbsp;at com.thoughtworks.selenium.DefaultSelenium.open(DefaultSelenium.java:335) &amp;nbsp; &amp;nbsp; &amp;nbsp;at com.thoughtworks.selenium.grid.demo.GoogleImageTestBase.runFlickrScenario(GoogleImageTestBase.java:16) &amp;nbsp; &amp;nbsp; &amp;nbsp;at com.thoughtworks.selenium.grid.demo.WebTestForASingleBrowser.domme(WebTestForASingleBrowser.java:52) &amp;nbsp; &amp;nbsp; &amp;nbsp;at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650) &amp;nbsp; &amp;nbsp; &amp;nbsp;at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675) &amp;nbsp; &amp;nbsp; &amp;nbsp;at java.lang.Thread.run(Thread.java:595) ... Removed 11 stack frames
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Any comment with this regard will be really a great help.
&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;Thanking You.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium---Devel-f14088.html&quot; embed=&quot;fixTarget[14088]&quot; target=&quot;_top&quot; &gt;Selenium - Devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/selenium-grid-1.0.4-and-%22SeleniumException%3A-Timed-out%22-%28need-help-badly-%3A%28-%29-tp26476906p26476906.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26471588</id>
	<title>Re: Timed out error 5000ms</title>
	<published>2009-11-22T17:40:04Z</published>
	<updated>2009-11-22T17:40:04Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">this may that your are running your script in &amp;quot;fast&amp;quot; mode..Could you please share your complete IDE script? that would help me to understand what might be causing this error.
&lt;br&gt;&lt;br&gt;thanks.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Timed-out-error-5000ms-tp25675100p26471588.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26471498</id>
	<title>Re: ClickAt(...) Sliderbar</title>
	<published>2009-11-22T17:25:08Z</published>
	<updated>2009-11-22T17:25:08Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">Hi Lim, just curious if you were able to figure out the solution for this problem? I tried many ways to verify your site using Selenium IDE, but not successful. After clicking on the &amp;quot;next&amp;quot; link on home page, a bunch of website names are loaded in next page in a table, but all of them are having &amp;quot;ids&amp;quot; generated dynamically - which is why I wasn't able to figure out a solution using IDE.Please do post here if you have got a solution for this problem.
&lt;br&gt;&lt;br&gt;thanks.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ClickAt%28...%29-Sliderbar-tp26209646p26471498.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26454687</id>
	<title>Re: get value from a excel file.</title>
	<published>2009-11-21T02:00:20Z</published>
	<updated>2009-11-21T02:00:20Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">Check this out - 
&lt;br&gt;&lt;a href=&quot;http://clearspace.openqa.org/message/69013&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://clearspace.openqa.org/message/69013&lt;/a&gt;&lt;br&gt;&lt;br&gt;thanks.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/get-value-from-a-excel-file.-tp26421475p26454687.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26450767</id>
	<title>Re: get value from a excel file.</title>
	<published>2009-11-20T13:45:12Z</published>
	<updated>2009-11-20T13:45:12Z</updated>
	<author>
		<name>anshulyadav1</name>
	</author>
	<content type="html">Can u help me in doing this in selenium RC, I am new to selenium and I am not getting this i am trying this from 2 weeks.... thank u in advance
&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;anshulyadav1 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;I want to run a test for 10 times but everytime I run I want to change text that I want to type. for example : i am entering a email id so everytime i run this test i want to run with different email ids. all the email ids are stored in excel file or a text file . I am using selenium Ide. Plz reply ASAP.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/get-value-from-a-excel-file.-tp26421475p26450767.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26450751</id>
	<title>Re: store text from html page</title>
	<published>2009-11-20T13:43:10Z</published>
	<updated>2009-11-20T13:43:10Z</updated>
	<author>
		<name>anshulyadav1</name>
	</author>
	<content type="html">Hey Can u tell me how to do it in selenium RC....
&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;anshulyadav1 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Hey I want to store text from a html page to a txt file or excel file.
&lt;br&gt;for example: Group_ID=/456722/EmailofCustomer I want to store this 456722 number to either a text file excel file or a datbase. I am using selenium IDE. plz reply ASAP
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/store-text-from-html-page-tp26421473p26450751.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26422309</id>
	<title>Re: How to record drag and drop with Selenium</title>
	<published>2009-11-19T20:49:57Z</published>
	<updated>2009-11-19T20:49:57Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">Did you try dragdrop method? Here is the description from Selenium reference - 
&lt;br&gt;&lt;br&gt;dragdrop ( locator,movementsString )
&lt;br&gt;&amp;nbsp; &amp;nbsp; Drags an element a certain distance and then drops it Beware of &lt;a href=&quot;http://jira.openqa.org/browse/SEL-280&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jira.openqa.org/browse/SEL-280&lt;/a&gt;, which will lead some event handlers to get null event arguments. Read the bug for more details, including a workaround.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; Arguments:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; * locator - an element locator
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; * movementsString - offset in pixels from the current location to which the element should be moved, e.g., &amp;quot;+70,-300&amp;quot;
&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;annymmor wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;I have a grid.I want to record the drag and drop from the grid to the tree view.The test works almost for all elemets except for the first element in my grid.Does anyone know which is the problem and how I can resolve it?
&lt;br&gt;Thanks a lot
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-record-drag-and-drop-with-Selenium-tp26407016p26422309.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26422307</id>
	<title>Re: store text from html page</title>
	<published>2009-11-19T20:46:51Z</published>
	<updated>2009-11-19T20:46:51Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">I doubt if you can create a text file from selenium IDE..for sure, you could do this using Selenium RC.
&lt;br&gt;&lt;br&gt;thanks.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/store-text-from-html-page-tp26421473p26422307.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26422306</id>
	<title>Re: get value from a excel file.</title>
	<published>2009-11-19T20:45:12Z</published>
	<updated>2009-11-19T20:45:12Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">Couple of options that I know - 
&lt;br&gt;1.You can't do data driven testing using Selenium IDE, but Selenium RC supports this.
&lt;br&gt;2.You can probably write a simple vb app (or) an excel macro which could read your sample test - and then could create multiple tests based on your test data in excel sheet.
&lt;br&gt;3. (or) you can try using hrmes selenium IDE framework &lt;a href=&quot;http://sourceforge.net/projects/hrmes/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;- http://sourceforge.net/projects/hrmes/&lt;/a&gt;&lt;br&gt;&lt;br&gt;thanks, Kiran. 
&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;anshulyadav1 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;I want to run a test for 10 times but everytime I run I want to change text that I want to type. for example : i am entering a email id so everytime i run this test i want to run with different email ids. all the email ids are stored in excel file or a text file . I am using selenium Ide. Plz reply ASAP.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/get-value-from-a-excel-file.-tp26421475p26422306.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26421475</id>
	<title>get value from a excel file.</title>
	<published>2009-11-19T12:51:41Z</published>
	<updated>2009-11-19T12:51:41Z</updated>
	<author>
		<name>anshulyadav1</name>
	</author>
	<content type="html">I want to run a test for 10 times but everytime I run I want to change text that I want to type. for example : i am entering a email id so everytime i run this test i want to run with different email ids. all the email ids are stored in excel file or a text file . I am using selenium Ide. Plz reply ASAP.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/get-value-from-a-excel-file.-tp26421475p26421475.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26421473</id>
	<title>store text from html page</title>
	<published>2009-11-19T12:46:50Z</published>
	<updated>2009-11-19T12:46:50Z</updated>
	<author>
		<name>anshulyadav1</name>
	</author>
	<content type="html">Hey I want to store text from a html page to a txt file or excel file.
&lt;br&gt;for example: Group_ID=/456722/EmailofCustomer I want to store this 456722 number to either a text file excel file or a datbase. I am using selenium IDE. plz reply ASAP&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/store-text-from-html-page-tp26421473p26421473.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&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium---Users-f14084.html&quot; embed=&quot;fixTarget[14084]&quot; target=&quot;_top&quot; &gt;Selenium - Users&lt;/a&gt;&lt;/p&gt;</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-26421268</id>
	<title>problem with xpath in Selenium RC. Can't click</title>
	<published>2009-11-19T02:41:17Z</published>
	<updated>2009-11-19T02:41:17Z</updated>
	<author>
		<name>tuanvinh1008</name>
	</author>
	<content type="html">Hi everyone,
&lt;br&gt;I used selenium RC with python language, and i have problem identify locator of object. I have 2 links on a table with code HTML
&lt;br&gt;1.
&lt;br&gt;&lt;a class=&quot;button button_edit&quot; href=&quot;acct_edit?sessionID=d9PM79KCPOuh2avd&amp;a=aaa&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&amp;nbsp;&lt;/a&gt;&lt;br&gt;&lt;br&gt;2.
&lt;br&gt;&lt;a href=&quot;javascript:acct_del('cus_?sessionID=d9PM79KCPOuh2avd','aaa');&quot; class=&quot;button button_remove&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;&amp;nbsp;&lt;/a&gt;&lt;br&gt;&lt;br&gt;And I used Selenium IDE to identify locator of 2 links. And I have 2 locators:
&lt;br&gt;1. 
&lt;br&gt;locator1 = &amp;quot;//a[matches(@href, 'acct_edit\?sessionID=[\w]*&amp;a=&amp;quot; + Name + &amp;quot;')]&amp;quot;
&lt;br&gt;With Name = aaa
&lt;br&gt;&lt;br&gt;2.
&lt;br&gt;locator2 = &amp;quot;//a[matches(@href, \&amp;quot;javascript:acct_del('cus\?sessionID=[\w]*','&amp;quot; + name + &amp;quot;');\&amp;quot;)]&amp;quot;
&lt;br&gt;with name = aaa
&lt;br&gt;&lt;br&gt;&lt;br&gt;And I playback with 2 locators only locator1 executed well. and locator2 is not found
&lt;br&gt;&lt;br&gt;I don't know what happend. Please help me...&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium---Devel-f14088.html&quot; embed=&quot;fixTarget[14088]&quot; target=&quot;_top&quot; &gt;Selenium - Devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/problem-with-xpath-in-Selenium-RC.-Can%27t-click-tp26421268p26421268.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26407016</id>
	<title>How to record drag and drop with Selenium</title>
	<published>2009-11-18T04:35:28Z</published>
	<updated>2009-11-18T04:35:28Z</updated>
	<author>
		<name>annymmor</name>
	</author>
	<content type="html">I have a grid.I want to record the drag and drop from the grid to the tree view.The test works almost for all elemets except for the first element in my grid.Does anyone know which is the problem and how I can resolve it?
&lt;br&gt;Thanks a lot&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-record-drag-and-drop-with-Selenium-tp26407016p26407016.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26404560</id>
	<title>Re: How to get values from updated table?</title>
	<published>2009-11-18T01:09:57Z</published>
	<updated>2009-11-18T01:09:57Z</updated>
	<author>
		<name>RAHUL PAIKE</name>
	</author>
	<content type="html">Thanks yaar
&lt;br&gt;&lt;quote author=&quot;kjaladi&quot;&gt;&lt;br&gt;you can do this using getEval function...and compare the xpaths of those table values. I will try to provide you a working example soon.
&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;RAHUL PAIKE wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hii Friends,
&lt;br&gt;&lt;br&gt;Scenario is:
&lt;br&gt;&lt;br&gt;I ve filled up form and respective changes updated in form and table grid also.
&lt;br&gt;Now I want to cross check values in the grid with those present in the forms.
&lt;br&gt;&lt;br&gt;thanks,
&lt;br&gt;Rahul
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;/quote&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-get-values-from-updated-table--tp26313952p26404560.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26402386</id>
	<title>Re: Testing elements with dynamic id</title>
	<published>2009-11-17T20:29:39Z</published>
	<updated>2009-11-17T20:29:39Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">Please check this out - &lt;a href=&quot;http://seleniumhq.org/docs/06_test_design_considerations.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://seleniumhq.org/docs/06_test_design_considerations.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;this has some good information on how to identify dynamic objects on web pages.
&lt;br&gt;&lt;br&gt;thanks.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Testing-elements-with-dynamic-id-tp26221260p26402386.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26402363</id>
	<title>Re: incorrect url in selenium test</title>
	<published>2009-11-17T20:25:06Z</published>
	<updated>2009-11-17T20:25:06Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">Could you copy paste your complete URL in IDE and give a try? (or) give me your complete URL...Otherwise - I have tried this long url test on msn (just for testing), it is all working for me - 
&lt;br&gt;&lt;br&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;
&lt;br&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Strict//EN&amp;quot; &amp;quot;&lt;a href=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;html xmlns=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot; xml:lang=&amp;quot;en&amp;quot; lang=&amp;quot;en&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;head profile=&amp;quot;&lt;a href=&quot;http://selenium-ide.openqa.org/profiles/test-case&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://selenium-ide.openqa.org/profiles/test-case&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=UTF-8&amp;quot; /&amp;gt;
&lt;br&gt;&amp;lt;link rel=&amp;quot;selenium.base&amp;quot; href=&amp;quot;&lt;a href=&quot;http://www.msn.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.msn.com/&lt;/a&gt;&amp;quot; /&amp;gt;
&lt;br&gt;&amp;lt;title&amp;gt;New Test&amp;lt;/title&amp;gt;
&lt;br&gt;&amp;lt;/head&amp;gt;
&lt;br&gt;&amp;lt;body&amp;gt;
&lt;br&gt;&amp;lt;table cellpadding=&amp;quot;1&amp;quot; cellspacing=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;thead&amp;gt;
&lt;br&gt;&amp;lt;tr&amp;gt;&amp;lt;td rowspan=&amp;quot;1&amp;quot; colspan=&amp;quot;3&amp;quot;&amp;gt;New Test&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&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;open&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;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;click&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;link=exact:Schwarzenegger &amp;amp; troops?&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;pause&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;2000&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;clickAndWait&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;//div[@id='results_container']/div[2]/div/div/h2/div/a/strong&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;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;
&lt;br&gt;&amp;lt;/body&amp;gt;
&lt;br&gt;&amp;lt;/html&amp;gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/incorrect-url-in-selenium-test-tp26230910p26402363.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26402340</id>
	<title>Re: How to get values from updated table?</title>
	<published>2009-11-17T20:21:13Z</published>
	<updated>2009-11-17T20:21:13Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">you can do this using getEval function...and compare the xpaths of those table values. I will try to provide you a working example soon.
&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;RAHUL PAIKE wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hii Friends,
&lt;br&gt;&lt;br&gt;Scenario is:
&lt;br&gt;&lt;br&gt;I ve filled up form and respective changes updated in form and table grid also.
&lt;br&gt;Now I want to cross check values in the grid with those present in the forms.
&lt;br&gt;&lt;br&gt;thanks,
&lt;br&gt;Rahul
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-get-values-from-updated-table--tp26313952p26402340.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26402323</id>
	<title>Re: realtime +2 minutes</title>
	<published>2009-11-17T20:18:29Z</published>
	<updated>2009-11-17T20:18:29Z</updated>
	<author>
		<name>kjaladi</name>
	</author>
	<content type="html">you mean in the selenium IDE log...? Sorry, I just didn't get your question.&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/realtime-%2B2-minutes-tp26341493p26402323.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26385101</id>
	<title>Re: Permission denied to get property Location.href</title>
	<published>2009-11-16T22:36:37Z</published>
	<updated>2009-11-16T22:36:37Z</updated>
	<author>
		<name>ryan_shillington</name>
	</author>
	<content type="html">I had this problem when trying to get YAHOO.util.History (from the Yahoo UI or YUI project) to work on my site. &amp;nbsp;
&lt;br&gt;&lt;br&gt;The problem you're having is described here:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://seleniumhq.org/docs/05_selenium_rc.html#the-same-origin-policy&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://seleniumhq.org/docs/05_selenium_rc.html#the-same-origin-policy&lt;/a&gt;&lt;br&gt;&lt;br&gt;I swear, I read that doc ten times, and although it describes exactly this problem, it doesn't contain the details of the two solutions provided.
&lt;br&gt;&lt;br&gt;To use option [1] that they describe, add &amp;quot;-proxyInjectionMode&amp;quot; as a parameter when starting the selenium-core jar. &amp;nbsp;To use option [2], try using &amp;quot;iehta&amp;quot;. &amp;nbsp;This paragraph in the link above seems really important:
&lt;br&gt;&lt;br&gt;&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; In Selenium-RC 1.0 beta 2 and later use *firefox or *iexplore for the run mode. In earlier versions, including Selenium-RC 1.0 beta 1, use *chrome or *iehta, for the run mode. Using these run modes, you will not need to install any special security certificates; Selenium-RC will handle it for you.
&lt;br&gt;&lt;/i&gt;&lt;br&gt;You'll want to pass that in when you initialize Selenium. &amp;nbsp;So in Ruby I create Selenium by doing:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;i&gt;@selenium = Selenium::SeleniumDriver.new(&amp;quot;localhost&amp;quot;, 4444, &amp;quot;*firefox&amp;quot;, &amp;quot;&lt;a href=&quot;http://www.usedisbetter.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.usedisbetter.com/&lt;/a&gt;&amp;quot;, 10000);&lt;/i&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;R-24 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;I received the &amp;quot;Permission denied to get property Location.href&amp;quot; error message when trying to load my website under test. The website opens in the lower pain of the TestRunner, but the test seems to fail immediately. 
&lt;br&gt;Does anyone know how to fix this problem?
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium---Devel-f14088.html&quot; embed=&quot;fixTarget[14088]&quot; target=&quot;_top&quot; &gt;Selenium - Devel&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Permission-denied-to-get-property-Location.href-tp8081383p26385101.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26343196</id>
	<title>Re: &quot;Window does not exist&quot; when returning from popup</title>
	<published>2009-11-13T12:38:12Z</published>
	<updated>2009-11-13T12:38:12Z</updated>
	<author>
		<name>Ship</name>
	</author>
	<content type="html">Found the solution &amp;nbsp;-- &amp;nbsp;wrong syntax for the select.window statement (below). The following works: 
&lt;br&gt;selenium.selectWindow(null);
&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;Ship wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Greetings - sorry if this has been answered already.... I couldn't find a solution that works.
&lt;br&gt;&lt;br&gt;I'm recording scripts in IDE and exporting to Java(Junit). Our app launches a popup window and I get the following error when returning from the popup: &amp;nbsp;
&lt;br&gt;&lt;br&gt;com.thoughtworks.selenium.SeleniumException: ERROR: Window does not exist. 
&lt;br&gt;&lt;br&gt;Here's the script: (Note the two commented lines below did not resolve the problem).
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; selenium.click(&amp;quot;//input[@value='Current Alerts']&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; selenium.waitForPopUp(&amp;quot;Alerts&amp;quot;, &amp;quot;30000&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; selenium.selectWindow(&amp;quot;name=Alerts&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; verifyTrue(selenium.isTextPresent(&amp;quot;Our records show you are due for the following:&amp;quot;));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; selenium.click(&amp;quot;link=Close this window&amp;quot;);
&lt;br&gt;//		selenium.wait(30000);
&lt;br&gt;//		selenium.waitForPageToLoad(&amp;quot;60000&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; selenium.selectWindow(&amp;quot;name=null&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; selenium.click(&amp;quot;link=Log off&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; selenium.waitForPageToLoad(&amp;quot;60000&amp;quot;);
&lt;br&gt;&lt;br&gt;&lt;br&gt;Any ideas? 
&lt;br&gt;&lt;br&gt;Thanks!
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/%22Window-does-not-exist%22-when-returning-from-popup-tp26341861p26343196.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26341861</id>
	<title>&quot;Window does not exist&quot; when returning from popup</title>
	<published>2009-11-13T11:11:35Z</published>
	<updated>2009-11-13T11:11:35Z</updated>
	<author>
		<name>Ship</name>
	</author>
	<content type="html">Greetings - sorry if this has been answered already.... I couldn't find a solution that works.
&lt;br&gt;&lt;br&gt;I'm recording scripts in IDE and exporting to Java(Junit). Our app launches a popup window and I get the following error when returning from the popup: &amp;nbsp;
&lt;br&gt;&lt;br&gt;com.thoughtworks.selenium.SeleniumException: ERROR: Window does not exist. 
&lt;br&gt;&lt;br&gt;Here's the script: (Note the two commented lines below did not resolve the problem).
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; selenium.click(&amp;quot;//input[@value='Current Alerts']&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; selenium.waitForPopUp(&amp;quot;Alerts&amp;quot;, &amp;quot;30000&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; selenium.selectWindow(&amp;quot;name=Alerts&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; verifyTrue(selenium.isTextPresent(&amp;quot;Our records show you are due for the following:&amp;quot;));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; selenium.click(&amp;quot;link=Close this window&amp;quot;);
&lt;br&gt;//		selenium.wait(30000);
&lt;br&gt;//		selenium.waitForPageToLoad(&amp;quot;60000&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; selenium.selectWindow(&amp;quot;name=null&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; selenium.click(&amp;quot;link=Log off&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; selenium.waitForPageToLoad(&amp;quot;60000&amp;quot;);
&lt;br&gt;&lt;br&gt;&lt;br&gt;Any ideas? 
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/%22Window-does-not-exist%22-when-returning-from-popup-tp26341861p26341861.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26341633</id>
	<title>Re: realtime +2 minutes</title>
	<published>2009-11-13T10:58:44Z</published>
	<updated>2009-11-13T10:58:44Z</updated>
	<author>
		<name>mentax</name>
	</author>
	<content type="html">It should be as 11-06-2009 7:11 PM and after add to text row
&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;mentax wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Whether there is a simple solution if it is necessary for me that real time + 2 minutes on Selenium IDE automatically?
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/realtime-%2B2-minutes-tp26341493p26341633.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26341493</id>
	<title>realtime +2 minutes</title>
	<published>2009-11-13T10:50:14Z</published>
	<updated>2009-11-13T10:50:14Z</updated>
	<author>
		<name>mentax</name>
	</author>
	<content type="html">Whether there is a simple solution if it is necessary for me that real time + 2 minutes on Selenium IDE automatically?
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/realtime-%2B2-minutes-tp26341493p26341493.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;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium---Users-f14084.html&quot; embed=&quot;fixTarget[14084]&quot; target=&quot;_top&quot; &gt;Selenium - Users&lt;/a&gt;&lt;/p&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-26313952</id>
	<title>How to get values from updated table?</title>
	<published>2009-11-11T22:04:46Z</published>
	<updated>2009-11-11T22:04:46Z</updated>
	<author>
		<name>RAHUL PAIKE</name>
	</author>
	<content type="html">Hii Friends,
&lt;br&gt;&lt;br&gt;Scenario is:
&lt;br&gt;&lt;br&gt;I ve filled up form and respective changes updated in form and table grid also.
&lt;br&gt;Now I want to cross check values in the grid with those present in the forms.
&lt;br&gt;&lt;br&gt;thanks,
&lt;br&gt;Rahul&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-get-values-from-updated-table--tp26313952p26313952.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26230910</id>
	<title>incorrect url in selenium test</title>
	<published>2009-11-06T14:10:01Z</published>
	<updated>2009-11-06T14:10:01Z</updated>
	<author>
		<name>zelenka</name>
	</author>
	<content type="html">Hi.
&lt;br&gt;&lt;br&gt;I wonder if I hit a bug. My test clickAndWaits a link and times out. When I rightclick on the link on the webpage, selenium offers an option to open the link, but it states a wrong (truncated) URL. It says
&lt;br&gt;&lt;br&gt;open /portal/ui/services/ethernetE2E/create?execution=e2s7
&lt;br&gt;&lt;br&gt;but the actual URL for the link is
&lt;br&gt;&lt;br&gt;/portal/ui/services/ethernetE2E/create?execution=e2s7&amp;_eventId=showAll
&lt;br&gt;&lt;br&gt;Does anyone know what could be done to remedy this?
&lt;br&gt;&lt;br&gt;Thanks so much!
&lt;br&gt;z&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/incorrect-url-in-selenium-test-tp26230910p26230910.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;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium---Users-f14084.html&quot; embed=&quot;fixTarget[14084]&quot; target=&quot;_top&quot; &gt;Selenium - Users&lt;/a&gt;&lt;/p&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-26221260</id>
	<title>Testing elements with dynamic id</title>
	<published>2009-11-05T12:25:45Z</published>
	<updated>2009-11-05T12:25:45Z</updated>
	<author>
		<name>annymmor</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;I am trying to make a test for a web page with dynamic parameters based on GWT application.
&lt;br&gt;Above I describe what happens
&lt;br&gt;So what I am trying to do is to record a page and than play it again.
&lt;br&gt;The page has every time another xpath.It has also 4 elements with the same name-&amp;gt;&amp;quot;Go to&amp;quot;.
&lt;br&gt;If I select a &amp;quot;go to&amp;quot; link, and after finish recording I play the test.The element which I click on during the test doesn't exist on the page becuase it has a different ID.
&lt;br&gt;That's all!
&lt;br&gt;How can I test with SELENIUM a page with dynamic values for elements?
&lt;br&gt;Thanks,
&lt;br&gt;Romina&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Testing-elements-with-dynamic-id-tp26221260p26221260.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26213633</id>
	<title>Re: Not able select the pop up window</title>
	<published>2009-11-05T04:37:42Z</published>
	<updated>2009-11-05T04:37:42Z</updated>
	<author>
		<name>Bhargav</name>
	</author>
	<content type="html">hi ,
&lt;br&gt;&lt;br&gt;Instead of giving the title as the identifier to select a popup window, use Selenium IDE to record those actions first &amp; use the ID recorded in the selenium IDE .Hope this works for your issue.
&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;Eleo-3 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi 
&lt;br&gt;i am using a devlopment testing framework called Jameleon which is in built using a SeleniumRC.
&lt;br&gt;the problem is like this, i m clicking on an image that will results to popup, but while i m trying to select
&lt;br&gt;popup window i m getting exception like window does not exist
&lt;br&gt;&lt;br&gt;my plugins are like this.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;otplugin-ClickImage
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; functionId=&amp;quot;Select Performer&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Name=&amp;quot;//img[@alt='Select Performer']&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; HTMLAttribute=&amp;quot;alt=Select Performer&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;	 	 &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;otplugin-Wait
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; functionId=&amp;quot;WaitForPopUp&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; waitForElementType=&amp;quot;POPUP&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; waitForElementIdentifier=&amp;quot;Select performer&amp;quot;
&lt;br&gt;&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; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;otplugin-SelectWindow
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; functionId=&amp;quot;Select Select performer&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Title=&amp;quot;Select performer&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /&amp;gt;
&lt;br&gt;&lt;br&gt;i m getting the following exception
&lt;br&gt;&lt;br&gt;com.thoughtworks.selenium.SeleniumException: ERROR: Window does not exist
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.thoughtworks.selenium.HttpCommandProcessor.doCommand(HttpCommandProcessor.java:73)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at com.thoughtworks.selenium.DefaultSelenium.selectWindow(DefaultSelenium.java:230)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sf.jameleon.plugin.opentext.tags.general.actions.SelectWindowTag.testBlock(SelectWindowTag.java:42)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sf.jameleon.function.FunctionTag.doTag(FunctionTag.java:261)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:186)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sf.jameleon.SessionTag.doTag(SessionTag.java:189)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:186)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sf.jameleon.PostconditionTag.doTag(PostconditionTag.java:36)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:95)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.commons.jelly.TagSupport.invokeBody(TagSupport.java:186)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sf.jameleon.TestCaseTag.invokeChildren(TestCaseTag.java:658)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sf.jameleon.TestCaseTag$1.run(TestCaseTag.java:868)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sf.jameleon.TestCaseTag.executeBody(TestCaseTag.java:929)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sf.jameleon.TestCaseTag.executeNoCSV(TestCaseTag.java:866)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sf.jameleon.TestCaseTag.doTag(TestCaseTag.java:815)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:262)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.commons.jelly.JellyContext.runScript(JellyContext.java:706)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.commons.jelly.JellyContext.runScript(JellyContext.java:670)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.apache.commons.jelly.JellyContext.runScript(JellyContext.java:579)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sf.jameleon.ExecuteTestCase.runScript(ExecuteTestCase.java:271)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at net.sf.jameleon.ui.TestCasePane$ExecuteButtonAction$2.run(TestCasePane.java:293)
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: selenium-ide-users-unsubscribe@openqa.org
&lt;br&gt;For additional commands, e-mail: selenium-ide-users-help@openqa.org
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/Selenium-IDE---Users-f14086.html&quot; embed=&quot;fixTarget[14086]&quot; target=&quot;_top&quot; &gt;Selenium IDE - Users&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Not-able-select-the-pop-up-window-tp12653534p26213633.html" />
</entry>

</feed>
