我有一个包含以下内容的功能文件。
Feature: Webservices Testing
I want to use this template for my feature file
Background:
* url 'http://101.154.221.189:9101/search/InvGuidedSearchService?wsdl'
@Scenario1
Scenario: Get Available Units
Given request 'testdata'
When method post
Then status 200
* print 'Response of GetAvailableUnits:', response
@Scenario2
Scenario: GetMember Preferences
* url 'http://101.231.121.211:9211/extn/scep/MemberPreferencesService'
Given request 'testdata'
When method post
Then status 200
* print 'Response of GetMemberPreferences:', response
* table testdata
|file_name|
|'getAvailableUnitDetail.xml'|
|'getMemberPreferences.json'|
为了从表数据中读取文件请求文件,我需要使用什么代码过程?对于上面的代码,我收到错误消息并且它不起作用。
此代码中需要更正的内容是什么?
谢谢
首先了解应该如何读取黄瓜中的数据表。不久前我写了一篇博客文章概述了这一点。阅读并实现示例。它应该给你足够的知识来解决你当前的问题。