I've discovered that there is a difference between set and value= for text_fields
@@ie.text_field(:id, @test_data['pg_401']['address_1_field']).set(@test_data['pg_401']['address_1']) This breaks the encoding of the data read from @test_data @@ie.text_field(:id, @test_data['pg_401']['address_1_field'])[EMAIL PROTECTED]'pg_401']['address_1'] This preserves the encoding of the data So my workaround to resolve this is to use value= whenever I have shift_jis encoded data and set when I have ascii data. Just FYI Thanks Kev _______________________________________________ Wtr-general mailing list [email protected] http://rubyforge.org/mailman/listinfo/wtr-general
