如何通过python基于phantomjsphantomjs导入图片?
基于的phantomjs的自动化,会出现
1.flash不支持
2.部分基于view的按钮点不到,部分按钮是基于flash的(尤其是在于上传按钮)
browser.find_element_by_xpath(".//*[@name='SWFUpload_0']").click() #点击上传按钮 sleep(2) autoit.control_set_text("", "[CLASS:Edit; INSTANCE:1]",tupian ) #上传图片链接 sleep(0.5) autoit.send("{TAB}{TAB}{ENTER}") #点击确定 # 以上为操作有界面的浏览器的方法. webdriver browser.execute_script("document.getElementById(\"input_upload_image1\").type='text';") #正常flash操作上传,都会存在一个input框,但正常都会是 hidden,可以通过js将其显示出来 browser.find_element_by_xpath(".//*[@id='input_upload_image1']").send_keys('*********') #上传链接 browser.find_element_by_xpath(".//*[@id='pub_submit']").click()
以上就是本文的全部内容了,希望对大家学习使用phantomjs能够有所帮助。
本文地址:http://www.45fan.com/a/question/55807.html