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.
ui.separator
1 parent b2fe576 commit 5314a80Copy full SHA for 5314a80
tests/test_separator.py
@@ -4,13 +4,13 @@
4
5
def test_separator(screen: Screen):
6
@ui.page('/column')
7
- def index():
+ def page_column():
8
with ui.column():
9
ui.button('1')
10
ui.separator()
11
ui.button('2')
12
@ui.page('/row')
13
+ def page_row():
14
with ui.row():
15
16
ui.separator().props('vertical')
@@ -23,3 +23,4 @@ def index():
23
screen.wait(0.5)
24
screen.open('/row')
25
assert screen.find_by_tag('hr').value_of_css_property('width') == '1px'
26
+
0 commit comments