Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# Version 15
### [15.0.0] [January 21, 2022]
- **[Change]** action_disable is flipped

# Version 14
### [14.9.0] [January 21, 2022]
- **[Add]** Added **Python Expression** evaluation inside our `%||%` syntax
Expand Down
1 change: 1 addition & 0 deletions Framework/MainDriverApi.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@ def run_all_test_steps_in_a_test_case(
all_action_data_set.append(action_dataset)
dict = {}
dict["Action disabled"] = True if action_info["action_disabled"] == False else False
dict["Action disabled"] = not dict["Action disabled"]
dict["Action name"] = action_info["action_name"]
all_action_Info.append(dict)
all_step_dataset.append(all_action_data_set)
Expand Down
2 changes: 1 addition & 1 deletion Framework/Version.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[ZeuZ Python Version]
version = 14.9.0
version = 15.0.0
[Release Date]
date = January 21, 2022