-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Voice search capability #373
base: dev
Are you sure you want to change the base?
Conversation
Invalid PR title. It must start with feat: or fix: or BREAKING CHANGE: or feat(): or fix(): or BREAKING CHANGE():. Please see our Contributing-Guide. |
@@ -109,3 +109,13 @@ When('AppObject state for {string} is set to {string}', (app, state) => { | |||
cy.log('Setting ' + appId + ' appObject state to ' + state); | |||
}); | |||
}); | |||
|
|||
Given(/I send '([^']+)' voice command/, (command) => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Give info about the glue and its usage
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Given(/I send '([^']+)' voice command/, (command) => { | ||
cy.sendVoiceCommand(command).then((result) => { | ||
if (result && result.success === true) { | ||
fireLog.assert(true, `Voice command '${command}' was sent successfully.`); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we make the log more descriptive
cy.sendVoiceCommand(command).then((result) => { | ||
if (result && result.success === true) { | ||
fireLog.assert( | ||
true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update readme for all new glue, commands and request overrides
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
No description provided.