Selenium WebDriver处理cookie
作者:网络转载 发布时间:[ 2014/10/9 13:56:57 ] 推荐标签:Selenium 软件测试 cookie
在使用webdriver测试中,很多地方都使用登陆,cookie能够实现不必再次输入用户名密码进行登陆。
首先了解一下Java Cookie类的一些方法。
在jsp中处理cookie数据的常用方法:
getDomain();返回cookie的域名.
getMaxAge();返回cookie的存活时间
getName();返回cookie的名字
getPath();返回cookie适用的路径
getSecure();如果浏览器通过安全协议发送Cookie将返回true值,如果浏览器使用标准协议刚返回false值
getValue();返回cookie的值
getVersion();返回cookie所遵从的协议版本setComment(String purpose);设置cookie的注释
setPath(String url);设置Cookie的适用路径
setSecure(Boolean flag);设置浏览器是否仅仅使用安全协议来发送cookie,例如使用Https或ssl
setValue(String newvalue);cookie创建后设置一个新的值
setVersion(int v);设置cookie所遵从的协议版本
selenium WebDriver 通过driver.manage().getCookies() 和driver.manage().addCookie(ck); 获取cookie 加载cookie
首先,获取cookie 保存的browser.data内
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.Cookie;
public class Cookies {
public static void main(String[] args) {
WebDriver driver=DriverFactory.create();
driver.get("http://selenium.jd-app.com/wp-login.php");
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
WebElement user = driver.findElement(By.xpath("//*[@id='user_login']"));
user.clear();
user.sendKeys("username");
WebElement password = driver.findElement(By
.xpath("//*[@id='user_pass']"));
password.clear();
password.sendKeys("password");
WebElement submit=driver.findElement(By.xpath("//*[@id='wp-submit']"));
submit.submit();
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
File file=new File("broswer.data");
try
{
//delete file if exists
file.delete();
file.createNewFile();
FileWriter fw=new FileWriter(file);
BufferedWriter bw=new BufferedWriter(fw);
for(Cookie ck:driver.manage().getCookies())
{
bw.write(ck.getName()+";"+ck.getValue()+";"+ck.getDomain()+";"+ck.getPath()+";"+ck.getExpiry()+";"+ck.isSecure());
bw.newLine();
}
bw.flush();
bw.close();
fw.close();
}
catch(Exception e)
{
e.printStackTrace();
}
finally
{
System.out.println("cookie write to file");
}
}
}
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11