Skip to content

Instantly share code, notes, and snippets.

@fornext1119
Created June 20, 2012 02:12
Show Gist options
  • Save fornext1119/2957763 to your computer and use it in GitHub Desktop.
Save fornext1119/2957763 to your computer and use it in GitHub Desktop.
Python で Internet Explorer を 制御
# coding: Shift_JIS
import win32api, win32con, win32com, win32com.client, os, time, sys
ie = win32com.client.Dispatch("InternetExplorer.Application")
ie.Visible = True
ie.ToolBar = True
ie.MenuBar = True
ie.AddressBar = True
ie.StatusBar = True
#ログオン画面
ie.Navigate('http://192.168.1.1/zzzz.asp')
while (ie.Busy and ie.ReadyState != 4):
time.sleep(1)
#ユーザID
ie.Document.getElementById("txtUserID").Value = "xxxxx"
#パスワード
ie.Document.getElementById("txtPassWD").Value = "yyyyy"
#ログオン
ie.Document.forms(0).submit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment