@dev-blinq/cucumber_client 1.0.1714-dev → 1.0.1716-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1234,7 +1234,7 @@ export class BVTRecorder {
|
|
|
1234
1234
|
[element_name ?? "element"]: allStrategyLocators
|
|
1235
1235
|
};
|
|
1236
1236
|
const result = await this.namesService.generateLocatorDescriptions({ locatorsObj: input });
|
|
1237
|
-
return result;
|
|
1237
|
+
return result[element_name ?? "element"];
|
|
1238
1238
|
}
|
|
1239
1239
|
async findRelatedTextInAllFrames({ searchString, climb, contextText, params, }) {
|
|
1240
1240
|
if (searchString.length === 0)
|
|
@@ -148,7 +148,7 @@ export class NamesService {
|
|
|
148
148
|
return result.data;
|
|
149
149
|
}
|
|
150
150
|
async generateLocatorDescriptions({ locatorsObj }) {
|
|
151
|
-
const url = `${getRunsServiceBaseURL()}/generate_locator_summaries`;
|
|
151
|
+
const url = `${getRunsServiceBaseURL()}/locate/generate_locator_summaries`;
|
|
152
152
|
const result = await axiosClient({
|
|
153
153
|
url,
|
|
154
154
|
method: "POST",
|