com.github.mvysny.kaributesting.v10.Messages.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of karibu-testing-v10 Show documentation
Show all versions of karibu-testing-v10 Show documentation
Karibu Testing, support for browserless Vaadin testing in Kotlin
package com.github.mvysny.kaributesting.v10
import com.vaadin.flow.component.messages.MessageInput
/**
* Fires the [MessageInput.SubmitEvent] event.
*/
public fun MessageInput._submit(message: String) {
_expectEditableByUser()
_fireEvent(MessageInput.SubmitEvent(this, true, message))
}