0

How to run multiple feature files in selenium+nodejs + cucumberjs ?

2 Answers 2

1

As per your query it looks like you want to know something about the parallel execution of your code It majorly depends on your framework and also build tool you use in your project, which will help you to manage the threads running in your project and tests. Jasmine is one of the modules in node which can be used in cucumber and selenium to achieve parallel execution.

Sign up to request clarification or add additional context in comments.

Comments

1

To run multiple features at the same time you must have proper entry in your protractor config file:

capabilities: {
        maxInstances: 3
    },

This will run 3 features at the same time in a separate browser instances.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.