使用pyppeteer或者selenium时,chrome窗口最大化

使用pyppeteer或者selenium时,chrome窗口最大化

废话不多说直接上代码

step1 定义一个获取当前屏幕尺寸的函数

def screen_size():
    # 使用tkinter获取屏幕大小
    import tkinter
    tk = tkinter.Tk()
    width = tk.winfo_screenwidth()
    height = tk.winfo_screenheight()
    tk.quit()
    return width, height

step2 使用该函数

    page = await browser.newPage()

    width, height = screen_size()
    await page.setViewport({
        "width": width,
        "height": height
    })

亲测可用

    原文作者:supertangcugu
    原文地址: https://blog.csdn.net/supertangcugu/article/details/89790916
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞