, когда я отменяю определенные проверки, это приводит к сбою схемы сценария, где в шагах пропускаются. Я ожидал, что состояние схемы сценария будет «Пройдено», а не «не выполнено». Версия от Pom. xml и код файла функции, который я прикрепил здесь. Пожалуйста, дайте мне знать, если что-то здесь отсутствует или не так.
Можете ли вы помочь.
'
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.abc</groupId>
<artifactId>automate</artifactId>
<version>1</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<maven.compiler.version>3.6.0</maven.compiler.version>
<karate.version>0.9.4</karate.version>
</properties>
<dependencies>
<dependency>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-apache</artifactId>
<version>${karate.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.intuit.karate</groupId>
<artifactId>karate-junit4</artifactId>
<version>${karate.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.masterthought</groupId>
<artifactId>cucumber-reporting</artifactId>
<version>3.18.0</version>
</dependency>
</dependencies>
<build>
<testResources>
<testResource>
<directory>src/test/java</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.version}</version>
<configuration>
<encoding>UTF-8</encoding>
<source>${java.version}</source>
<target>${java.version}</target>
<compilerArgument>-Werror</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>
</project>
address.feature
* def version = '3'
* def query = {query:'<query>', country:'<country>', take:'5'}
Given url baseUrl
And path '/api/address/v' + version + '/suggestions
And params query
And header Auth-Token = <header>
When method get
Then match responseStatus == <status>
## Exiting to execute further steps in case of 400 response as results array will not be returned in the response
* if ( responseStatus == 400 ) karate.abort()
And match response.results == []
And match $.length() == 1
Examples:
| header | query | country | status |
| addressV3Token | 11122222 | AUS | 200 |
| addressV3Token | 14444444 | AUS| 200 |
| addressV3Token | 100 Elizabeth avenue | USA | 400 |