python pamie简介

Python这种脚本语言的强大功能越来越被广大的程序员所重视,这种之前在国内流行度不高的语言近来气势高涨。各种第三方模块层出不穷。
 
本文介绍的便是一种能非常方便操作IE的第三方工具, PAMIE,他能让你如同写JS一样来操作IE浏览器。包括自动启动,访问链接,设置文本框值,获取按钮,执行点击事件,甚至执行页面JS方法等等。下面用一个实际的例子详加说明:
 
以下简短代码便轻易实现,登录本人ChinaUnix,并以此点击日志文章,发文章,设置标题,分类,和博客内容,最后执行确定,发布成功。
# -*- coding: gb2312 -*-

from PAM30 import PAMIE

from string import split

#===============================================================================

# 从文件读取配置信息,登录url,账户,密码等

#===============================================================================

def getCfgFromFile(fileName='settings.txt'):

    file = open(fileName)

    dict = {}

    line = file.readline()

    while line != '':

        args = split(line, '=')

        dict[args[0]] = args[1].decode('utf-8').encode('gb2312')

        line = file.readline()

    return dict

dict = getCfgFromFile()

ie = PAMIE()

#===============================================================================

# 打开登录页面,设置用户/密码

#===============================================================================

ie.navigate(dict['login-url'])

ie.setTextBox('username', dict['username'])

ie.setTextBox('password', dict['password'])

#===============================================================================

# 获取登录按钮

#===============================================================================

loginbtn = ie.findElement('input', 'type', 'image')

ie.clickElement(loginbtn)

#===============================================================================

# 点击文章管理

#===============================================================================

ie.navigate(dict["article-url"])

#===============================================================================

# 点击写文章

#===============================================================================

mainFrame = ie.getFrame('main')

pwindow = mainFrame.document.parentWindow

pwindow.execScript('NewArticle()')

#===============================================================================

# 设置文章标题,文章分类,系统分类,文章类型

#===============================================================================

mainFrame = ie.getFrame('main')

doc = mainFrame.document

#------------------------------------------------------------------------ 设置文章标题

doc.getElementById('blog_title').value = dict['title']

#------------------------------------------------------------------------ 文章分类-java

doc.getElementById('frmid').value = '119124'

#------------------------------------------------------------------------ 系统分类-java

doc.getElementById('systemfrmid').value = '20'

#----------------------------------------------------------------------- 文章类型-原创

doc.getElementById('arttype').value = dict['arttype']

#===============================================================================

# 填写文章内容

#===============================================================================

pwindow = mainFrame.document.parentWindow

pwindow.execScript('InsertHTML("Python+PAMIE")')

pwindow.execScript('InsertHTML("如此强大的功能")')

#===============================================================================

# 发表文章

#===============================================================================

pwindow.execScript('savearticle()')

 

你可能感兴趣的:(python)