Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/App/src/components/ChatInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ export const ChatInput = React.memo(function ChatInput({
size="small"
onClick={handleSubmit}
disabled={!inputValue.trim() || isLoading}
aria-label="Send"
style={{
minWidth: '32px',
height: '32px',
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e-test/pages/HomePage.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class HomePage(BasePage):

# Input and send locators
ASK_QUESTION_TEXTAREA = "//input[@placeholder='Type a message']"
SEND_BUTTON = "//button[2]//span[1]"
SEND_BUTTON = "//button[@aria-label='Send']"

# Response and status locators
TYPING_INDICATOR = "//div[@class='typing-indicator']"
Expand Down
Loading