<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>wax Forum Rss Feed</title><link>http://www.codeplex.com/wax/Thread/List.aspx</link><description>wax Forum Rss Description</description><item><title>New Post: WatiNLibrary for Robot Framework - based on Wax?</title><link>http://wax.codeplex.com/discussions/248639</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;FYI, I started project for that now, at&lt;/p&gt;
&lt;p&gt;&lt;a href="http://code.google.com/p/robotframework-watinlibrary/"&gt;http://code.google.com/p/robotframework-watinlibrary/&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><author>Mangar00</author><pubDate>Sat, 19 Mar 2011 06:30:35 GMT</pubDate><guid isPermaLink="false">New Post: WatiNLibrary for Robot Framework - based on Wax? 20110319063035A</guid></item><item><title>New Post: WatiNLibrary for Robot Framework - based on Wax?</title><link>http://wax.codeplex.com/discussions/248639</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Wax is a great tool/framework for WatiN. But for more integration of different automation (web &amp;#43; desktop/mobile, etc.) something like Robot Framework (www.robotframework.org) may be more ideal.&lt;/p&gt;
&lt;p&gt;I was thinking perhaps the work gone into Wax could be adapted for a &amp;quot;WatiNLibrary&amp;quot; for Robot Framework, with an library API similar to that of the SeleniumLibrary for Robot Framework (&lt;a href="http://code.google.com/p/robotframework-seleniumlibrary/"&gt;http://code.google.com/p/robotframework-seleniumlibrary/&lt;/a&gt;)
 so users can switch over to whichever tool works better for them easily.&lt;/p&gt;
&lt;p&gt;Robot Framework is based in Python and .NET based test libraries can be implemented with IronPython (currently experimental support) or as remote library that communicates over XML-RPC. I've built a generic library interface using XML-RPC so that one can
 create any .NET test library for Robot Framework by just following the framework's specs.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://code.google.com/p/sharprobotremoteserver/"&gt;http://code.google.com/p/sharprobotremoteserver/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I'm planning to eventually make &amp;amp; release such a &amp;quot;WatiNLibrary&amp;quot; but could definitely use some help or input from others. Contact me if interested, I haven't started a project page for it yet.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>Mangar00</author><pubDate>Sun, 06 Mar 2011 21:39:31 GMT</pubDate><guid isPermaLink="false">New Post: WatiNLibrary for Robot Framework - based on Wax? 20110306093931P</guid></item><item><title>New Post: Port or enhance for Selenium support?</title><link>http://wax.codeplex.com/discussions/248638</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Would be interesting to see a Wax port, or enhancing Wax to add support, for Selenium, so that instead of using WatiN, Wax tests can drive Selenium (via Selenium's C# API).&lt;/p&gt;
&lt;p&gt;The only thing similar to that right now for Selenium (that I know of)&amp;nbsp;is SeleniumLibrary for Robot Framework -&amp;nbsp;&lt;a href="http://code.google.com/p/robotframework-seleniumlibrary/"&gt;http://code.google.com/p/robotframework-seleniumlibrary/&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>Mangar00</author><pubDate>Sun, 06 Mar 2011 21:32:32 GMT</pubDate><guid isPermaLink="false">New Post: Port or enhance for Selenium support? 20110306093232P</guid></item><item><title>New Post: access elements in a frame</title><link>http://wax.codeplex.com/Thread/View.aspx?ThreadId=30282</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I finished this function.&lt;/p&gt;
&lt;p&gt;Please refer http://wax.codeplex.com/Thread/View.aspx?ThreadId=55757&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>Marken</author><pubDate>Fri, 23 Apr 2010 02:06:25 GMT</pubDate><guid isPermaLink="false">New Post: access elements in a frame 20100423020625A</guid></item><item><title>New Post: Can you click on a link by using Find.ByText?</title><link>http://wax.codeplex.com/Thread/View.aspx?ThreadId=55757</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I change the code FindByHref() in FindMethod.cs.&lt;/p&gt;
&lt;p&gt;context.Browser.Element(WatiN.Core.Find.ByUrl(new Regex(this.Value)))&lt;/p&gt;
&lt;p&gt;you can try.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>Marken</author><pubDate>Fri, 23 Apr 2010 02:03:50 GMT</pubDate><guid isPermaLink="false">New Post: Can you click on a link by using Find.ByText? 20100423020350A</guid></item><item><title>New Post: I change FindMethod behavior.</title><link>http://wax.codeplex.com/Thread/View.aspx?ThreadId=210252</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I recompile WAX with WatiN 2.0 RC1.&lt;/p&gt;
&lt;p&gt;I find that WAX can't find the element in frames.&lt;/p&gt;
&lt;p&gt;So I change some code in FindMethod.cs.&lt;/p&gt;
&lt;p&gt;Here is a example for FindById：&lt;/p&gt;
&lt;p&gt;
&lt;div style="color:black;background-color:white"&gt;
&lt;pre&gt;&lt;span style="color:blue"&gt;var&lt;/span&gt; docs = FindAllDocuments(context);
            WatiN.Core.Element elem = &lt;span style="color:blue"&gt;null&lt;/span&gt;;
            &lt;span style="color:blue"&gt;foreach&lt;/span&gt; (WatiN.Core.Document d &lt;span style="color:blue"&gt;in&lt;/span&gt; docs)
            {
                elem = d.Element(WatiN.Core.Find.ById(&lt;span style="color:blue"&gt;this&lt;/span&gt;.Value));
                &lt;span style="color:blue"&gt;if&lt;/span&gt; (elem != &lt;span style="color:blue"&gt;null&lt;/span&gt; &amp;amp;&amp;amp; elem.Exists)
                    &lt;span style="color:blue"&gt;break&lt;/span&gt;;
            }            
            &lt;span style="color:blue"&gt;return&lt;/span&gt; elem;
&lt;br&gt;&lt;pre&gt;&lt;div style="color:black;background-color:white"&gt;&lt;pre&gt; &lt;span style="color:blue"&gt;private&lt;/span&gt; List FindAllDocuments(IExecutionContext context)&lt;br&gt;        {&lt;br&gt;            &lt;span style="color:blue"&gt;var&lt;/span&gt; docs = &lt;span style="color:blue"&gt;new&lt;/span&gt; List&amp;lt;WatiN.Core.Document&amp;gt;();&lt;br&gt;            &lt;span style="color:green"&gt;// First find all frames&lt;/span&gt;
            FindAllFrames(context.Browser.Frames, docs);
            docs.Add(context.Browser); &lt;span style="color:green"&gt;// Then add browser self&lt;/span&gt;
            &lt;span style="color:blue"&gt;return&lt;/span&gt; docs;&lt;br&gt;        }&lt;br&gt;&lt;br&gt;&lt;span style="color:blue"&gt;private&lt;/span&gt; &lt;span style="color:blue"&gt;void&lt;/span&gt; FindAllFrames(WatiN.Core.FrameCollection frames, List&amp;lt;WatiN.Core.Document&amp;gt; docs)&lt;br&gt;        {&lt;br&gt;            &lt;span style="color:blue"&gt;if&lt;/span&gt; (frames.Count == 0)&lt;br&gt;                &lt;span style="color:blue"&gt;return&lt;/span&gt;;&lt;br&gt;            &lt;span style="color:blue"&gt;foreach&lt;/span&gt; (WatiN.Core.Frame fm &lt;span style="color:blue"&gt;in&lt;/span&gt; frames)&lt;br&gt;            {&lt;br&gt;                docs.Add(fm);&lt;br&gt;                FindAllFrames(fm.Frames, docs);&lt;br&gt;            }&lt;br&gt;            &lt;span style="color:blue"&gt;return&lt;/span&gt;;            &lt;br&gt;        }&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/pre&gt;
&lt;/div&gt;
&lt;/pre&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;/p&gt;&lt;/div&gt;</description><author>Marken</author><pubDate>Fri, 23 Apr 2010 01:57:42 GMT</pubDate><guid isPermaLink="false">New Post: I change FindMethod behavior. 20100423015742A</guid></item><item><title>New Post: The file was of the incorrect type...no SSL support?</title><link>http://wax.codeplex.com/Thread/View.aspx?ThreadId=33569</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;i have faced the same problem once, but luckily the system warranty helped.&lt;/p&gt;
&lt;p&gt;&lt;span id=lblKeyword&gt;&lt;a href="http://www.papermoz.com/theses/"&gt;Custom Thesis&lt;/a&gt; | &lt;/span&gt;&lt;a href="http://www.papermoz.com/dissertations/"&gt;&lt;span id=lblKeyword&gt;Dissertation Help&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>kevinhill</author><pubDate>Tue, 16 Feb 2010 05:51:23 GMT</pubDate><guid isPermaLink="false">New Post: The file was of the incorrect type...no SSL support? 20100216055123A</guid></item><item><title>New Post: The file was of the incorrect type...no SSL support?</title><link>http://wax.codeplex.com/Thread/View.aspx?ThreadId=33569</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;i dont think there is any need of support ...&lt;/p&gt;
&lt;p&gt;&lt;span id=lblKeyword&gt;&lt;a href="http://www.papermoz.com/book-reports/"&gt;Custom Book Report&lt;/a&gt; | &lt;/span&gt;&lt;span id=lblKeyword&gt;&lt;a href="http://www.papermoz.com/research-papers/"&gt;Custom Research Paper&lt;/a&gt; | &lt;/span&gt;&lt;a href="http://www.papermoz.com/term-papers/"&gt;&lt;span id=lblKeyword&gt;Custom Term Paper&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>samanthacruise</author><pubDate>Tue, 16 Feb 2010 05:49:05 GMT</pubDate><guid isPermaLink="false">New Post: The file was of the incorrect type...no SSL support? 20100216054905A</guid></item><item><title>New Post: IE and .Net version compatibility</title><link>http://wax.codeplex.com/Thread/View.aspx?ThreadId=71058</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Thanks Ed, that solved my issue.&amp;nbsp; Your quick and accurate response was REALLY appreciated.&lt;/p&gt;&lt;/div&gt;</description><author>BigSkyClan</author><pubDate>Tue, 06 Oct 2009 15:55:14 GMT</pubDate><guid isPermaLink="false">New Post: IE and .Net version compatibility 20091006035514P</guid></item><item><title>New Post: IE and .Net version compatibility</title><link>http://wax.codeplex.com/Thread/View.aspx?ThreadId=71058</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Okay I think I found the solution to the problem you were having. Please download and install vs90_piaredist from the downloads page for this project (&lt;a href="http://wax.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=15264#DownloadId=86476"&gt;http://wax.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=15264#DownloadId=86476&lt;/a&gt;)&lt;/p&gt;&lt;/div&gt;</description><author>ewilde</author><pubDate>Tue, 06 Oct 2009 13:45:09 GMT</pubDate><guid isPermaLink="false">New Post: IE and .Net version compatibility 20091006014509P</guid></item><item><title>New Post: IE and .Net version compatibility</title><link>http://wax.codeplex.com/Thread/View.aspx?ThreadId=71058</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Pretty sure WaxRunner works with IE7, must be something else that is causing a problem. Can you post the full error message?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Regards Ed.&lt;/p&gt;&lt;/div&gt;</description><author>ewilde</author><pubDate>Tue, 06 Oct 2009 13:34:08 GMT</pubDate><guid isPermaLink="false">New Post: IE and .Net version compatibility 20091006013408P</guid></item><item><title>New Post: IE and .Net version compatibility</title><link>http://wax.codeplex.com/Thread/View.aspx?ThreadId=71058</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I have been trying to troubleshoot an install of Wax Runner on a Windows XP client.&amp;nbsp; Currently the client runs XP SP2 with IE7 and .Net 3.5.&amp;nbsp; When I attempt to run a known good excel test script, Wax Runner fails and spawns a series of about:blank windows, one for each test step.&amp;nbsp; The results pane notes that a file could not be found, &amp;quot;...could not load file or assembly &amp;quot;Microsoft.mshtml&amp;quot;.&amp;nbsp; The same script runs successfully on a different client machine, the only difference is the second client uses IE6.&amp;nbsp; Is there way to use this with IE7?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;&lt;/div&gt;</description><author>BigSkyClan</author><pubDate>Mon, 05 Oct 2009 21:36:17 GMT</pubDate><guid isPermaLink="false">New Post: IE and .Net version compatibility 20091005093617P</guid></item><item><title>New Post: Capturing ScreenShot</title><link>http://wax.codeplex.com/Thread/View.aspx?ThreadId=62914</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Am trying to capture the screenshot by using, cmd ID and cmd as cmdscreenshot and screenshot, but ran the test, a black image is getting created. Can anyone suggest me to correct this.&lt;/p&gt;
&lt;p&gt;Thanks.&lt;/p&gt;&lt;/div&gt;</description><author>sweet</author><pubDate>Mon, 20 Jul 2009 01:50:58 GMT</pubDate><guid isPermaLink="false">New Post: Capturing ScreenShot 20090720015058A</guid></item><item><title>New Post: How to capture results from waxrunner to input excel file</title><link>http://wax.codeplex.com/Thread/View.aspx?ThreadId=59381</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Is there any built-in methods to write results from waxrunner to input excel file?&lt;/p&gt;&lt;/div&gt;</description><author>taurean1305</author><pubDate>Fri, 12 Jun 2009 23:44:20 GMT</pubDate><guid isPermaLink="false">New Post: How to capture results from waxrunner to input excel file 20090612114420P</guid></item><item><title>New Post: Little help available for WAX </title><link>http://wax.codeplex.com/Thread/View.aspx?ThreadId=41590</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Try downloading the code, it has the documentation with the screen shots. &amp;nbsp;Use SVN to download it.&lt;/p&gt;&lt;/div&gt;</description><author>luisugaz</author><pubDate>Mon, 11 May 2009 18:52:01 GMT</pubDate><guid isPermaLink="false">New Post: Little help available for WAX  20090511065201P</guid></item><item><title>New Post: Can you click on a link by using Find.ByText?</title><link>http://wax.codeplex.com/Thread/View.aspx?ThreadId=55757</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I'm trying Wax and want to click on a link with no name (unfortunalty i don't control this). &amp;nbsp;I'm able to do this with C# but I want run this with Wax via Excel. &amp;nbsp;The link is this:&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;&amp;lt;&lt;span&gt;A&lt;/span&gt; &lt;span&gt;href&lt;/span&gt;=&lt;span&gt;&amp;quot;javascript:submitPage('new','');&amp;quot;&lt;/span&gt; &lt;span&gt;name&lt;/span&gt;=&lt;span&gt;&amp;quot;&amp;quot;&lt;/span&gt; &lt;span&gt;alt&lt;/span&gt;=&lt;span&gt;&amp;quot;&amp;quot;&lt;/span&gt;&amp;gt;&lt;/span&gt;New&lt;span&gt;&amp;lt;/&lt;span&gt;A&lt;/span&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;In C# with WatiN it works with this line&lt;/p&gt;
&lt;p&gt;_ie.Link(Find.ByText(&amp;quot;New&amp;quot;)).Click();&lt;/p&gt;
&lt;p&gt;Is there a comparable ByText? &amp;nbsp;I get an error with it. &amp;nbsp;Or is there a Link command.&lt;/p&gt;
&lt;p&gt;Thanks in advance.&lt;/p&gt;&lt;/div&gt;</description><author>luisugaz</author><pubDate>Fri, 08 May 2009 20:47:45 GMT</pubDate><guid isPermaLink="false">New Post: Can you click on a link by using Find.ByText? 20090508084745P</guid></item><item><title>New Post: Modal Dialogs in WAX</title><link>http://www.codeplex.com/wax/Thread/View.aspx?ThreadId=46816</link><description>&lt;div style="line-height: normal;"&gt;maybe this can help you&lt;br&gt;
&lt;br&gt;
Command | CommandArgs&lt;br&gt;
GetJavaDialogMessage |
&lt;td style="width:164pt" width=219&gt;SimpleJavaDialog,dlgSimple &lt;br&gt;
&lt;br&gt;
i guess you have wrote JavaDialogGetMessage in your command column , as it is shown in the documentation. 
&lt;/div&gt;</description><author>enlil</author><pubDate>Wed, 25 Feb 2009 13:20:24 GMT</pubDate><guid isPermaLink="false">New Post: Modal Dialogs in WAX 20090225012024P</guid></item><item><title>New Post: Modal Dialogs in WAX</title><link>http://www.codeplex.com/wax/Thread/View.aspx?ThreadId=46816</link><description>&lt;div style="line-height: normal;"&gt;hi,&lt;br&gt;
&lt;br&gt;
I am facing a problem while attaching a modal dialog using WaxRunner. When i use the SimpleJavaDialog command argument, i get an error when the file is loaded that the file is of incorrect type. Can anybody provide me some help on this? Can I get a sample of excel with inputs for attaching a modal dialog?&lt;br&gt;
&lt;br&gt;
Thanks in advance,&lt;br&gt;
Sneha
&lt;/div&gt;</description><author>SnehaSaggam</author><pubDate>Wed, 11 Feb 2009 12:03:08 GMT</pubDate><guid isPermaLink="false">New Post: Modal Dialogs in WAX 20090211120308P</guid></item><item><title>New Post: Little help available for WAX </title><link>http://www.codeplex.com/wax/Thread/View.aspx?ThreadId=41590</link><description>&lt;div style="line-height: normal;"&gt;I have strted using WAX. It seams to be a very easy way to write aumated test. But I am finding difficulty in fiding proper documentation and help. I need to make test cases for .Net application. As mentioned by another user UsingDocument is not working even with the lates update. Kindly help in this regard. How can I fully benefit from this tool.&lt;br&gt;
&lt;/div&gt;</description><author>ms_gigabyte</author><pubDate>Fri, 05 Dec 2008 14:51:10 GMT</pubDate><guid isPermaLink="false">New Post: Little help available for WAX  20081205025110P</guid></item><item><title>New Post: The file was of the incorrect type...no SSL support?</title><link>http://www.codeplex.com/wax/Thread/View.aspx?ThreadId=33569</link><description>&lt;div style="line-height: normal;"&gt;I created an Excel spreadsheet almost identical to the one in the example and it looks fine, but I keep getting this error. I'm trying to test an SSL supported site. Do WATiN and WaX support SSL? I was very excited to find this tool as I am not a developer but have enough knowledge to use it to automate some basic tests. I did notice there is a post about running WatiN tests on Vista in protected mode, but I am using XP SP3 with IE7. &lt;br&gt;
&lt;br&gt;
If anyone can respond to this post, I'd sure appreciate it. Looks like there hasn't been activity here in a while.&lt;br&gt;
&lt;br&gt;
I do hope you will continue to work on this tool as I think it has great potential and is easier to use than most such tools.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>Starting0ver</author><pubDate>Thu, 14 Aug 2008 23:16:59 GMT</pubDate><guid isPermaLink="false">New Post: The file was of the incorrect type...no SSL support? 20080814111659P</guid></item></channel></rss>