Members


<inner> Given we have started embedded server

Description

Initializes the CAP service in embedded mode utilizing the model of the current application, enabling port rotation and configuring the sqlite database usage with in-memory option.

Examples
Given we have started embedded server

<inner> Given we require communication protocol {string}

Description

require the specified protocol to use for communication with the service

Parameters
Name Type Description
protocol string

name to use for communication

Examples
Given we require communication protocol "odata-v2"

<inner> Given we have connected to service {word}

Description

Connects to the specified service

Parameters
Name Type Description
serviceName word

name of the service to connect to

Examples
Given we have connected to service bookshop

<inner> Given we have connected to service {word} as user {string} with password {string}

Description

Connects to the specified service using the provided credentials

Parameters
Name Type Description
serviceName word

name of the service to connect to

username string

name of the user to connect with

password string

valid password to use for authentication

Examples
Given we have connected to service bookshop as user "alice" with password "secret"

<inner> Given we have connected to service {word} in directory {string} as user {string} with password {string}

Description

Connects to the specified service located in the mentioned directory using the provided credentials

Parameters
Name Type Description
serviceName word

name of the service to connect to

directory string

name of the directory where the service is located

username string

name of the user to connect with

password string

valid password to use for authentication

Examples
Given we have connected to service bookshop in directory "fiori" as user "alice" with password "secret"