0
我想用cookie通過硒測試來驗證登錄頁面。我正在使用的形式代碼:如何設置用於硒測試的cookie httprequest
selenium.createCookie("name=Cookie", value);
selenium.open("http://localhost/sample/Login");
但沒有結果。無法登錄。
我想用cookie通過硒測試來驗證登錄頁面。我正在使用的形式代碼:如何設置用於硒測試的cookie httprequest
selenium.createCookie("name=Cookie", value);
selenium.open("http://localhost/sample/Login");
但沒有結果。無法登錄。
您必須撥打selenium.open
才能找到與Cookie相同的域中的URL(本例中爲「http:// localhost/sample」)。然後你可以用適當的參數調用selenium.createCookie
。
TKS Joe編碼器,如果我使用selenium.createCookie之後的selenium.open,使用Firefox或Chrome瀏覽器,但使用IE瀏覽器則不行。爲什麼? –
我不知道,IE很爛。哈哈。只要堅持Selenium文檔,你會沒事的:) –