sto ottenendo questo errore quando si cerca di fare clic su un pulsante con dieresi:
syntax error, unexpected $end, expecting keyword_end
click_on 'Neue Firma hinzufц╪gen'
sto testando con 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
Si prega di mostrare il codice di quella pagina .. – Kashiftufail
Se hai indentato il tuo codice in modo corretto, saresti più propenso a rilevare personalmente tali errori. –