SO中文参考
首页
(current)
程序语言
c
java
python
c++
go
javascript
swift
c#
操作系统
linux
ubuntu
centos
unix
数据库
oracle
mysql
mongodb
postgresql
框架
node.js
angular
react-native
avalon
django
twisted
hadoop
.net
移动开发
android
ios
搜索
html 中的 api 响应。当我尝试保存响应时,karate.readAsString() 抛出错误400 请求标头或 Cookie 太多...</desc> <question vote="1"> <p>我正在使用空手道框架,我收到 html 格式的 api 响应,但我在验证时遇到问题</p> <p>回复:-</p> <pre><code><html> <head><title>400 Request Header Or Cookie Too Large</title></head> <body> <center><h1>400 Bad Request</h1></center> <center>Request Header Or Cookie Too Large</center> </body> </html> </code></pre> <p>我如何提取:-</p> <p>标题中的“400 请求标头或 Cookie 太大” 来自中心的“请求标头或 Cookie 太大” ----------x--------------x----------------x----- --------</p> <p>我的代码:</p> <pre><code>Given: xxx Whwn: xxx Then status 400 * print 'printing response' * print response * def text = karate.readAsString(response). #throws error #(No such file or directory) * def token = karate.extract(text, ??? , ???) </code></pre> <p>请帮忙。预先感谢</p> </question> <answer tick="false" vote="0"> <p>在这种情况下,<pre><code>response</code></pre>已经是一个字符串,所以只需使用它即可。参考:<a href="https://github.com/karatelabs/karate#responsetype" rel="nofollow noreferrer">https://github.com/karatelabs/karate#responsetype</a></p> <pre><code>* def token = karate.extract(response, ??? , ???) </code></pre> </answer> </body></html>
问题描述
投票:0
回答:0
api
automated-tests
karate
最新问题
隐藏页面中的 FullCalendar SchedulerLicenseKey
根据另一个表的结果从一个表中选择计数
Python 子进程仅在 cron 中返回非零退出状态
ActiveMQ XStream ForbiddenClassException
在 MacOS Sequoia 上挂载 Windows 共享
ProcessError:警告:无法删除_next/static/.../:权限被拒绝
在浏览器中将图像从 PHP 导入到 PDFKit 时出现问题 - fs.readFileSync 不是函数
将 null 设置为输入字段的空字符串值
'错误:应指定插件名称'@svgr/webpack svgoConfig
如何在Cartopy中应用具有极地立体投影的地球特征和陆地/海洋掩模?
严格两相锁定示例
Firebase Analytics logEvent 异步运行
当refit=True时,为什么要在RandomizedSearchCV之后进行额外的拟合?
通过子字符串列表过滤DataFrame
在docker中使用buildkit并运行--mount,为什么cabal install下载缓存的包?
在分离器中读取多个帧
为什么 tls.Client 失败并显示消息:第一条记录看起来不像 TLS 握手
大师冥想错误:ESP32 上的 Core 1 Panic'ed(禁止加载)
从 PDF 中提取包含空单元格且没有可见边缘的表格
打开表单时输入参数值对话框
© www.soinside.com 2019 - 2024. All rights reserved.