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

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

  • step1 定义一个获取当前屏幕尺寸的函数
  • step2 使用该函数

废话不多说直接上代码

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
    })

亲测可用

你可能感兴趣的:(使用pyppeteer或者selenium时,chrome窗口最大化)