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
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