asserts on the text initially present in the prompt
(expected *TextMatcher)
| 20 | |
| 21 | // asserts on the text initially present in the prompt |
| 22 | func (self *PromptDriver) InitialText(expected *TextMatcher) *PromptDriver { |
| 23 | self.getViewDriver().Content(expected) |
| 24 | |
| 25 | return self |
| 26 | } |
| 27 | |
| 28 | func (self *PromptDriver) Type(value string) *PromptDriver { |
| 29 | self.t.typeContent(value) |
nothing calls this directly
no test coverage detected