I currently have Selenium with Java along with Cucumber for my UI automated tests. I seem to have hooked everything in as my tests run properly, but all of my tests seem to have an execution time of 0 ms, although I clearly see the tests running. How can I fix this?
0 ms passed| Reviews |.Given I am logged in
0 ms passed| Reviews |.When I am on some screen
0 ms passed| Reviews |.And I filter by x filter
0 ms passed| Reviews |.Then I should see x type displayed
EDIT: I have added in a Thread.sleep(3000) as the first step in one of my tests. It will still show an execution time of 0 ms. However, if in that same test, I Assert.fail() on that method, it will show me a proper execution time of 3 ms.