waitforReply
codebolt.chat.waitforReply(message: string): Promise<string>
Waits for a reply to a sent message.
Parameters
Name | Type | Description |
---|---|---|
message | string | The message for which a reply is expected. |
Returns:
Promise<string>
A promise that resolves with the reply.Example:
const message = await codebolt.chat.waitforReply(message: string)
Explaination
The codebolt.chat.waitforReply(message: string) function is used to send a message on the codebolt chat and wait for the reply. This function enables real-time communication by allowing the script to send text messages on the codebolt chat. This function returns the reply message, which we can store in a variable and use.