2022-01-10 16:20:32 +00:00
|
|
|
Feature: The Excel API client
|
2022-01-11 11:14:13 +00:00
|
|
|
# ======================== Excel New method ========================
|
|
|
|
Scenario: Using the Excel New method
|
|
|
|
Given an Excel client
|
|
|
|
When the Excel New method is called
|
|
|
|
Then a new Excel sheet must be created
|
2022-01-10 16:20:32 +00:00
|
|
|
|
|
|
|
# ======================== Excel Write method ========================
|
2022-01-11 11:14:13 +00:00
|
|
|
Scenario: Using the Excel Write method
|
|
|
|
Given an Excel client
|
|
|
|
And an Excel sheet
|
|
|
|
When the Excel Write method is called on this sheet to write
|
|
|
|
Then the writing must be successful
|
|
|
|
|
|
|
|
# ======================== Excel Read method ========================
|
|
|
|
Scenario: Using the Excel Read method
|
|
|
|
Given an Excel client
|
|
|
|
And an Excel sheet
|
|
|
|
And the text "churros" text written in the A1 cell
|
|
|
|
When the Excel Read method is called
|
|
|
|
Then the word "churros" must be returned in the position [0][0]
|