playwright.controller.OutputCode
playwright.controller.OutputCode(self, page, id)
Controller for shiny.express.ui.output_code
.
Attributes
id |
The ID of the output control. |
loc |
Playwright Locator of the code output. |
page |
Playwright Page of the Shiny app. |
Methods
expect_has_placeholder
playwright.controller.OutputCode.expect_has_placeholder(
value=False,
*,
timeout=None,
)
Asserts that the code output has the expected placeholder.
Parameters
value |
bool |
Whether the code output has a placeholder. |
False |
timeout |
Timeout |
The maximum time to wait for the placeholder to appear. Defaults to None . |
None |
expect_value
playwright.controller.OutputCode.expect_value(value, *, timeout=None)
Asserts that the output has the expected value.
Parameters
value |
PatternOrStr |
The expected value. |
required |
timeout |
Timeout |
The maximum time to wait for the value to appear. Defaults to None . |
None |