I was wondering if there are any mutation testing tools for web applications. I understand there exist mutation analysis tools for specific server (PHP) and client side (JavaScript) languages to improve unit tests.
But, are there any mutation testing frameworks to measure the effectiveness of the UI test suites like Selenium Tests ?
Source code coverage seems to be a popular way to estimate the effectiveness of selenium tests (JS code coverage with selenium tests). I have personally also used IstanbulJS to estimate javascript coverage. Since Mutation testing is considered better than coverage, I was wondering if there are any tools out there for doing so.