Different Business Brand

Hi, I would like to use robot framework RPA for my commercial business case & would like to use my business logo and color theme when launching to customers. Any modifications will contribute back to the community to the spirit of open source. Can I seek your advice if we are able to do so? If not, what are the ways for us to use the RPA?
Thanks

Since robot is opensource, anything is possible. However, at this moment, adding images to report is probably not possible with do-it-your-self mentality.

Rebot (and robot itself) shows up following flags that modifies the end html;

    --logtitle title      Title for the generated log file. The default title
                          is `<SuiteName> Log`.
    --reporttitle title   Title for the generated report file. The default
                          title is `<SuiteName> Report`.
    --reportbackground colors  Background colors to use in the report file.
                          Given in format `passed:failed:skipped` where the
                          `:skipped` part can be omitted. Both color names and
                          codes work.
                          Examples: --reportbackground green:red:yellow
                                    --reportbackground #00E:#E00

maybe you can add the “business logo” into logtile if it allows embedding html into it and some of the colors could be set with reportbackground…

However, all the code is in the main robotframework repository and nobody will prevent you from modifying the templates within it. OR postprocessing with some html transformers after rf has generated the report before its shown to the customer. Just … Like … Process … Automation ? :smiley:

1 Like