Commit b865f594db52eb098075e63d605b43b40725db10
1 parent
8748da0c
Exists in
master
and in
28 other branches
fill the correct username and password field in cucumber tests with selenium
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
features/step_definitions/noosfero_steps.rb
... | ... | @@ -287,8 +287,8 @@ end |
287 | 287 | Given /^I am logged in as "(.+)"$/ do |username| |
288 | 288 | Given %{I go to logout page} |
289 | 289 | And %{I go to login page} |
290 | - And %{I fill in "Username" with "#{username}"} | |
291 | - And %{I fill in "Password" with "123456"} | |
290 | + And %{I fill in "main_user_login" with "#{username}"} | |
291 | + And %{I fill in "user_password" with "123456"} | |
292 | 292 | When %{I press "Log in"} |
293 | 293 | # FIXME: |
294 | 294 | # deveria apenas verificar que esta no myprofile do usuario | ... | ... |