2015-08-08 :-)
_ やったこと
0700 起床
0930 通院
1200 おひる。カップラーメン
1300 ひたすら艦これレベル上げ
1600 散歩
1900 ruby mechanize
2100 飯 白菜と豚バラ肉のにんにくみそ鍋 豚肉どころか鶏肉ですが
_ [ruby][mechanize]mechanize をいじってると dirty hack という感じがする
振る舞い
何も押されていない "出社" "退社" "外出" "戻り" 出社を押した "退社" "外出" "戻り" 出社を押したあとに退社を押した "外出" "戻り"
実装
def working? texts = "" buttons = @agent.page.forms[1].buttons if buttons.length == 3 buttons.each {|b| texts << b.node.children[0].text } if !texts.include?("出社") and texts.include?("退社") puts "working" return true end end puts "a holiday" return false end