cs3b / kameleon

high abstraction dsl for tests (from end user perspective) [kameleon - mean chameleon, from polish]

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fill_in with symbols

tb opened this issue · comments

fill_in name => :country_name
fill_in "AA" => :country_code
fill_in "1" => :country_lng
fill_in "1" => :country_lat

Fills in all values to "country_name". Looks like some issue with symbols. Without symbols, it works fine:

fill_in name => "country_name"
fill_in "AA" => "country_code"
fill_in "1" => "country_lng"
fill_in "1" => "country_lat"