美文网首页
自动化系列-pyppeteer键盘输入点击

自动化系列-pyppeteer键盘输入点击

作者: Jruing | 来源:发表于2020-05-21 22:14 被阅读0次

    一个小栗子,通过pyppeteer实现访问百度搜索指定关键

    代码

    from pyppeteer import launch
    import asyncio
    import time
    async def main():
        # 启动一个浏览器
        browser = await launch(headless=False,args=['--disable-infobars'])
        # 创建一个页面
        page = await browser.newPage()
        # 跳转到百度
        await page.goto("http://www.baidu.com/")
        # 输入要查询的关键字,type 第一个参数是元素的selector,第二个是要输入的关键字
        await page.type('#kw','pyppeteer')
        # 点击提交按钮 click 通过selector点击指定的元素
        await page.click('#su')
        time.sleep(3)
        await browser.close()
    asyncio.get_event_loop().run_until_complete(main())
    

    相关文章

      网友评论

          本文标题:自动化系列-pyppeteer键盘输入点击

          本文链接:https://www.haomeiwen.com/subject/fmexahtx.html