MCPcopy Index your code
hub / github.com/plotly/dash / test_mark005_table

Function test_mark005_table

components/dash-table/tests/selenium/test_markdown.py:115–134  ·  view source on GitHub ↗
(test)

Source from the content-addressed store, hash-verified

113
114
115def test_mark005_table(test):
116 test.start_server(get_app())
117
118 target = test.table("table")
119
120 target.column(4).sort(1)
121 assert (
122 target.cell(0, "markdown-tables")
123 .find_inside(".dash-cell-value > table > tbody > tr > td")
124 .get_attribute("innerHTML")
125 == "0"
126 )
127
128 target.column(4).sort(1)
129 assert (
130 target.cell(0, "markdown-tables")
131 .find_inside(".dash-cell-value > table > tbody > tr > td")
132 .get_attribute("innerHTML")
133 == "99"
134 )
135
136
137@pytest.mark.parametrize(

Callers

nothing calls this directly

Calls 7

columnMethod · 0.80
cellMethod · 0.80
get_appFunction · 0.70
start_serverMethod · 0.45
tableMethod · 0.45
sortMethod · 0.45
find_insideMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…