Python は win32com を使用して Baidu スペースに HTML 要素を挿入する例

WBOY
リリース: 2016-06-16 08:45:11
オリジナル
1028 人が閲覧しました

复制代代码如下:

from win32com.client import DispatchEx
インポート時間
ie=DispatchEx( "InternetExplorer.Application")

ie.Navigate("http://hi.baidu.com/mirguest/creat/blog/")
ie.Visible=1
while ie.Busy:
time.sleep(1 )

body=ie.Document.body
# header
for i in body.getElementsByTagName("input"):
if str(i.getAttribute("id"))=="spBlogTitle" :
print "タイトルを検索"
i.value="AutoCreatedByPython"
ブレーク

# editor
for i in body.getElementsByTagName("iframe"):
print "Find iframe"
if str(i.getAttribute("id"))=="tangram_editor_iframe_TANGRAM__1":
print "検索"
Break
iframe=i
iframe.click()
sondoc=iframe.contentWindow.Document;
print Sondoc
sonbody=sondoc.body
printsonbody
for ii insonbody.getElementsByTagName("p"):
print "Find p"
ii.innerHTML="こんにちは、初めての試みです"
tmp=sondoc.createElement(" div")
tmp.innerHTML="bye"
sonbody.insertBefore(tmp,ii)

tmpHTML="

hello 2
"
sonbody.insertAdjacentHTML("beforeEnd",tmpHTML)
'''
editor.getContentHTML
'''

# submit
for i in body.getElementsByTagName("div"):
if str(i.getAttribute("id"))=="btn-box":
print "検索ボタン"
休憩

btnbox=i
j=btnbox.childNodes(0)
j.click()

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!