с использованием функций readFile () и writeFile () из excel js в cypress - PullRequest
0 голосов
/ 05 августа 2020

Мне нужно обновить лист Excel после выполнения нескольких строк кода в cypress; Excel js позволяет нам сделать это с помощью функции readFile (), затем обновить значение в определенной ячейке и, наконец, сохранить файл с помощью функции writeFile (), как показано ниже enter image description here

The shown code works perfectly, but I need to add this to my cypress project. When I do this cypress ignores this piece of code. I am calling the following two functions to verify the output:

  cy.updateMySheet('qaautomation.xlsx')  
  cy.myFunction('my sample text!') 

Both of these functions are custom commands as cypress allows us to do so using the command.js file present in the cypress/support/ folder.

  • The first function, updateMySheet(), is the one that has the issue
  • The second function is just written to show that there is no error in using custom commands

I have added some cy.log('here') commands at multiple places to see where the issue is and as seen in the output, the control never enters the scope of the readFile() function enter image description here

Output

введите описание изображения здесь

Как я могу интегрировать показанный фрагмент кода с Cypress?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...