calabash / x-platform-example

Example of cross-platform BDD with Cucumber and Calabash
90 stars 60 forks source link

No scenario has executed for the x platform #10

Open nnukala opened 6 years ago

nnukala commented 6 years ago

When I am executing the ios script, it has not been executed.

QACommon:x-platform qausr$ bundle exec cucumber -p ios features/Citi_Login.feature Using the ios profile... 0 scenarios 0 steps 0m0.000s

These are my features and scenario steps.

Feature: Login feature User able to login into the application. This helps to check the Smoke testing.

Scenario : To verify the User able to login into the Application Given pause the server When the user launches the application

Step Definitions: Given (/^pause the server$/) do @current_page = page(LoginPage).await(timeout: 30) end

When (/^the user launches the application$/) do @current_page = @current_page.gotit end