Search code examples
extentreportsselenium-extent-report

Remove logo from extent report


How to remove blue color "Extent" logo from extent report.

Extend report version =3.1.5

enter image description here


Solution

  • Find and edit extent-config.xml, copy and paste the script below over the existing 'scripts' tags.

        <scripts>
            <![CDATA[
            $(document).ready(function() {
            $('.brand-logo.blue.darken-3').css('display','none');
            });
            ]]>
        </scripts>