Run Karma test suite in Intellij
You will need to install the Karma plugin into your intellij to get this to work.
I have not found out how to run individual tests with Karma.
Run Karma test suite in Intellij
You will need to install the Karma plugin into your intellij to get this to work.
I have not found out how to run individual tests with Karma.
Update: 26/04/14 – added example github project showing an example project with config setup and simple test.
Example project on github: https://github.com/onekilo79/protractor-astrolabe-example
When writing browser based tests with selenium the test can become brittle if they are too attached to the xpath of the css selector when the page look and feel changes. To limit your exposure to changes in the styling of the page you can use the Page Object Pattern.
In Groovy we have the excellent Geb by Luke Daily.