PAMIE,Python控制IE的双节棍

    技术2022-05-19  18

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

    # -*- coding: gb2312 -*-from PAM30 import PAMIEfrom 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 dictdict = 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.parentWindowpwindow.execScript('NewArticle()')#===============================================================================# 设置文章标题,文章分类,系统分类,文章类型#===============================================================================mainFrame = ie.getFrame('main')doc = mainFrame.document#------------------------------------------------------------------------ 设置文章标题doc.getElementById('blog_title').value = dict['title']#------------------------------------------------------------------------ 文章分类-javadoc.getElementById('frmid').value = '119124'#------------------------------------------------------------------------ 系统分类-javadoc.getElementById('systemfrmid').value = '20'#----------------------------------------------------------------------- 文章类型-原创doc.getElementById('arttype').value = dict['arttype']#===============================================================================# 填写文章内容#===============================================================================pwindow = mainFrame.document.parentWindowpwindow.execScript('InsertHTML("Python+PAMIE")')pwindow.execScript('InsertHTML("如此强大的功能")')#===============================================================================# 发表文章#===============================================================================pwindow.execScript('savearticle()')


    最新回复(0)