<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Selenium-Flex-Tests with Maven</title>
	<atom:link href="http://www.agimatec.de/blog/2008/11/selenium-flex-tests-with-maven/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.agimatec.de/blog/2008/11/selenium-flex-tests-with-maven/</link>
	<description>Clash of realities</description>
	<lastBuildDate>Mon, 15 Mar 2010 13:16:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Files Search</title>
		<link>http://www.agimatec.de/blog/2008/11/selenium-flex-tests-with-maven/comment-page-1/#comment-498</link>
		<dc:creator>Files Search</dc:creator>
		<pubDate>Mon, 04 Jan 2010 09:55:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.agimatec.de/blog/?p=385#comment-498</guid>
		<description>Hi, This test is exactly what I&#039;m looking for. The app has all the components I need to test. So thanks in advance..but I can&#039;t seem to find the source code for the tests and the app itself on source forge could you give a link directly to them?</description>
		<content:encoded><![CDATA[<p>Hi, This test is exactly what I&#8217;m looking for. The app has all the components I need to test. So thanks in advance..but I can&#8217;t seem to find the source code for the tests and the app itself on source forge could you give a link directly to them?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nir Feldman</title>
		<link>http://www.agimatec.de/blog/2008/11/selenium-flex-tests-with-maven/comment-page-1/#comment-470</link>
		<dc:creator>Nir Feldman</dc:creator>
		<pubDate>Sat, 12 Sep 2009 18:21:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.agimatec.de/blog/?p=385#comment-470</guid>
		<description>I just want to make sure:
Does this solution requires opening ExternalInterface from the swf that is the subject of testing?</description>
		<content:encoded><![CDATA[<p>I just want to make sure:<br />
Does this solution requires opening ExternalInterface from the swf that is the subject of testing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Test Driven Development &#124; Obecto Training Portal</title>
		<link>http://www.agimatec.de/blog/2008/11/selenium-flex-tests-with-maven/comment-page-1/#comment-418</link>
		<dc:creator>Test Driven Development &#124; Obecto Training Portal</dc:creator>
		<pubDate>Sun, 10 May 2009 14:18:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.agimatec.de/blog/?p=385#comment-418</guid>
		<description>[...] Selenium-Flex-Tests with Maven Flex acceptance testing and continuous integration [...]</description>
		<content:encoded><![CDATA[<p>[...] Selenium-Flex-Tests with Maven Flex acceptance testing and continuous integration [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tech Per</title>
		<link>http://www.agimatec.de/blog/2008/11/selenium-flex-tests-with-maven/comment-page-1/#comment-390</link>
		<dc:creator>Tech Per</dc:creator>
		<pubDate>Wed, 18 Feb 2009 14:22:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.agimatec.de/blog/?p=385#comment-390</guid>
		<description>Sorry, but I am at the beginning of flex testing too.</description>
		<content:encoded><![CDATA[<p>Sorry, but I am at the beginning of flex testing too.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon Tiffert</title>
		<link>http://www.agimatec.de/blog/2008/11/selenium-flex-tests-with-maven/comment-page-1/#comment-383</link>
		<dc:creator>Simon Tiffert</dc:creator>
		<pubDate>Sun, 15 Feb 2009 20:01:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.agimatec.de/blog/?p=385#comment-383</guid>
		<description>Yes, that is a much nicer solution for the start of the Flex app. Do you have a lot of test running with Flex and Selenium?
What is your experience? Is it stable? 

We are just at the beginning of our Flex tests. 

Cheers
Simon</description>
		<content:encoded><![CDATA[<p>Yes, that is a much nicer solution for the start of the Flex app. Do you have a lot of test running with Flex and Selenium?<br />
What is your experience? Is it stable? </p>
<p>We are just at the beginning of our Flex tests. </p>
<p>Cheers<br />
Simon</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tech Per</title>
		<link>http://www.agimatec.de/blog/2008/11/selenium-flex-tests-with-maven/comment-page-1/#comment-382</link>
		<dc:creator>Tech Per</dc:creator>
		<pubDate>Fri, 13 Feb 2009 14:56:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.agimatec.de/blog/?p=385#comment-382</guid>
		<description>I did the following to ensure flash had been properly loaded and started before test executes:

&lt;code&gt;
    public void testFooBar() {
        waitForFlashLoaded();
        assertEquals(&quot;hello world&quot;, flashApp.call(&quot;callMe&quot;));
    }

    private void waitForFlashLoaded() {
        try {
            while (flashApp.PercentLoaded() != 100) {
                Thread.sleep(500);
            }
        } catch (InterruptedException e) {
            // craps
        }
    }
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I did the following to ensure flash had been properly loaded and started before test executes:</p>
<p><code><br />
    public void testFooBar() {<br />
        waitForFlashLoaded();<br />
        assertEquals("hello world", flashApp.call("callMe"));<br />
    }</p>
<p>    private void waitForFlashLoaded() {<br />
        try {<br />
            while (flashApp.PercentLoaded() != 100) {<br />
                Thread.sleep(500);<br />
            }<br />
        } catch (InterruptedException e) {<br />
            // craps<br />
        }<br />
    }<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: &#187; Selenium-Flex-Tests with Maven</title>
		<link>http://www.agimatec.de/blog/2008/11/selenium-flex-tests-with-maven/comment-page-1/#comment-348</link>
		<dc:creator>&#187; Selenium-Flex-Tests with Maven</dc:creator>
		<pubDate>Thu, 13 Nov 2008 19:27:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.agimatec.de/blog/?p=385#comment-348</guid>
		<description>[...] I used TestNG because it can be easier configured in a Selenium environment (when it started to become more complicated with several browsers, plattforms, test suites, test groups …): package com.agimatec.assessor.selenium; &#8230;  Original post [...]</description>
		<content:encoded><![CDATA[<p>[...] I used TestNG because it can be easier configured in a Selenium environment (when it started to become more complicated with several browsers, plattforms, test suites, test groups …): package com.agimatec.assessor.selenium; &#8230;  Original post [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
