Skip to content

Commit 5dc057e

Browse files
committed
fix break command
1 parent c9bd174 commit 5dc057e

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"description": "Selenium IDE alternative to record and export Selenium scripts. With reports & screenshots. Fast & open-source.",
33
"manifest_version": 2,
44
"name": "addon_name_placeholder",
5-
"version": "5.3.17",
5+
"version": "5.3.18",
66
"homepage_url":"https://www.katalon.com/",
77
"icons":
88
{

panel/js/background/playback.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -964,6 +964,10 @@ function doCommand() {
964964
}, 10);
965965
});
966966
return p.then(function() {
967+
if (commandName === 'break') {
968+
pause();
969+
return Promise.reject("shutdown");
970+
}
967971
if (commandName === '#') {
968972
return {
969973
result: 'success'

0 commit comments

Comments
 (0)