playwright.controller.InputText
playwright.controller.InputText(self, page, id)
Controller for shiny.express.ui.input_text
.
Attributes
expect |
Expectation method equivalent to playwright.expect(self.loc) . |
id |
The browser DOM id of the UI element. |
loc |
Playwright Locator of the UI element. |
loc_container |
Playwright Locator for the container of the UI element. |
loc_label |
Playwright Locator for the label of the UI element. |
page |
Playwright Page of the Shiny app. |
Methods
expect_autocomplete |
Expect the autocomplete attribute of the input to have a specific value. |
expect_label |
Expect the label of the input to have a specific text. |
expect_placeholder |
Expect the placeholder attribute of the input to have a specific value. |
expect_spellcheck |
Expect the spellcheck attribute of the input to have a specific value. |
expect_value |
Expect the value of the text input to have a specific value. |
expect_width |
Expect the input element to have a specific width. |
set |
Sets the text value |
expect_autocomplete
playwright.controller.InputText.expect_autocomplete(value, *, timeout=None)
Expect the autocomplete
attribute of the input to have a specific value.
Parameters
value |
AttrValue |
The expected value of the autocomplete attribute. |
required |
timeout |
Timeout |
The maximum time to wait for the expectation to be fulfilled. Defaults to None . |
None |
expect_label
playwright.controller.InputText.expect_label(value, *, timeout=None)
Expect the label of the input to have a specific text.
Parameters
value |
PatternOrStr |
The expected text value of the label. |
required |
timeout |
Timeout |
The maximum time to wait for the expectation to be fulfilled. Defaults to None . |
None |
expect_placeholder
playwright.controller.InputText.expect_placeholder(value, *, timeout=None)
Expect the placeholder
attribute of the input to have a specific value.
Parameters
value |
AttrValue |
The expected value of the placeholder attribute. |
required |
timeout |
Timeout |
The maximum time to wait for the expectation to be fulfilled. Defaults to None . |
None |
expect_spellcheck
playwright.controller.InputText.expect_spellcheck(value, *, timeout=None)
Expect the spellcheck
attribute of the input to have a specific value.
Parameters
value |
Literal[‘true’, ‘false’] | None |
The expected value of the spellcheck attribute. |
required |
timeout |
Timeout |
The maximum time to wait for the expectation to be fulfilled. Defaults to None . |
None |
expect_value
playwright.controller.InputText.expect_value(value, *, timeout=None)
Expect the value of the text input to have a specific value.
Parameters
value |
PatternOrStr |
The expected value of the text input. |
required |
timeout |
Timeout |
The maximum time to wait for the expectation to be fulfilled. Defaults to None . |
None |
expect_width
playwright.controller.InputText.expect_width(value, *, timeout=None)
Expect the input element to have a specific width.
Parameters
value |
AttrValue |
The expected width. |
required |
timeout |
Timeout |
The maximum time to wait for the expectation to be fulfilled. Defaults to None . |
None |
set
playwright.controller.InputText.set(value, *, timeout=None)
Sets the text value
Parameters
value |
str |
The text to set. |
required |
timeout |
Timeout |
The maximum time to wait for the text to be set. Defaults to None . |
None |