Spaces:
Runtime error
Runtime error
ArvindSelvaraj
commited on
Commit
•
384d1cc
1
Parent(s):
0244288
Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ if st.button("Generate Test Cases"):
|
|
22 |
|
23 |
# Export test cases
|
24 |
st.sidebar.title("Export Test Cases")
|
25 |
-
if st.sidebar.button("Export Test Cases", key="export_button"):
|
26 |
if 'test_cases' in st.session_state:
|
27 |
test_cases = st.session_state.test_cases
|
28 |
export_content = backend.export_test_cases(test_cases, 'csv')
|
|
|
22 |
|
23 |
# Export test cases
|
24 |
st.sidebar.title("Export Test Cases")
|
25 |
+
if st.sidebar.button("Export Test Cases as CSV", key="export_button"):
|
26 |
if 'test_cases' in st.session_state:
|
27 |
test_cases = st.session_state.test_cases
|
28 |
export_content = backend.export_test_cases(test_cases, 'csv')
|