Need supporting browsers information

64 views
Skip to first unread message

Srinivas A

unread,
Jul 10, 2014, 6:27:10 AM7/10/14
to fighting-l...@googlegroups.com

Hi Michael Tamm,

 I am new to fighting-layout-bugs,  have created java project using fighting-layout-bugs-0.5-jar-with-dependencies.  I tried to run my website on FF and Chrome browsers ( using latest driver). But it failed to navigate the URL after launching the browser. Please let me know what all the browser versions vs  driver version vs does support fighting-layout-bugs-0.5 api. Thanks for your help in advance.

 I tried to run on FF 26/29/30 versions and chrome latest version and its shows this below error. Where are it works fine on FF 15 and reports actual issues.

 

com.googlecode.fightinglayoutbugs.AnimationDetectedException: This is strange: Found animated pixels, although

- all JavaScript animations have been stopped,

- all animated GIF images have been hidden,

- all elements potentially containing animation (like Java Applets, Flash Movies, videos, and iframes) are ignored.

- all CSS animations have been paused, and

- all CSS transitions have been disabled.

Analysis is stopped, so you don't get false alarms.

If you want support (or want to support FLB) please

1.) add calls to FightingLayoutBugs.setScreenshotDir(...) and FightingLayoutBugs.enableDebugMode() to your code

,2.) run it again, and if you get this exception again

3.) send an email to fighting-l...@googlegroups.com with the following information:

    - Your code.

    - All logged output.

    - All screenshot files (you might want to pack those into an zip archive).

    - Which version of FLB do you use?

    - Which version of Selenium do you use?

    - Which browser (type and version) do you use?

    - Which Java version do you use?

    - Which OS (type and version)do you use?

 

Michael Tamm

unread,
Aug 18, 2014, 4:37:21 PM8/18/14
to fighting-l...@googlegroups.com
Hi Srinivas,

sorry for the late answer.

FLB 0.5 has a dependency to Selenium 2.25, which is rather outdated and does not support the current Firefox version,
as you experienced. Because FLB uses Selenium, the solution to your problem is, to use a Selenium version, which
supports your Firefox browser. If you are using Maven, you can copy the following lines into your pom.xml:

        <dependency>
            <groupId>com.googlecode.fighting-layout-bugs</groupId>
            <artifactId>fighting-layout-bugs</artifactId>
            <version>0.5</version>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>com.google.guava</groupId>
                    <artifactId>guava</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.seleniumhq.selenium</groupId>
                    <artifactId>selenium-java</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-firefox-driver</artifactId>
            <version>2.42.2</version>
            <scope>test</scope>
        </dependency>

Kind regards, Michael

Am Donnerstag, 10. Juli 2014 12:27:10 UTC+2 schrieb Srinivas A:

Hi Michael Tamm,

 I am new to fighting-layout-bugs,  have created java project using fighting-layout-bugs-0.5-jar-with-dependencies.  I tried to run my website on FF and Chrome browsers ( using latest driver). But it failed to navigate the URL after launching the browser. Please let me know what all the browser versions vs  driver version vs does support fighting-layout-bugs-0.5 api. Thanks for your help in advance.

 I tried to run on FF 26/29/30 versions and chrome latest version and its shows this below error. Where are it works fine on FF 15 and reports actual issues.

 

com.googlecode.fightinglayoutbugs.AnimationDetectedException: This is strange: Found animated pixels, although

- all JavaScript animations have been stopped,

- all animated GIF images have been hidden,

- all elements potentially containing animation (like Java Applets, Flash Movies, videos, and iframes) are ignored.

- all CSS animations have been paused, and

- all CSS transitions have been disabled.

Analysis is stopped, so you don't get false alarms.

If you want support (or want to support FLB) please

1.) add calls to FightingLayoutBugs.setScreenshotDir(...) and FightingLayoutBugs.enableDebugMode() to your code

,2.) run it again, and if you get this exception again

3.) send an email to fighting-layout-bugs@googlegroups.com with the following information:

Reply all
Reply to author
Forward
0 new messages