add: playwright test for import collection modal (#5487)

* add: playwright test for import collection modal
This commit is contained in:
Pooja
2025-09-03 19:14:08 +05:30
committed by GitHub
parent 457a2f83e7
commit de4674dcc4
42 changed files with 7488 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ const ModalHeader = ({ title, handleCancel, customHeader, hideClose }) => (
<div className="bruno-modal-header">
{customHeader ? customHeader : <>{title ? <div className="bruno-modal-header-title">{title}</div> : null}</>}
{handleCancel && !hideClose ? (
<div className="close cursor-pointer" onClick={handleCancel ? () => handleCancel() : null}>
<div className="close cursor-pointer" onClick={handleCancel ? () => handleCancel() : null} data-test-id="modal-close-button">
×
</div>
) : null}