Reputation: 819
In eclipse, for cucumber feature file using for selenium,
Above mentioned three things are not happening any more which used to work earlier. I believe it's related to the set up of eclipse. I know the issue, not sure what details might be required. So please do let me know what might be required so that I can share here.
Eclipse Version:
Version: 2019-09 R (4.13.0)
Build id: 20190917-1200
Upvotes: 0
Views: 9023
Reputation: 1
Associating feature file type with cucumber in Selenium WebDriver
I don't know the reason but I am also having a similar problem occasionally. When you over the file name go to the file tab and choose properties and then choose Associate with File Type --> then choose cucumber. I hope it helps.
Upvotes: 0
Reputation: 819
Changed the default editor to cucumber, Not sure how default editor was changed
After changing the default editor to cucumber, this started working
Added this parameter in the
@CucumberOptions(plugin = {"pretty","summary"})
Not sure, but this is not creating any issues so far
Upvotes: 0
Reputation: 17593
That means either your editor is disable or corrupted.
1)
Try to open your feature file again as below:
Select other if cucmber editor not shown.
2)
Uninstall the cucumber plugin and install again.
Refer below link to uninstall the plugin from eclipse
Correct way to remove plugin from Eclipse
Upvotes: 0