Skip to content

Instantly share code, notes, and snippets.

Created August 11, 2015 17:23
Show Gist options
  • Save anonymous/e9f99140d758c0a9cee6 to your computer and use it in GitHub Desktop.
Save anonymous/e9f99140d758c0a9cee6 to your computer and use it in GitHub Desktop.
## http://www.pouparbem.com/alqapps/especial/news.php
## insert stuff into the mention website above
require 'mechanize'
agent = Mechanize.new
agent.get('http://www.pouparbem.com/alqapps/ruby_standard.php')
insere = agent.get('http://www.pouparbem.com/alqapps/ruby_standard.php')
dia = insere.form.fields(:name => 'DATAHORA')
dia.value = ARGV[0]
prioridade = insere.form.fields(:name => 'PRIORIDADE')
prioridade.value = ARGV[1]
camp = insere.form.fields(:name => 'IDCAMPANHA')
camp.value = ARGV[2]
button = insere.form.buttons(:name => 'Agendar')
click_button(button)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment