作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下情况:
最佳答案
您可以使用headers
属性指定标题,如下所示:
describe('Test Cypress Custom Headers', function() {
it('Visits Cypress Header Test Endpoint', function() {
const Key = "test-key1";
cy.visit({
// An endpoint that expects a x-xhr-url header to grand access
url: 'https://zikro.gr/dbg/so/59666650',
headers: {
"x-xhr-url": Key
}
});
cy.contains(`Access key: ${Key}`);
})
});
request
:
describe('Test Cypress Custom Headers', function() {
it('Visits Cypress Header Test Endpoint', function() {
const Key = "test-key1";
cy.request({
url: 'https://zikro.gr/dbg/so/59666650',
headers: {
"x-xhr-url": Key
}
})
.its('body').should('include', `Access key: ${Key}`);
});
});
$headers = getallheaders();
if(isset($_SERVER['HTTP_X_XHR_URL'])) {
echo "Access key: {$_SERVER['HTTP_X_XHR_URL']}";
} else {
echo "Access denied";
}
server
onAnyRequest
,然后在其中使用
proxy
设置
xhr
header ,如下所示:
describe('Test Cypress Custom Headers', function() {
it('Visits Cypress Header Test Endpoint', function() {
const Key = "test-key1";
cy.server({
onAnyRequest: (route, proxy) => {
proxy.xhr.setRequestHeader('x-xhr-url', Key);
}
});
cy.visit('https://zikro.gr/dbg/so/59666650/test-ajax.html');
// Should pass the test of an AJAX call
cy.contains(`Access key: ${Key}`);
});
});
关于cypress - 如何将标题添加到xhr-request,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59666650/
我是一名优秀的程序员,十分优秀!