From a56213d9cd10cc79ff76cefcd7c0e4fd66125c44 Mon Sep 17 00:00:00 2001 From: Anna Iustus Date: Thu, 17 Aug 2023 10:08:10 +0200 Subject: [PATCH] docs: update version --- manifest.json | 2 +- package.json | 2 +- src/features/locators/reducers/runLocatorsGeneration.thunk.ts | 2 -- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/manifest.json b/manifest.json index 907406b56..8bff19e6f 100644 --- a/manifest.json +++ b/manifest.json @@ -3,7 +3,7 @@ "name": "JDN", "description": "JDN – helps Test Automation Engineer to create Page Objects in the test automation framework and speed up test development", "devtools_page": "index.html", - "version": "3.13.558", + "version": "3.13.559", "icons": { "128": "icon128.png" }, diff --git a/package.json b/package.json index 9af72d639..08b458353 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jdn-ai-chrome-extension", - "version": "3.13.558", + "version": "3.13.559", "description": "jdn-ai chrome extension", "scripts": { "start": "webpack --watch --env devenv", diff --git a/src/features/locators/reducers/runLocatorsGeneration.thunk.ts b/src/features/locators/reducers/runLocatorsGeneration.thunk.ts index 3fc085eba..f342b9459 100644 --- a/src/features/locators/reducers/runLocatorsGeneration.thunk.ts +++ b/src/features/locators/reducers/runLocatorsGeneration.thunk.ts @@ -44,8 +44,6 @@ export const runLocatorsGeneration = createAsyncThunk( const toGenerateXpaths: Locator[] = getXpathsForGeneration(); - console.log("toGenerateXpaths", toGenerateXpaths); - const toGenerateCss = generateMissingLocator || generateCssSelector ? filterLocatorsByClassFilter(locators, filter).filter(({ locator }) => !locator || !locator.cssSelector)