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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |