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.
1 parent b973b0e commit 00e8099Copy full SHA for 00e8099
packages/selenium-ide/src/neo/stores/view/PlaybackState.js
@@ -160,6 +160,7 @@ class PlaybackState {
160
}
161
162
@action.bound resetState() {
163
+ UiState.stopRecording();
164
this.clearCommandStates();
165
this.currentPlayingIndex = 0;
166
this.finishedTestsCount = 0;
packages/selenium-ide/src/neo/stores/view/UiState.js
@@ -161,6 +161,10 @@ class UiState {
this.isRecording = !this.isRecording;
+ @action.bound stopRecording() {
+ this.isRecording = false;
+ }
167
+
168
@action.bound setSelectingTarget(isSelecting) {
169
this.isSelectingTarget = isSelecting;
170
0 commit comments