Expose Response Headers
Expose the page response headers to Navigator object to make them available from Selenium and other web drivers
什么是Expose Response Headers?
Expose Response Headers是由Alexander Kuzmenok开发的Chrome扩展程序,该扩展的主要功能是“Expose the page response headers to Navigator object to make them available from Selenium and other web drivers”。
下载Expose Response Headers扩展crx文件
下载Expose Response Headers扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is a technical extension to be used with web drivers like Selenium. It adds the so-needed functionality like providing response headers and response status code for requested urls. The available items go to Navigator object, under following properties: navigator.requestHeaders =; navigator.requestUrl = ; navigator.requestMethod = ; navigator.responseHeaders = ; navigator.responseStatusCode = ; navigator.responseStatusLine = ; navigator.responseUrl = ; navigator.responseMethod = ; To get those values, you typically need to get them by running a javascript in a page context, and returning the result. In Selenium, it would look something like this: var builder = new selenium.Builder().withCapabilities(selenium.Capabilities.chrome()); var options = new selenium_chrome.Options(); options.addExtensions(__dirname + "/response-headers.crx"); builder.setChromeOptions(options); var page = builder.build(); page.then(function() { // load your url here }, function(err) { // error creating browser }); /// then somewhere after loading the url, you would do page.executeScript(function() { return { statusCode: navigator.responseStatusCode } }).then(function(obj) { // now you have obj.statusCode }); Gist example: https://gist.github.com/javascriptlove/4a00c4931c4c83287f4efd6c23fd02ed
扩展基本信息
名称 | |
ID | omlflgllokdkamhdgiaalffaeopelagg |
官方URL | https://chromewebstore.google.com/detail/expose-response-headers/omlflgllokdkamhdgiaalffaeopelagg |
简介 | Expose the page response headers to Navigator object to make them available from Selenium and other web drivers |
文件大小 | 20.04 KB |
安装次数 | 17 |
当前版本 | 1.0.1 |
更新时间 | 2017-03-02 |
上架时间 | 2017-03-02 |
开发者 | Alexander Kuzmenok |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_start" } ], "description": "Expose the page response headers to Navigator object to make them available from Selenium and other web drivers", "icons": { "128": "icon128.png" }, "manifest_version": 2, "name": "Expose Response Headers", "permissions": [ "webRequest", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0.1" } |