私はphpunitとseleniumを使用して、プロジェクトの機能テストを作成しています。私が探しているのは、Response-headerを取得する方法です
.js
拡張子がないが、コードとしてjavascriptを返すURLがいくつかあります。
私が探しているのは、関数content-type
で開かれたURLのヘッダー情報(特に)です$this->open();
例:
//if I do
$this->open('http://stackoverflow.com');
// or
$this->open('http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js')
// and then use some function like
$this->getResponseHeaders();
// returns me array of header information or
// some function just for content type
$this->getContentType();
// which return text/html or text/javascript
セレンがこの機能を提供する方法や、詳細を取得するためのハックやトリックはありますか?セレンのドキュメントとTestCaseファイルを調べましたが、それに近いものは見つかりませんでした。