MongoDB.service failed with result exit-code

Just do those two commands for temporary solution: sudo rm -rf /tmp/mongodb-27017.sock sudo service mongod start For details: That shall be fault due to user permissions in .sock file, You may have to change the owner to monogdb user. sudo chown -R mongodb:mongodb /var/lib/mongodb sudo chown mongodb:mongodb /tmp/mongodb-27017.sock For more details visit Documentation for installation

How do you run SpecFlow scenarios from the command line using MSTest?

Behind the scene specflow tests are just regular mstest unit tests. So you should be able to run them the same way using something like: To run a specific scenario: mstest /testcontainer:tests.dll /test:GivenMyScenarioWhenIDoSomeStuff To run a several specific scenario you can use the /test flag multiple times: mstest /testcontainer:tests.dll /test:GivenMyScenarioWhenIDoSomeStuff /test:GivenMyScenarioWhenIDoSomemthingElse To run a feature … Read more

How to read input data from an excel spreadsheet and pass it JSON payload in karate framework?

A few points: I recommend you look at Karate’s built-in data-table capabilities, it is far more readable, integrates into your test-script and you won’t need to depend on other software. Refer these examples: call-table.feature and dynamic-params.feature Next I would recommend using JSON instead of an Excel or CSV file, it is natively supported by Karate: … Read more