For an example, I have created some feature for automation testing using Behave login_account.feature
and choose_product.feature
. To run on a single feature, I use this command on the terminal behave -f behave_html_formatter:HTMLFormatter -i login_account.feature
.
I want to run on multiple feature login_account.feature
and choose_product.feature
in one command on the terminal. Anyone, can you give me the example command to run multiple feature using Behave in one command on the terminal?
Thank you in advance.