How to send cookies with selenium webdriver?

后端 未结 4 1554
星月不相逢
星月不相逢 2020-11-28 10:06

Every time when I run my test first step is log in and than I get to desire page. If run this test often log in operation takes a lot of time.

How can I pass log in

4条回答
  •  攒了一身酷
    2020-11-28 10:22

    driver.manage().addCookie();
    

    manage()

    The Options interface with Cookies

    And Selenium's implementation of Cookie

提交回复
热议问题