を期待ウムラウトでボタンをクリックしようとしたとき、私はこのエラーを取得しています:
syntax error, unexpected $end, expecting keyword_end
click_on 'Neue Firma hinzufц╪gen'
私は、Ruby & Capabaraでテストしています。
##Create_User_spec.rb
require 'acceptance/acceptance_helper'
## Feature 'Create User'
feature 'Create User' do ##
Scenario 'Create a User'
scenario 'Create a User' do
## Login into the service
visit 'url'
fill_in 'User-username', :with => 'test'
fill_in 'User-password', :with => 'test'
click_on 'login'
click_link 'Test'
click_on 'Neue Firma hinzufügen'
end
end
を提示してくださいそのページのコード.. – Kashiftufail
あなたのコードを適切にインデントした場合は、あなた自身でそのようなエラーを検出する可能性が高くなります。 –