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', () => {
it('load page', () => {
cy.visit("https://ultimateqa.com/automation")
cy.get('.et_pb_text_inner > ul > :nth-child(3) > a').click()
})
})