playwright.controller.InputActionLink
self, page, id) playwright.controller.InputActionLink(
Controller for shiny.express.ui.input_action_link.
Attributes
Name | Description |
---|---|
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. |
page | Playwright Page of the Shiny app. |
Methods
Name | Description |
---|---|
click | Clicks the input action. |
expect_label | Expect the label of the input button to have a specific value. |
click
=None, **kwargs) playwright.controller.InputActionLink.click(timeout
Clicks the input action.
Parameters
Name | Type | Description | Default |
---|---|---|---|
timeout | Timeout |
The maximum time to wait for the input action to be clicked. Defaults to None . |
None |
expect_label
*, timeout=None) playwright.controller.InputActionLink.expect_label(value,
Expect the label of the input button to have a specific value.
Note: This must include the icon if it is present!
Parameters
Name | Type | Description | Default |
---|---|---|---|
value | PatternOrStr |
The expected value of the label. | required |
timeout | Timeout |
The maximum time to wait for the expectation to be fulfilled. Defaults to None . |
None |