您现在的位置是:网站首页 > 博客日记 >

playwright截图

作者:YXN-python 阅读量:81 发布日期:2024-09-19

1、整个页面截图

page.screenshot(path='example.png')

2、指定元素截图

 # 选择你想要截图的元素
element = page.locator('//form')

 # 捕获元素的截图
element.screenshot(path='element.png')

3、指定坐标截图
page.screenshot(path='page_part.png', clip={'x': 0, 'y': 0, 'width': 300, 'height': 300})

YXN-python

2024-09-19