Eva*_*ain 3 python pyqt pyqt5 pyautogui pytest-qt
我有一个 pyqt 窗口,可以在按下鼠标时跟踪鼠标移动。我正在尝试编写一个测试来使用 pytest-qt 自动执行此移动。
这是一个示例类:
from PyQt5.QtWidgets import *
from PyQt5.QtGui import QCursor
from PyQt5.QtWidgets import QApplication
class Tracker(QDialog):
def __init__(self, parent=None):
super(Tracker, self).__init__(parent)
self.location = None
self.cur = QCursor()
layout = QVBoxLayout()
self.label = QLabel()
layout.addWidget(self.label)
self.setLayout(layout)
self.setModal(True)
self.showFullScreen()
def mouseReleaseEvent(self, e):
x = self.cur.pos().x()
y = self.cur.pos().y()
self.location = (x, y)
return super().mouseReleaseEvent(e)
def mouseMoveEvent(self, e):
x = self.cur.pos().x()
y = self.cur.pos().y()
self.label.setText(f'x: {x}, y: {y}')
return super().mouseMoveEvent(e)
if __name__ == '__main__':
import sys
app = QApplication(sys.argv)
window = Tracker()
sys.exit(app.exec_())
Run Code Online (Sandbox Code Playgroud)
我想编写一个测试用例,打开窗口,然后将鼠标向右拖动 100 像素并释放。
这是我尝试过的:
track = Tracker()
qtbot.mousePress(track, QtCore.Qt.LeftButton, pos=QPoint(300, 300))
qtbot.mouseMove(track, pos=QPoint(400, 300))
qtbot.mouseRelease(track, QtCore.Qt.LeftButton)
assert track.location == (400, 300)
Run Code Online (Sandbox Code Playgroud)
我也尝试过使用 pyautogui:
track = Tracker()
x, y = pyautogui.position()
pyautogui.dragTo(x + 100, y, button='left')
assert track.location == (x + 100, y)
Run Code Online (Sandbox Code Playgroud)
运行测试时,拖动时似乎未按住鼠标左键。标签不会更新,位置属性也不会更改。
qtbot.mouseMove():pytest-qt 对 QtTest 进行了包装,即函数 qtbot.mouseMove() 与 相同QTest::mouseMove()。这个函数有一个错误,报告为QTBUG-5232,将在 Qt6/PyQt6 中修复,在报告的注释中,有几个解决方法,即通过模拟 QMouseEvent 来替换该函数,该函数不会使光标移动,但如果它调用 mouseMoveEvent 方法,因此为了正常工作,您必须修改代码。
from PyQt5.QtWidgets import QApplication, QDialog, QLabel, QVBoxLayout
class Tracker(QDialog):
def __init__(self, parent=None):
super(Tracker, self).__init__(parent)
self.location = None
self.label = QLabel()
layout = QVBoxLayout(self)
layout.addWidget(self.label)
self.setModal(True)
self.showFullScreen()
def mouseReleaseEvent(self, e):
pos = self.mapToGlobal(e.pos())
self.location = pos.x(), pos.y()
return super().mouseReleaseEvent(e)
def mouseMoveEvent(self, e):
pos = self.mapToGlobal(e.pos())
self.label.setText(f"x: {pos.x()}, y: {pos.y()}")
return super().mouseMoveEvent(e)
if __name__ == "__main__":
import sys
app = QApplication(sys.argv)
window = Tracker()
sys.exit(app.exec_())
Run Code Online (Sandbox Code Playgroud)
def test_emulate_QMouseEvent(qtbot):
start_pos, end_pos = QtCore.QPoint(300, 300), QtCore.QPoint(400, 300)
track = Tracker()
def on_value_changed(value):
event = QtGui.QMouseEvent(
QtCore.QEvent.MouseMove,
value,
QtCore.Qt.NoButton,
QtCore.Qt.LeftButton,
QtCore.Qt.NoModifier,
)
QtCore.QCoreApplication.sendEvent(track, event)
animation = QtCore.QVariantAnimation(
startValue=start_pos, endValue=end_pos, duration=5000
)
qtbot.mousePress(track, QtCore.Qt.LeftButton, pos=QtCore.QPoint(300, 300))
animation.valueChanged.connect(on_value_changed)
with qtbot.waitSignal(animation.finished, timeout=10000):
animation.start()
qtbot.mouseRelease(track, QtCore.Qt.LeftButton)
track.location == (end_pos.x(), end_pos.y())
Run Code Online (Sandbox Code Playgroud)
使用此方法无需进行任何更改。
def test_pyautogui(qtbot):
start_pos, end_pos = QtCore.QPoint(300, 300), QtCore.QPoint(400, 300)
track = Tracker()
qtbot.waitUntil(track.isVisible)
def on_value_changed(value):
pyautogui.dragTo(value.x(), value.y(), button="left")
animation = QtCore.QVariantAnimation(
startValue=start_pos, endValue=end_pos, duration=5000
)
pyautogui.moveTo(start_pos.x(), start_pos.y())
pyautogui.mouseDown(button="left")
animation.valueChanged.connect(on_value_changed)
with qtbot.waitSignal(animation.finished, timeout=10000):
animation.start()
track.location == (end_pos.x(), end_pos.y())
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
1189 次 |
| 最近记录: |