We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89ac607 commit 8400bb6Copy full SHA for 8400bb6
e2e/data_frame/test_data_frame.py
@@ -321,3 +321,11 @@ def _filter_test_impl(
321
select_dataset.set("anagrams")
322
select_dataset.expect.to_have_value("anagrams")
323
expect(summary).to_have_text(re.compile(" of 20"))
324
+
325
326
+def test_filter_disable(page: Page, data_frame_app: ShinyAppProc):
327
+ page.goto(data_frame_app.url)
328
329
+ expect(page.locator("tr.filters")).to_be_attached()
330
+ InputSwitch(page, "filters").toggle()
331
+ expect(page.locator("tr.filters")).not_to_be_attached()
0 commit comments