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
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const PostSaveOptions: FC<Props> = ({ jobRunner }) => {
datafeedState === DATAFEED_STATE.STARTING || datafeedState === DATAFEED_STATE.STARTED
}
onClick={startJobInRealTime}
data-test-subj="mlButtonUseFullData3"
data-test-subj="mlJobWizardButtonRunInRealTime"
>
<FormattedMessage
id="xpack.ml.newJob.wizard.summaryStep.postSaveOptions.startJobInRealTime"
Expand All @@ -95,7 +95,7 @@ export const PostSaveOptions: FC<Props> = ({ jobRunner }) => {
watchCreated === true
}
onClick={() => setWatchFlyoutVisible(true)}
data-test-subj="mlButtonUseFullData"
data-test-subj="mlJobWizardButtonCreateWatch"
>
<FormattedMessage
id="xpack.ml.newJob.wizard.summaryStep.postSaveOptions.createWatch"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ export function MachineLearningJobWizardCommonProvider({ getService }: FtrProvid
await retry.waitForWithTimeout(
'job processing to finish',
5 * 60 * 1000,
async () => (await testSubjects.exists('mlJobWizardButtonCreateJob')) === false
async () => await testSubjects.exists('mlJobWizardButtonRunInRealTime')
);
},
};
Expand Down