Questions tagged [cypress-log]

2 questions
4
votes
1 answer

Hide URL in Cypress Info Panel

When I run a Cypress test, every time the test executes some action the URL is shown in the Info Panel on the left. Unfortunately the URL is very long and it makes the Info Panel unreadable. Is there a way to hide to URL? describe('Test', () => { …
Hans Geber
  • 111
  • 8
0
votes
3 answers

Is there a way of creating log file from Cypress GUI log panel

I want to get the logs written in a log file for the execution. I am trying to create a cypress spec and I want to have log files generated for the operations performed on webpage. There is cy.log() to log something custom but the logs are there…