You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 23, 2024. It is now read-only.
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