Browse Source

Update chat.cy.ts

Timothy J. Baek 1 year ago
parent
commit
2789102d27
1 changed files with 2 additions and 2 deletions
  1. 2 2
      cypress/e2e/chat.cy.ts

+ 2 - 2
cypress/e2e/chat.cy.ts

@@ -21,14 +21,14 @@ describe('Settings', () => {
 			// Click on the model selector
 			// Click on the model selector
 			cy.get('button[aria-label="Select a model"]').click();
 			cy.get('button[aria-label="Select a model"]').click();
 			// Select the first model
 			// Select the first model
-			cy.get('div[role="menuitem"][data-value]').first().click();
+			cy.get('div[role="menuitem"]').first().click();
 		});
 		});
 
 
 		it('user can perform text chat', () => {
 		it('user can perform text chat', () => {
 			// Click on the model selector
 			// Click on the model selector
 			cy.get('button[aria-label="Select a model"]').click();
 			cy.get('button[aria-label="Select a model"]').click();
 			// Select the first model
 			// Select the first model
-			cy.get('div[role="menuitem"][data-value]').first().click();
+			cy.get('div[role="menuitem"]').first().click();
 			// Type a message
 			// Type a message
 			cy.get('#chat-textarea').type('Hi, what can you do? A single sentence only please.', {
 			cy.get('#chat-textarea').type('Hi, what can you do? A single sentence only please.', {
 				force: true
 				force: true