We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7a5344e + 965c60b commit d5b6cebCopy full SHA for d5b6ceb
2 files changed
src/App/src/components/ChatInput.tsx
@@ -122,6 +122,7 @@ export const ChatInput = React.memo(function ChatInput({
122
size="small"
123
onClick={handleSubmit}
124
disabled={!inputValue.trim() || isLoading}
125
+ aria-label="Send"
126
style={{
127
minWidth: '32px',
128
height: '32px',
tests/e2e-test/pages/HomePage.py
@@ -24,7 +24,7 @@ class HomePage(BasePage):
24
25
# Input and send locators
26
ASK_QUESTION_TEXTAREA = "//input[@placeholder='Type a message']"
27
- SEND_BUTTON = "//button[2]//span[1]"
+ SEND_BUTTON = "//button[@aria-label='Send']"
28
29
# Response and status locators
30
TYPING_INDICATOR = "//div[@class='typing-indicator']"
0 commit comments