mirror of
https://github.com/ChenXu233/nonebot_plugin_dialectlist.git
synced 2025-07-16 11:10:46 +00:00
💄 更好看的排行榜样式文件
This commit is contained in:
10
tests/temple_render.py
Normal file
10
tests/temple_render.py
Normal file
@ -0,0 +1,10 @@
|
||||
from playwright.sync_api import sync_playwright
|
||||
|
||||
with sync_playwright() as p:
|
||||
for browser_type in [p.chromium, p.firefox, p.webkit]:
|
||||
browser = browser_type.launch(headless=True)
|
||||
page = browser.new_page()
|
||||
page.goto('file:///H:/Bot/%E7%8E%B0%E5%BD%B9Bot/mybot/src/nonebot_plugin_dialectlist/nonebot_plugin_dialectlist/temple/rank_temple.html')
|
||||
page.screenshot(path=f'screenshot-{browser_type.name}.png',full_page=True)
|
||||
print(page.title())
|
||||
browser.close()
|
Reference in New Issue
Block a user