@@ -21,13 +21,10 @@ test.describe('start session', () => {
2121 await startSessionPage . sessionForm . waitFor ( { state : 'visible' } ) ;
2222 await startSessionPage . selectIdentificationMethod ( 'PERSONAL_INFO' ) ;
2323
24- // Verify the selection was made
2524 await expect ( startSessionPage . selectField ) . toHaveValue ( 'PERSONAL_INFO' ) ;
2625
27- // Fill the subject first name field
2826 await startSessionPage . fillSessionForm ( 'firstNameTest' , 'lastNameTest' , 'Male' ) ;
2927
30- // Verify the field was filled
3128 const firstNameField = startSessionPage . sessionForm . locator ( '[name="subjectFirstName"]' ) ;
3229 await expect ( firstNameField ) . toHaveValue ( 'firstNameTest' ) ;
3330
@@ -65,13 +62,10 @@ test.describe('start session', () => {
6562 await startSessionPage . sessionForm . waitFor ( { state : 'visible' } ) ;
6663 await startSessionPage . selectIdentificationMethod ( 'CUSTOM_ID' ) ;
6764
68- // Verify the selection was made
6965 await expect ( startSessionPage . selectField ) . toHaveValue ( 'CUSTOM_ID' ) ;
7066
71- // Fill the subject first name field
7267 await startSessionPage . fillCustomIdentifier ( 'customIdentifierTest' , 'Male' ) ;
7368
74- // Verify the field was filled
7569 const subjectIdField = startSessionPage . sessionForm . locator ( '[name="subjectId"]' ) ;
7670 await expect ( subjectIdField ) . toHaveValue ( 'customIdentifierTest' ) ;
7771
@@ -87,7 +81,3 @@ test.describe('start session', () => {
8781 await expect ( startSessionPage . successMessage ) . toBeVisible ( ) ;
8882 } ) ;
8983} ) ;
90-
91- // test.describe('start session with custom identifier', () => {
92-
93- // });
0 commit comments