2014-11-06 41 views

回答

1

是的的確的。

假設您使用的是java,請查看http://selenium.googlecode.com/svn/trunk/docs/api/java/org/openqa/selenium/Cookie.html

Cookie類的構造函數以這種方式重載,以便您可以定製要添加到cookie中的數據。

Cookie cookie = new Cookie(); //you'll need to add args since there is not a no-args constructor 

一旦被實例化,將很容易:

driver.manage().addCookie(cookie); 

我會離開更精細的細節給你,但是這應該讓你開始。

相關問題