0

我正在使用 selenium.open() 打开一个 URL,它将 cookie 输出打印到浏览器窗口:

String cookiestr = "http://my.server.com/cookie?out=text";
selenium.open( cookiestr );

问题是,它会打开一个“另存为...”弹出窗口,以保存名为“cookie”的文件。当我直接在浏览器中打开相同的 URL 时,它会在浏览器窗口中显示文本。

我想在打开 URL 时捕获显示的正文,但无法这样做。有没有其他可用的命令可以用来执行此操作?

BufferedWriter outputfile = null;
String bodytext = selenium.getBodyText();
System.out.println("Body Text  :" + bodytext);
Integer I = new Integer(i);
filename = "C:\\cookies\\" + I.toString() + ".txt";
outputfile = new BufferedWriter(new FileWriter( filename ));
outputfile.write( bodytext );
outputfile.newLine();
i++;
4

1 回答 1

1

您的cookieservlet 应设置内容类型:

response.setContentType("text/plain");
于 2010-05-27T07:19:38.743 回答