Tôi nhận được lỗi này khi cố gắng bấm vào một nút với âm sắc:
syntax error, unexpected $end, expecting keyword_end
click_on 'Neue Firma hinzufц╪gen'
Tôi đang thử nghiệm với 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
Hãy thể hiện mã của trang đó .. – Kashiftufail
Nếu bạn đã thụt lề mã của mình đúng cách, bạn có nhiều khả năng tự phát hiện các lỗi như vậy. –