Search code examples
javaseleniumcucumberbdd

Run as cucumber feature not showing in eclipse


I am new to automation. Im facing this problem while running cucumber feature. It doesnt show run as Cucumber feature option at all

Screen shot of Run as options in eclipse


Solution

  • As, when you open a feature file in Eclipse and right-click, then you do not find an option 'Run As->Cucumber Feature', it appears that your Eclipse do not have the required Cucumber Eclipse Plug-in. You can install this plug-in using following steps:

    1. Launch Eclipse and navigate to 'Help->Install New Software'.
    2. Click on 'Add' button
    3. Enter any name e.g. 'Cucumber' and type 'http://cucumber.github.com/cucumber-eclipse/update-site' as location.
    4. Click on OK.
    5. 'Cucumber Eclipse Plugin' option will appear in the available software list.
    6. Select the check box against it and click on 'Next' button.
    7. Read the terms of license agreement and click on 'I accept the terms of the license agreement” if you agree with the license terms.
    8. Click on 'Finish' button.
    9. Let it install, it will take few seconds to complete.

    After successful installation of this plug-in, if you open any feature file (i.e. file with .feature extension) and right-click, you should see 'Run As->Cucumber Feature' option.

    Update 1

    In Eclipse, go to 'Windows->Preferences->Run/Debug/Launching/Launch Configuration' and uncheck 'Cucumber Feature' checkbox if it is checked. Refer to below screen shot for more details:

    enter image description here