diff --git a/static/tests/test-classic-4-lite.koboldai.net.spec.ts b/static/tests/test-classic-4-lite.koboldai.net.spec.ts index 07490ffd60ef5fbab30bb3901f6e8360e10b9347..73bd2c4abb36c78b9e376cde600053d8359e6cf3 100644 --- a/static/tests/test-classic-4-lite.koboldai.net.spec.ts +++ b/static/tests/test-classic-4-lite.koboldai.net.spec.ts @@ -1,4 +1,4 @@ -import {test, expect, WorkerInfo, Page, TestInfo} from '@playwright/test'; +import {test, expect, Page, TestInfo} from '@playwright/test'; import { deleteCustomSynonym, ensureThesaurusPanelClosed, @@ -53,6 +53,7 @@ test(`test My Ghost Writer: backend request - word with no synonyms, then add a await page.getByRole('button', { name: 'thesaurus-custom-button-internal0' }).click(); // try to submit immediately, we'll get an error because we didn't fill the forms const thesaurusCustomSubmitBtn = page.getByRole('button', { name: 'thesaurus-custom-submit' }) + await thesaurusCustomSubmitBtn.click() await handleDialogWithExpectedMessage({page, locator: thesaurusCustomSubmitBtn, expectedText: "Please enter a word."}) await page.waitForTimeout(200) @@ -68,7 +69,6 @@ test(`test My Ghost Writer: backend request - word with no synonyms, then add a await page.getByRole('textbox', { name: 'thesaurus-custom-related-words-0nth' }).click(); await page.getByRole('textbox', { name: 'thesaurus-custom-related-words-0nth' }).fill('cheerful,joy'); await page.getByRole('button', { name: 'thesaurus-custom-related-btn-' }).click(); - console.log("#") await page.getByLabel('thesaurus-custom-related-type-1nth', { exact: true }).selectOption('antonym'); await page.getByRole('textbox', { name: 'thesaurus-custom-related-words-1nth' }).click(); @@ -83,10 +83,9 @@ test(`test My Ghost Writer: backend request - word with no synonyms, then add a await expect(page.getByLabel('thesaurus-custom-form-content')).toMatchAriaSnapshot({ name: `test-classic-4-0-wordsearch_results-2-${projectName}-${state}.txt` }); await page.getByRole('textbox', { name: 'thesaurus-custom-related-words-2nth' }).click(); await page.getByRole('textbox', { name: 'thesaurus-custom-related-words-2nth' }).fill('joyful,happyness,content'); + await thesaurusCustomSubmitBtn.click() - await handleDialogWithExpectedMessage({page, locator: thesaurusCustomSubmitBtn, expectedText: "Thesaurus entry added successfully!"}) await page.waitForTimeout(200) - await ensureThesaurusPanelClosed(page); // re-open the right panel with the thesaurus results for 'happy': this time we'll find the synonynms we submitted before (WIP: only the first group right now) await page.getByRole('link', { name: 'id-a-candidate-0-nth' }).click(); diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts b/static/tests/test-classic-5-lite.koboldai.net.spec.ts new file mode 100644 index 0000000000000000000000000000000000000000..bafd3a5a9a7c9a7b0aa7dc4fcd94700f438caab1 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts @@ -0,0 +1,110 @@ +import {test, expect, Page, TestInfo} from '@playwright/test'; +import { + deleteCustomSynonym, + ensureThesaurusPanelClosed, + ensureThesaurusPanelOpen, + fillInputFieldWithString, + initTest, + openMobileMenu +} from './test-helper'; + +const testStoryJsonTxt = `${import.meta.dirname}/../../tests/events/very_long_text_test4.json` + +test(`test My Ghost Writer: test the notification center wqith ok and not ok fetch`, async ({ page }: { page: Page }, workerInfo: TestInfo) => { + console.log("process.env.DOMAIN_PORT_BACKEND:", process.env.DOMAIN_PORT_BACKEND, "#") + const backendDomain = `${process.env.DOMAIN_PORT_BACKEND}` ?? "http://localhost:7860" + console.log("thesaurusDomain:", backendDomain, "#") + const projectName = await initTest({ page, workerInfo, filepath: testStoryJsonTxt }) + console.log("projectNameGlobal.projectName:", projectName, "#") + if (projectName === "MobileChromeLandscape") { + test.skip() + await page.close() + } + const word = ("happy"+projectName).replace(/\s/g,'').replace(/\(/g,'').replace(/\)/g,'') + console.log("word:", word, "#") + let responseData = null; + try { + responseData = await deleteCustomSynonym(word) + console.log("message:", responseData.message, "#") + } catch {} + const state = "editable" + // search the word 'happy' + await fillInputFieldWithString(page, word); + await page.getByRole('checkbox', { name: 'Allow Editing' }).check(); + await page.waitForTimeout(200) + + // re-open the thesaurus custom form, from the external button this time + await page.getByRole('button', { name: 'thesaurus-custom-button-' }).click(); + await page.waitForTimeout(200) + // compile the forms for the submission of the 'happy' synonyms + await page.getByRole('textbox', { name: 'thesaurus-custom-word' }).click(); + await page.getByRole('textbox', { name: 'thesaurus-custom-word' }).fill(word); + await page.getByRole('textbox', { name: 'thesaurus-custom-related-words-0nth' }).click(); + await page.getByRole('textbox', { name: 'thesaurus-custom-related-words-0nth' }).fill('cheerful,joy'); + await page.getByRole('button', { name: 'thesaurus-custom-related-btn-' }).click(); + await page.getByLabel('thesaurus-custom-related-type-1nth', { exact: true }).selectOption('antonym'); + + await page.getByRole('textbox', { name: 'thesaurus-custom-related-words-1nth' }).click(); + await page.getByRole('textbox', { name: 'thesaurus-custom-related-words-1nth' }).fill('sad,sadness'); + await page.getByRole('textbox', { name: 'thesaurus-custom-related-definition-1nth' }).click(); + await page.getByRole('textbox', { name: 'thesaurus-custom-related-definition-1nth' }).fill('I\'m a sad person'); + await page.getByRole('button', { name: 'thesaurus-custom-related-btn-add-0nth' }).click(); + await page.getByRole('button', { name: 'thesaurus-custom-related-btn-del-2nth' }).click(); // delete an entry + console.log("projectName:", projectName, ", state: ", state, "#") + await expect(page.getByLabel('thesaurus-custom-form-content')).toMatchAriaSnapshot({ name: `test-classic-5-0-wordsearch_results-1-${projectName}-${state}.txt` }); + await page.getByRole('button', { name: 'thesaurus-custom-related-btn-add-0nth' }).click(); + await expect(page.getByLabel('thesaurus-custom-form-content')).toMatchAriaSnapshot({ name: `test-classic-5-0-wordsearch_results-2-${projectName}-${state}.txt` }); + await page.getByRole('textbox', { name: 'thesaurus-custom-related-words-2nth' }).click(); + await page.getByRole('textbox', { name: 'thesaurus-custom-related-words-2nth' }).fill('joyful,happyness,content'); + + const thesaurusCustomSubmitBtn = page.getByRole('button', { name: 'thesaurus-custom-submit' }) + await thesaurusCustomSubmitBtn.click() + + // await handleDialogWithExpectedMessage({page, locator: thesaurusCustomSubmitBtn, expectedText: "Thesaurus entry added successfully!"}) + await page.waitForTimeout(200) + await ensureThesaurusPanelClosed(page); + + await expect(page.getByLabel('notification-banner')).toBeVisible(); + await expect(page.getByLabel('notification-banner')).toMatchAriaSnapshot(` + - text: /✅ POST http:\\/\\/localhost:\\d+\\/thesaurus-custom completed/ + - button "notification-close" + `); + await page.getByLabel('notification-toggle').click(); + await expect(page.getByLabel('notification-center')).toMatchAriaSnapshot({ name: `test-classic-5-0-wordsearch_results-3-${projectName}-${state}.txt` }); + await page.getByRole('button', { name: 'notification-history-close' }).click(); + await expect(page.getByLabel('notification-toggle')).toMatchAriaSnapshot(`- text: 📋 1`); + + + await openMobileMenu(page, "#found mobile button for global menu, open it to toggle word search!") + await page.getByRole('link', { name: 'Settings' }).click(); + + const thesaurusEndpoint = page.getByRole('textbox', { name: 'wordsearch_thesaurus_endpoint' }) + await thesaurusEndpoint.fill("http://localhost:666") + await page.getByRole('button', { name: 'OK' }).click(); + console.log("###") + await page.evaluate(() => { + window.NotificationCenter.setDefaultTimeout(200); // 0.2 seconds + }); + + await page.getByRole('button', { name: 'thesaurus-custom-button-' }).click(); + await page.getByTestId('thesaurus-custom-word').click(); + await page.getByTestId('thesaurus-custom-word').fill('happychromium'); + await page.getByTestId('thesaurus-custom-related-words-0nth').click(); + await page.getByTestId('thesaurus-custom-related-words-0nth').fill('xxx'); + await page.getByTestId('thesaurus-custom-submit').click({timeout: 500}); + await page.waitForTimeout(300) + console.log("###") + + await expect(page.getByLabel('notification-banner')).toBeVisible(); + await expect(page.getByLabel('notification-banner')).toMatchAriaSnapshot(` + - text: /❌ POST http:\\/\\/localhost:\\d+\\/thesaurus-custom failed/ + - button "notification-close" + `); + console.log("###") + + // delete the synonyms group(s) for 'happy' to ensure we can repeat this test + responseData = await deleteCustomSynonym(word) + expect(responseData.message).toContain(`Synonyms for '${word}' deleted successfully`) + + await page.close() +}) diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-My-Ghost-Writer-test-the-notification-center-wqith-ok-and-not-ok-fetch-1.aria.yml b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-My-Ghost-Writer-test-the-notification-center-wqith-ok-and-not-ok-fetch-1.aria.yml new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-My-Ghost-Writer-test-the-notification-center-wqith-ok-and-not-ok-fetch-1.aria.yml @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-4-0-wordsearch-results-1-chromium-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-4-0-wordsearch-results-1-chromium-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc2584ed27883afc14a8ab986dd8fcc9f496dd46 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-4-0-wordsearch-results-1-chromium-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-4-0-wordsearch-results-2-chromium-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-4-0-wordsearch-results-2-chromium-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1fed72c902ad1d998ebef55816942a6193ee048 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-4-0-wordsearch-results-2-chromium-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-MobileChrome-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-MobileChrome-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc2584ed27883afc14a8ab986dd8fcc9f496dd46 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-MobileChrome-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-MobileSafari-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-MobileSafari-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc2584ed27883afc14a8ab986dd8fcc9f496dd46 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-MobileSafari-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-MobileSafariLandscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-MobileSafariLandscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b90d173ac1aa0d4577a1cf8469561926a9d2542 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-MobileSafariLandscape-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word": happyMobileSafariLandscape +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-chromium-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-chromium-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc2584ed27883afc14a8ab986dd8fcc9f496dd46 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-chromium-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-firefox-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-firefox-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc2584ed27883afc14a8ab986dd8fcc9f496dd46 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-firefox-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-Mini-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-Mini-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc2584ed27883afc14a8ab986dd8fcc9f496dd46 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-Mini-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-Mini-landscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-Mini-landscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..3bcf80746b3f48ba03a254ed81e6ab5d43252a14 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-Mini-landscape-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word": happyiPadMinilandscape +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-Pro-11-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-Pro-11-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc2584ed27883afc14a8ab986dd8fcc9f496dd46 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-Pro-11-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-Pro-11-landscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-Pro-11-landscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ce1fdcfdd229451594fd328107e49c3f208e2cd --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-Pro-11-landscape-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word": happyiPadPro11landscape +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-gen-11--editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-gen-11--editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc2584ed27883afc14a8ab986dd8fcc9f496dd46 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-gen-11--editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-gen-11-landscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-gen-11-landscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..10b7614034698f53de66aa759dc26b0e5a1446b9 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-gen-11-landscape-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word": happyiPadgen11landscape +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-gen-7--editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-gen-7--editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc2584ed27883afc14a8ab986dd8fcc9f496dd46 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-gen-7--editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-gen-7-landscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-gen-7-landscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..75f72835ef597e70f0b788bc1ac6b0a7d7c6a44d --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-iPad-gen-7-landscape-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word": happyiPadgen7landscape +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-responsiveLandscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-responsiveLandscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..abadf71652efa30887c18f5600ac6f25b0b4c110 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-responsiveLandscape-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word": happyresponsiveLandscape +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-responsivePortrait-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-responsivePortrait-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bfea77b95c00cc115ba23e437aa5b3d6cb6cc8f --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-responsivePortrait-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word": happyresponsivePortrait +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-webkit-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-webkit-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc2584ed27883afc14a8ab986dd8fcc9f496dd46 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-1-webkit-editable.txt @@ -0,0 +1,24 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-MobileChrome-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-MobileChrome-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1fed72c902ad1d998ebef55816942a6193ee048 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-MobileChrome-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-MobileSafari-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-MobileSafari-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1fed72c902ad1d998ebef55816942a6193ee048 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-MobileSafari-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-MobileSafariLandscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-MobileSafariLandscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7e309654a7d5b28e794cf7016ce90476e7ed992 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-MobileSafariLandscape-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word": happyMobileSafariLandscape +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-chromium-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-chromium-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1fed72c902ad1d998ebef55816942a6193ee048 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-chromium-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-firefox-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-firefox-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1fed72c902ad1d998ebef55816942a6193ee048 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-firefox-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-Mini-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-Mini-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1fed72c902ad1d998ebef55816942a6193ee048 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-Mini-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-Mini-landscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-Mini-landscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a0bc6f6ef283dcc1a33e06a5150bdef3c413398 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-Mini-landscape-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word": happyiPadMinilandscape +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-Pro-11-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-Pro-11-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1fed72c902ad1d998ebef55816942a6193ee048 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-Pro-11-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-Pro-11-landscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-Pro-11-landscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..326b31ab882760fb5a9372981567d43f7fc16305 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-Pro-11-landscape-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word": happyiPadPro11landscape +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-gen-11--editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-gen-11--editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1fed72c902ad1d998ebef55816942a6193ee048 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-gen-11--editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-gen-11-landscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-gen-11-landscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c9c44b67c5b2933f0256c761a80c3aa296558a9 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-gen-11-landscape-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word": happyiPadgen11landscape +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-gen-7--editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-gen-7--editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1fed72c902ad1d998ebef55816942a6193ee048 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-gen-7--editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-gen-7-landscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-gen-7-landscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..da446e46b1083d174c3bcfba9dd8a5f5e4fbde3c --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-iPad-gen-7-landscape-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word": happyiPadgen7landscape +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-responsiveLandscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-responsiveLandscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..8fb74b64d520831ff71208575bd332ba75c034ec --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-responsiveLandscape-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word": happyresponsiveLandscape +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-responsivePortrait-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-responsivePortrait-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..7191d7ee8fea1442bee1064b0fa25fe00722add7 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-responsivePortrait-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word": happyresponsivePortrait +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-webkit-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-webkit-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1fed72c902ad1d998ebef55816942a6193ee048 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-2-webkit-editable.txt @@ -0,0 +1,34 @@ +- heading "Add Custom Thesaurus Entry" [level=3] +- textbox "thesaurus-custom-word" +- button "thesaurus-custom-related-btn-add-0nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-0nth": + - option "Synonym" [selected] + - option "Antonym" + - option "Homonym" + - option "Homophone" + - option "Homograph" +- textbox "thesaurus-custom-related-words-0nth" +- textbox "thesaurus-custom-related-definition-0nth" +- button "thesaurus-custom-related-btn-del-1nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-1nth": + - option "thesaurus-custom-related-type-1nth-synonym" + - option "thesaurus-custom-related-type-1nth-antonym" [selected] + - option "thesaurus-custom-related-type-1nth-homonym" + - option "thesaurus-custom-related-type-1nth-homophone" + - option "thesaurus-custom-related-type-1nth-homograph" +- textbox "thesaurus-custom-related-words-1nth" +- textbox "thesaurus-custom-related-definition-1nth" +- button "thesaurus-custom-related-btn-del-2nth" +- text: "Relationship:" +- combobox "thesaurus-custom-related-type-2nth": + - option "thesaurus-custom-related-type-2nth-synonym" [selected] + - option "thesaurus-custom-related-type-2nth-antonym" + - option "thesaurus-custom-related-type-2nth-homonym" + - option "thesaurus-custom-related-type-2nth-homophone" + - option "thesaurus-custom-related-type-2nth-homograph" +- textbox "thesaurus-custom-related-words-2nth" +- textbox "thesaurus-custom-related-definition-2nth" +- button "thesaurus-custom-submit" +- button "thesaurus-custom-cancel" \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-MobileChrome-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-MobileChrome-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-MobileChrome-editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-MobileSafari-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-MobileSafari-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-MobileSafari-editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-MobileSafariLandscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-MobileSafariLandscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-MobileSafariLandscape-editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-chromium-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-chromium-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-chromium-editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-firefox-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-firefox-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-firefox-editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-Mini-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-Mini-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-Mini-editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-Mini-landscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-Mini-landscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-Mini-landscape-editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-Pro-11-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-Pro-11-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-Pro-11-editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-Pro-11-landscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-Pro-11-landscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-Pro-11-landscape-editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-gen-11--editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-gen-11--editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-gen-11--editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-gen-11-landscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-gen-11-landscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-gen-11-landscape-editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-gen-7--editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-gen-7--editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-gen-7--editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-gen-7-landscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-gen-7-landscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-iPad-gen-7-landscape-editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-responsiveLandscape-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-responsiveLandscape-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-responsiveLandscape-editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-responsivePortrait-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-responsivePortrait-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-responsivePortrait-editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file diff --git a/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-webkit-editable.txt b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-webkit-editable.txt new file mode 100644 index 0000000000000000000000000000000000000000..fda7eba68927158c5b8d099f4997ccfbc846a754 --- /dev/null +++ b/static/tests/test-classic-5-lite.koboldai.net.spec.ts-snapshots/test-classic-5-0-wordsearch-results-3-webkit-editable.txt @@ -0,0 +1,6 @@ +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom completed/ +- button "notification-close" +- text: 📋 1 +- heading "notification-history-title" [level=3] +- button "notification-history-close" +- text: /✅ POST http:\/\/localhost:\d+\/thesaurus-custom \d+:\d+:\d+ PM/ \ No newline at end of file