Browse Source

Merge branch 'ETA_1.8.1' into debug

zwxi 10 months ago
parent
commit
12f6509a74
1 changed files with 8 additions and 1 deletions
  1. 8 1
      services/smart_report.go

+ 8 - 1
services/smart_report.go

@@ -158,6 +158,10 @@ def main():
         'waitUntil': 'networkidle0',
         'timeout': 1000000  # 设置超时时间为 100 秒
     })
+	
+	# 等待3秒
+    yield from asyncio.sleep(3)
+	
     yield from page.pdf({
         'path': "%s",
         'printBackground': True,
@@ -227,7 +231,10 @@ async def main():
             'waitUntil': 'networkidle0',
             'timeout': 1000000  # 设置超时时间为 100 秒
         })
-        
+		
+		# 等待3秒
+    	yield from asyncio.sleep(3)
+
         # 截取全页面的屏幕截图
         await page.screenshot({
             'path': "%s",