Cypress Won’t Open Button to Type Form

Chrome vs Cypress

Click focus

Using Cypress 13.3.0

So I’ve tried doing a .click( {force: true} ) and all that, even attempted using .trigger(‘click’) on it, but it doesn’t seem to open the form so the next line can get it and type in it. The cursor Cypress shows is focused on it and it clicks, but it doesn’t seem to go anywhere. When I investigated the HTML elements, it seems to load a whole new area outside of the button. Any idea how I can fix this?

//image upload
cy.findByText(/Add existing Image/i).click({ force: true });
cy.get( //This wont open
'#edit-field-pac-publication-image-form-0-entity-id--wruseI7wRoU'
).type('test_0.jpeg (434)');