Skip to content

Instantly share code, notes, and snippets.

@dameninngenn
Created May 25, 2011 11:00
Show Gist options
  • Save dameninngenn/990786 to your computer and use it in GitHub Desktop.
Save dameninngenn/990786 to your computer and use it in GitHub Desktop.
mechanize_for_sjis_multibyte_form
my $contents_url = 'http://hoge';
$mech->get($contents_url);
my $form = $mech->form_name('frm1');
$form->accept_charset('shiftjis');
$mech->submit_form(
fields => {
contents_id => 'hogehoge',
},
button => 'button',
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment