4

我正在尝试使用QtWebKit模块将照片上传到vk.com 。我面临的问题是无法正确填充' 值。这是我使用的一些相关代码:input(type="file")

def upload():
    print 'uploading...'
    photoInput = web.page().mainFrame().documentElement().findFirst('input[id="photos_upload_input"]')
    assert photoInput, 'No input found'
    photoInput.setAttribute('value', '/Users/elmigranto/Downloads/stuff.png')

    print photoInput.evaluateJavaScript('return this.value;').toString()

需要注意的是,由于浏览器安全策略的原因,Javascript 无法填充文件输入的值。但是,应该可以使用 Qt API,更具体地说,方法。这就是我所做的......没有任何效果(嗯,返回预期结果,但返回空字符串,输入的处理程序也没有被触发)。QWebElement::setAttribute()photoInput.attribute('value')photoInput.evaluateJavaScript('return this.value;').toString()onchange

设置其他属性是没有问题的,例如,就像一个魅力。QWebElement::addClass()

任何帮助都会非常棒。
谢谢。

4

1 回答 1

6

出于安全原因,该setAttribute方法可能仍然不起作用。

但是您可以重新定义QWebPage::chooseFile通常应该打开上传对话框并返回文件名的函数,以便它在不打开对话框的情况下返回静态文件名,并通过模拟输入元素上的“返回”键来激活该上传。

这似乎有效:

from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtWebKit import *
import sys

class WebPage(QWebPage):
    def __init__(self, parent = None):
        super(WebPage, self).__init__(parent)
        self.overrideUpload = None

    def chooseFile(self, originatingFrame, oldFile):
        if self.overrideUpload is None:
            return super(WebPage, self).chooseFile(originatingFrame, oldFile)
        result = self.overrideUpload
        self.overrideUpload = None
        return result

    def setUploadFile(self, selector, filename):
        button = self.mainFrame().documentElement().findFirst(selector)
        self.overrideUpload = filename
        # set the focus on the input element
        button.setFocus();
        # and simulate a keypress event to make it call our chooseFile method 
        webview.event(QKeyEvent(QEvent.KeyPress, Qt.Key_Enter, Qt.NoModifier))

def upload():
    print 'uploading...'    
    page.setUploadFile('input[id="photos_upload_input"]',
        '/Users/elmigranto/Downloads/stuff.png') 
    # The change seems to be asynchronous, at it isn't visible 
    # just after the previous call

app = QApplication(sys.argv)
webview = QWebView()
page = WebPage(webview)
webview.setPage(page)
source = '''
<form action="#">
  Select a file: <input type="file" id="photos_upload_input">
  <input type="submit">
</form>
'''
webview.loadFinished.connect(upload)
webview.show()
webview.setHtml(source)
sys.exit(app.exec_())
于 2013-03-16T01:29:20.027 回答