Sven Van Caekenberghe wrote
The API you are looking for is in ZnClient>>#formAt:put: (or #formAdd:) and friends.
I tried this with my wordpress site: ZnNeoClient new url: 'http://seandenigris.com/blog/wp-login.php'; formAt: 'log' put: username; formAdd: 'pwd' -> password; post. which failed (I also tried the form element id's instead of names). The following worked via Ruby's Mechanize: a = Mechanize.new { |agent| agent.user_agent_alias = 'Mac Safari' } page = a.get('http://seandenigris.com/blog/wp-login.php') form = page.form_with(:name => 'loginform') form.log = username form.pwd = password results = form.submit results.body -- View this message in context: http://forum.world.st/Submitting-forms-with-Zinc-tp4149396p4157792.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.