Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法指定要设置 cookie 的域。
我按照这种方式
selenium.open(example.com); selenium.createCookie(arg1, arg2);
有什么方法可以在 .example.com 域中设置 cookie?
注意:如果我打开 example.com,它将被重定向到 www.example.com
selenium.open(...); selenium.createCookie("name=value", "domain=.example.com");
http://selenium.googlecode.com/svn/tags/selenium-2.0-rc-2/docs/api/java/com/thoughtworks/selenium/Selenium.html#createCookie%28java.lang.String%2C%20java。 lang.String%29