├── .changeset ├── README.md └── config.json ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature-request.yml ├── SECURITY.md ├── SUPPORT.md ├── actions │ ├── README.md │ └── setup │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── README.md │ ├── codeql.yml │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── .husky └── pre-commit ├── .npmrc ├── .nvmrc ├── DEPLOYMENT.md ├── LICENSE.md ├── README.md ├── biome.json ├── examples ├── ethereum-wallet-mock │ ├── .env │ ├── CHANGELOG.md │ ├── README.md │ ├── cypress.config.ts │ ├── environment.d.ts │ ├── package.json │ ├── src │ │ └── cypress │ │ │ └── support │ │ │ └── e2e.ts │ ├── test │ │ └── cypress │ │ │ ├── connectToDapp.cy.ts │ │ │ └── switchAccount.cy.ts │ └── tsconfig.json └── metamask │ ├── .env │ ├── CHANGELOG.md │ ├── README.md │ ├── cypress.config.ts │ ├── environment.d.ts │ ├── package.json │ ├── playwright.config.ts │ ├── src │ └── cypress │ │ └── support │ │ └── e2e.ts │ ├── test │ ├── cypress │ │ ├── metamask.cy.ts │ │ └── newAccount.cy.ts │ ├── playwright │ │ ├── 00_mock.spec.ts │ │ ├── 01_basic.spec.ts │ │ ├── 02_simple.spec.ts │ │ ├── 03_advanced.spec.ts │ │ ├── addNetwork.spec.ts │ │ ├── advancedFixtures.ts │ │ └── synpress.ts │ └── wallet-setup │ │ ├── basic.setup.ts │ │ └── connected.setup.ts │ └── tsconfig.json ├── funding.json ├── images ├── demo.gif ├── favicon.ico ├── optimism-logo.png └── synpress-logo.png ├── package.json ├── packages ├── cache │ ├── CHANGELOG.md │ ├── environment.d.ts │ ├── package.json │ ├── src │ │ ├── cli │ │ │ ├── cliEntrypoint.ts │ │ │ ├── compilationFixes.ts │ │ │ ├── compileWalletSetupFunctions.ts │ │ │ ├── footer.ts │ │ │ └── index.ts │ │ ├── constants.ts │ │ ├── createCache.ts │ │ ├── defineWalletSetup.ts │ │ ├── downloadFile.ts │ │ ├── ensureCacheDirExists.ts │ │ ├── index.ts │ │ ├── prepareExtension.ts │ │ ├── prepareExtensionPhantom.ts │ │ ├── unzipArchive.ts │ │ └── utils │ │ │ ├── buildWalletSetupFunction.ts │ │ │ ├── bytesToMegabytes.ts │ │ │ ├── createCacheForWalletSetupFunction.ts │ │ │ ├── createTempContextDir.ts │ │ │ ├── extractWalletSetupFunction.ts │ │ │ ├── getUniqueWalletSetupFunctions.ts │ │ │ ├── getWalletSetupFiles.ts │ │ │ ├── getWalletSetupFuncHash.ts │ │ │ ├── importWalletSetupFile.ts │ │ │ ├── isDirEmpty.ts │ │ │ ├── onDownloadProgress.ts │ │ │ ├── removeTempContextDir.ts │ │ │ ├── triggerCacheCreation.ts │ │ │ └── waitForExtensionOnLoadPage.ts │ ├── test │ │ ├── createCache.test.ts │ │ ├── defineWalletSetup.test.ts │ │ ├── downloadFile.test.ts │ │ ├── ensureCacheDirExists.test.ts │ │ ├── test-utils │ │ │ └── createTestZipArchive.ts │ │ ├── unzipArchive.test.ts │ │ └── utils │ │ │ ├── bytesToMegabytes.test.ts │ │ │ ├── createCacheForWalletSetupFunction.test.ts │ │ │ ├── createTempContextDir.test.ts │ │ │ ├── getUniqueWalletSetupFunctions.test.ts │ │ │ ├── getWalletSetupFiles.test.ts │ │ │ ├── getWalletSetupFuncHash.test.ts │ │ │ ├── importWalletSetupFile.test.ts │ │ │ ├── isDirEmpty.test.ts │ │ │ ├── removeTempContextDir.test.ts │ │ │ ├── triggerCacheCreation.test.ts │ │ │ └── waitForExtensionOnLoadPage.test.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ ├── tsup.config.ts │ └── unzip-crx-3.d.ts ├── core │ ├── CHANGELOG.md │ ├── environment.d.ts │ ├── package.json │ ├── src │ │ ├── cypress │ │ │ ├── ensureRdpPort.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ └── testWithSynpress.ts │ ├── tsconfig.json │ └── tsup.config.ts └── tsconfig │ ├── CHANGELOG.md │ ├── README.md │ ├── base.json │ └── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── release ├── CHANGELOG.md ├── package.json ├── src │ ├── cli.ts │ ├── cypress │ │ ├── index.ts │ │ └── support │ │ │ └── index.ts │ ├── index.ts │ └── playwright │ │ └── index.ts ├── tsconfig.json └── tsup.config.ts ├── support-bot ├── .env.example ├── README.md ├── flatten.cjs ├── infra │ ├── Pulumi.dev.yaml │ ├── Pulumi.yaml │ ├── index.ts │ ├── package.json │ └── tsconfig.json ├── package.json ├── src │ └── index.ts └── tsconfig.json ├── turbo.json ├── vercel.json └── wallets ├── ethereum-wallet-mock ├── CHANGELOG.md ├── cypress.config.ts ├── environment.d.ts ├── package.json ├── playwright.config.ts ├── src │ ├── constants.ts │ ├── cypress │ │ ├── EthereumWalletMock.ts │ │ ├── constants │ │ │ └── errors.ts │ │ ├── index.ts │ │ ├── support │ │ │ ├── e2e.ts │ │ │ ├── index.ts │ │ │ ├── mockEthereum.ts │ │ │ └── synpressCommands.ts │ │ └── utils │ │ │ ├── configureSynpress.ts │ │ │ ├── getEthereumWalletMock.ts │ │ │ └── initEthereumWalletMock.ts │ ├── index.ts │ ├── playwright │ │ ├── EthereumWalletMock.ts │ │ ├── constants.ts │ │ ├── fixtures │ │ │ └── ethereumWalletMockFixtures.ts │ │ ├── index.ts │ │ ├── synpress.ts │ │ └── utils │ │ │ ├── index.ts │ │ │ ├── mockEthereum.ts │ │ │ ├── mockTransaction.ts │ │ │ └── sendTransaction.ts │ └── type │ │ ├── EthereumWalletMockAbstract.ts │ │ ├── Network.ts │ │ └── WalletMock.ts ├── test │ ├── cypress │ │ ├── metamask │ │ │ ├── addNewAccount.cy.ts │ │ │ ├── importWalletFromPrivateKey.cy.ts │ │ │ ├── switchAccount.cy.ts │ │ │ └── switchNetwork.cy.ts │ │ └── mock │ │ │ └── mockEthereum.cy.ts │ └── playwright │ │ ├── metamask │ │ ├── addNewAccount.spec.ts │ │ ├── importWalletFromPrivateKey.spec.ts │ │ ├── switchAccount.spec.ts │ │ └── switchNetwork.spec.ts │ │ └── mock │ │ ├── mockEthereum.spec.ts │ │ └── sendTransaction.spec.ts ├── tsconfig.build.json ├── tsconfig.json ├── tsup.config.ts └── vitest.config.ts ├── metamask ├── CHANGELOG.md ├── cypress-no-wallet.config.ts ├── cypress.config.ts ├── environment.d.ts ├── package.json ├── playwright.config.ts ├── src │ ├── cypress │ │ ├── MetaMask.ts │ │ ├── configureSynpress.ts │ │ ├── constans.ts │ │ ├── getPlaywrightMetamask.ts │ │ ├── index.ts │ │ └── support │ │ │ ├── e2e.ts │ │ │ ├── importMetaMaskWallet.ts │ │ │ ├── index.ts │ │ │ ├── initMetaMask.ts │ │ │ └── synpressCommands.ts │ ├── index.ts │ ├── playwright │ │ ├── MetaMask.ts │ │ ├── fixture-actions │ │ │ ├── getExtensionId.ts │ │ │ ├── index.ts │ │ │ ├── persistLocalStorage.ts │ │ │ ├── prepareExtension.ts │ │ │ └── unlockForFixture.ts │ │ ├── fixtures │ │ │ └── metaMaskFixtures.ts │ │ ├── index.ts │ │ ├── pages │ │ │ ├── CrashPage │ │ │ │ └── page.ts │ │ │ ├── HomePage │ │ │ │ ├── actions │ │ │ │ │ ├── addNetwork.ts │ │ │ │ │ ├── addNewAccount.ts │ │ │ │ │ ├── getAccountAddress.ts │ │ │ │ │ ├── importWalletFromPrivateKey.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── lock.ts │ │ │ │ │ ├── popups │ │ │ │ │ │ ├── closeNetworkAddedPopover.ts │ │ │ │ │ │ ├── closeNewNetworkInfoPopover.ts │ │ │ │ │ │ ├── closePopover.ts │ │ │ │ │ │ ├── closeRecoveryPhraseReminder.ts │ │ │ │ │ │ ├── closeWhatsNewPopover.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── renameAccount.ts │ │ │ │ │ ├── settings.ts │ │ │ │ │ ├── switchAccount.ts │ │ │ │ │ ├── switchNetwork.ts │ │ │ │ │ ├── toggleShowTestNetworks.ts │ │ │ │ │ └── transactionDetails.ts │ │ │ │ └── page.ts │ │ │ ├── LockPage │ │ │ │ ├── actions │ │ │ │ │ ├── index.ts │ │ │ │ │ └── unlock.ts │ │ │ │ └── page.ts │ │ │ ├── NotificationPage │ │ │ │ ├── actions │ │ │ │ │ ├── approvePermission.ts │ │ │ │ │ ├── connectToDapp.ts │ │ │ │ │ ├── encryption.ts │ │ │ │ │ ├── ethereumRpc.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── network.ts │ │ │ │ │ ├── signSimpleMessage.ts │ │ │ │ │ ├── signStructuredMessage.ts │ │ │ │ │ ├── token.ts │ │ │ │ │ └── transaction.ts │ │ │ │ └── page.ts │ │ │ ├── OnboardingPage │ │ │ │ ├── actions │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── confirmSecretRecoveryPhrase.ts │ │ │ │ │ │ ├── createPassword.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── importWallet.ts │ │ │ │ │ └── index.ts │ │ │ │ └── page.ts │ │ │ ├── SettingsPage │ │ │ │ ├── actions │ │ │ │ │ ├── disableEthSign.ts │ │ │ │ │ ├── enableEthSign.ts │ │ │ │ │ └── index.ts │ │ │ │ └── page.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── allTextContents.ts │ │ │ ├── clickLocatorIfCondition.ts │ │ │ ├── getNotificationPageAndWaitForLoad.ts │ │ │ ├── toggle.ts │ │ │ ├── waitFor.ts │ │ │ └── waitForSpinnerToVanish.ts │ ├── prepareExtension.ts │ ├── selectors │ │ ├── createDataTestSelector.ts │ │ ├── error │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── loading │ │ │ └── index.ts │ │ └── pages │ │ │ ├── CrashPage │ │ │ └── index.ts │ │ │ ├── HomePage │ │ │ ├── index.ts │ │ │ └── settings.ts │ │ │ ├── LockPage │ │ │ └── index.ts │ │ │ ├── NotificationPage │ │ │ ├── actionFooter.ts │ │ │ ├── connectPage.ts │ │ │ ├── ethereumRpcPage.ts │ │ │ ├── index.ts │ │ │ ├── networkPage.ts │ │ │ ├── permissionPage.ts │ │ │ ├── signaturePage.ts │ │ │ └── transactionPage.ts │ │ │ ├── OnboardingPage │ │ │ ├── analyticsPage.ts │ │ │ ├── getStartedPage.ts │ │ │ ├── index.ts │ │ │ ├── pinExtensionPage.ts │ │ │ ├── secretRecoveryPhrasePage.ts │ │ │ └── walletCreationSuccessPage.ts │ │ │ └── SettingsPage │ │ │ └── index.ts │ └── type │ │ ├── GasSettings.ts │ │ ├── MetaMaskAbstract.ts │ │ └── Network.ts ├── test │ ├── cypress │ │ ├── addNetwork.cy.ts │ │ ├── addNewAccount.cy.ts │ │ ├── addNewToken.cy.ts │ │ ├── approveNewNetwork.cy.ts │ │ ├── approvePermission.cy.ts │ │ ├── approveSwitchNetwork.cy.ts │ │ ├── batchTransfer.cy.ts │ │ ├── confirmSignature.cy.ts │ │ ├── confirmTransaction.cy.ts │ │ ├── confirmTransactionAndWaitForMining.cy.ts │ │ ├── connectToDapp.cy.ts │ │ ├── encrypt.cy.ts │ │ ├── importWallet.cy.no-wallet.ts │ │ ├── importWalletFromPrivateKey.cy.ts │ │ ├── lock.cy.ts │ │ ├── metamask.cy.ts │ │ ├── rejectAddNetwork.cy.ts │ │ ├── rejectPermission.cy.ts │ │ ├── rejectSignature.cy.ts │ │ ├── rejectSwitchNetwork.cy.ts │ │ ├── rejectTransaction.cy.ts │ │ ├── renameAccount.cy.ts │ │ ├── resetAccount.cy.ts │ │ ├── switchAccount.cy.ts │ │ └── switchNetwork.cy.ts │ ├── playwright │ │ ├── e2e │ │ │ ├── PPOM.spec.ts │ │ │ ├── addNetwork.spec.ts │ │ │ ├── addNewAccount.spec.ts │ │ │ ├── addNewToken.spec.ts │ │ │ ├── approveNewNetwork.spec.ts │ │ │ ├── approvePermission.spec.ts │ │ │ ├── approveSwitchNetwork.spec.ts │ │ │ ├── batchTransfer.spec.ts │ │ │ ├── closeTransactionDetails.spec.ts │ │ │ ├── confirmSignature.spec.ts │ │ │ ├── confirmTransaction.spec.ts │ │ │ ├── confirmTransactionAndWaitForMining.spec.ts │ │ │ ├── connectToDapp.spec.ts │ │ │ ├── encrypt.spec.ts │ │ │ ├── goBackToHomePage.spec.ts │ │ │ ├── importWallet.spec.ts │ │ │ ├── importWalletFromPrivateKey.spec.ts │ │ │ ├── lock.spec.ts │ │ │ ├── openSettings.spec.ts │ │ │ ├── openSidebarMenu.spec.ts │ │ │ ├── openTransactionDetails.spec.ts │ │ │ ├── rejectAddNetwork.spec.ts │ │ │ ├── rejectPermission.spec.ts │ │ │ ├── rejectSignature.spec.ts │ │ │ ├── rejectSwitchNetwork.spec.ts │ │ │ ├── rejectTransaction.spec.ts │ │ │ ├── renameAccount.spec.ts │ │ │ ├── resetAccount.spec.ts │ │ │ ├── switchAccount.spec.ts │ │ │ ├── switchNetwork.spec.ts │ │ │ ├── toggleDismissSecretRecoveryPhraseReminder.spec.ts │ │ │ ├── toggleShowTestNetworks.spec.ts │ │ │ └── unlock.spec.ts │ │ ├── synpress.ts │ │ └── wallet-setup │ │ │ ├── basic.setup.ts │ │ │ └── connected.setup.ts │ └── unit │ │ └── prepareExtension.test.ts ├── tsconfig.build.json ├── tsconfig.json ├── tsup.config.ts └── vitest.config.ts └── phantom ├── CHANGELOG.md ├── environment.d.ts ├── package.json ├── playwright.config.ts ├── src ├── index.ts ├── playwright │ ├── Phantom.ts │ ├── fixture-actions │ │ ├── getExtensionId.ts │ │ ├── index.ts │ │ ├── persistLocalStorage.ts │ │ ├── prepareExtensionPhantom.ts │ │ └── unlockForFixture.ts │ ├── fixtures │ │ └── phantomFixtures.ts │ ├── index.ts │ ├── pages │ │ ├── HomePage │ │ │ ├── actions │ │ │ │ ├── addNewAccount.ts │ │ │ │ ├── closeSuiAndMonadScreen.ts │ │ │ │ ├── getAccountAddress.ts │ │ │ │ ├── importWalletFromPrivateKey.ts │ │ │ │ ├── index.ts │ │ │ │ ├── lock.ts │ │ │ │ ├── renameAccount.ts │ │ │ │ ├── settings.ts │ │ │ │ ├── switchAccount.ts │ │ │ │ └── toggleTestnetMode.ts │ │ │ └── page.ts │ │ ├── NotificationPage │ │ │ ├── actions │ │ │ │ ├── approvePermission.ts │ │ │ │ ├── closeUnsupportedNetworkWarning.ts │ │ │ │ ├── connectToDapp.ts │ │ │ │ ├── index.ts │ │ │ │ ├── signSimpleMessage.ts │ │ │ │ ├── signStructuredMessage.ts │ │ │ │ └── transaction.ts │ │ │ └── page.ts │ │ ├── OnboardingPage │ │ │ ├── actions │ │ │ │ ├── helpers │ │ │ │ │ ├── confirmSecretRecoveryPhrase.ts │ │ │ │ │ ├── createPassword.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── importWallet.ts │ │ │ │ └── index.ts │ │ │ └── page.ts │ │ ├── UnlockPage │ │ │ ├── actions │ │ │ │ ├── index.ts │ │ │ │ └── unlock.ts │ │ │ └── page.ts │ │ └── index.ts │ └── utils │ │ ├── allTextContents.ts │ │ ├── getNotificationPageAndWaitForLoad.ts │ │ ├── loadAndWaitForPopupPage.ts │ │ ├── toggle.ts │ │ ├── waitFor.ts │ │ ├── waitForSpinnerToVanish.ts │ │ └── waitForTestPageLoad.ts ├── prepareExtensionPhantom.ts ├── selectors │ ├── createDataTestSelector.ts │ ├── error │ │ └── index.ts │ ├── index.ts │ ├── loading │ │ └── index.ts │ └── pages │ │ ├── HomePage │ │ ├── index.ts │ │ └── settings.ts │ │ ├── NotificationPage │ │ ├── actionFooter.ts │ │ ├── index.ts │ │ ├── signaturePage.ts │ │ └── transactionPage.ts │ │ ├── OnboardingPage │ │ ├── getStartedPage.ts │ │ ├── index.ts │ │ ├── secretRecoveryPhrasePage.ts │ │ └── walletCreationSuccessPage.ts │ │ └── UnlockPage │ │ └── index.ts └── type │ ├── GasSettings.ts │ ├── Networks.ts │ └── PhantomAbstract.ts ├── test ├── playwright │ ├── commonSteps │ │ ├── aaveSetup.ts │ │ ├── connectPhantomToTestDapp.ts │ │ └── solanaSandboxSetup.ts │ ├── e2e │ │ ├── addNewAccount.spec.ts │ │ ├── approveTokenPermission.spec.ts │ │ ├── confirmSignature.spec.ts │ │ ├── confirmTransaction.spec.ts │ │ ├── connectToDapp.spec.ts │ │ ├── getAccountAddress.spec.ts │ │ ├── goBackToHomePage.spec.ts │ │ ├── importWalletFromPrivateKey.spec.ts │ │ ├── lock.spec.ts │ │ ├── openSettings.spec.ts │ │ ├── rejectSignature.spec.ts │ │ ├── rejectTokenPermission.spec.ts │ │ ├── rejectTransaction.spec.ts │ │ ├── renameAccount.spec.ts │ │ ├── resetApp.spec.ts │ │ ├── switchAccount.spec.ts │ │ ├── toggleTestnetMode.spec.ts │ │ └── unlock.spec.ts │ ├── synpress.ts │ └── wallet-setup │ │ └── basic.setup.ts └── unit │ └── prepareExtension.test.ts ├── tsconfig.build.json ├── tsconfig.json ├── tsup.config.ts └── vitest.config.ts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: 2 | ["https://etherscan.io/address/0x7b57c388e6149b5c197B925037602d5B6bafFbCc"] 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.github/actions/README.md -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/.gitmodules -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.13.1 2 | -------------------------------------------------------------------------------- /DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/DEPLOYMENT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/biome.json -------------------------------------------------------------------------------- /examples/ethereum-wallet-mock/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/ethereum-wallet-mock/.env -------------------------------------------------------------------------------- /examples/ethereum-wallet-mock/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/ethereum-wallet-mock/CHANGELOG.md -------------------------------------------------------------------------------- /examples/ethereum-wallet-mock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/ethereum-wallet-mock/README.md -------------------------------------------------------------------------------- /examples/ethereum-wallet-mock/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/ethereum-wallet-mock/cypress.config.ts -------------------------------------------------------------------------------- /examples/ethereum-wallet-mock/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/ethereum-wallet-mock/environment.d.ts -------------------------------------------------------------------------------- /examples/ethereum-wallet-mock/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/ethereum-wallet-mock/package.json -------------------------------------------------------------------------------- /examples/ethereum-wallet-mock/src/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/ethereum-wallet-mock/src/cypress/support/e2e.ts -------------------------------------------------------------------------------- /examples/ethereum-wallet-mock/test/cypress/connectToDapp.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/ethereum-wallet-mock/test/cypress/connectToDapp.cy.ts -------------------------------------------------------------------------------- /examples/ethereum-wallet-mock/test/cypress/switchAccount.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/ethereum-wallet-mock/test/cypress/switchAccount.cy.ts -------------------------------------------------------------------------------- /examples/ethereum-wallet-mock/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/ethereum-wallet-mock/tsconfig.json -------------------------------------------------------------------------------- /examples/metamask/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/.env -------------------------------------------------------------------------------- /examples/metamask/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/CHANGELOG.md -------------------------------------------------------------------------------- /examples/metamask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/README.md -------------------------------------------------------------------------------- /examples/metamask/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/cypress.config.ts -------------------------------------------------------------------------------- /examples/metamask/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/environment.d.ts -------------------------------------------------------------------------------- /examples/metamask/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/package.json -------------------------------------------------------------------------------- /examples/metamask/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/playwright.config.ts -------------------------------------------------------------------------------- /examples/metamask/src/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/src/cypress/support/e2e.ts -------------------------------------------------------------------------------- /examples/metamask/test/cypress/metamask.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/test/cypress/metamask.cy.ts -------------------------------------------------------------------------------- /examples/metamask/test/cypress/newAccount.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/test/cypress/newAccount.cy.ts -------------------------------------------------------------------------------- /examples/metamask/test/playwright/00_mock.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/test/playwright/00_mock.spec.ts -------------------------------------------------------------------------------- /examples/metamask/test/playwright/01_basic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/test/playwright/01_basic.spec.ts -------------------------------------------------------------------------------- /examples/metamask/test/playwright/02_simple.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/test/playwright/02_simple.spec.ts -------------------------------------------------------------------------------- /examples/metamask/test/playwright/03_advanced.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/test/playwright/03_advanced.spec.ts -------------------------------------------------------------------------------- /examples/metamask/test/playwright/addNetwork.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/test/playwright/addNetwork.spec.ts -------------------------------------------------------------------------------- /examples/metamask/test/playwright/advancedFixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/test/playwright/advancedFixtures.ts -------------------------------------------------------------------------------- /examples/metamask/test/playwright/synpress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/test/playwright/synpress.ts -------------------------------------------------------------------------------- /examples/metamask/test/wallet-setup/basic.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/test/wallet-setup/basic.setup.ts -------------------------------------------------------------------------------- /examples/metamask/test/wallet-setup/connected.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/test/wallet-setup/connected.setup.ts -------------------------------------------------------------------------------- /examples/metamask/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/examples/metamask/tsconfig.json -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/funding.json -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/optimism-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/images/optimism-logo.png -------------------------------------------------------------------------------- /images/synpress-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/images/synpress-logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/package.json -------------------------------------------------------------------------------- /packages/cache/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/CHANGELOG.md -------------------------------------------------------------------------------- /packages/cache/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/environment.d.ts -------------------------------------------------------------------------------- /packages/cache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/package.json -------------------------------------------------------------------------------- /packages/cache/src/cli/cliEntrypoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/cli/cliEntrypoint.ts -------------------------------------------------------------------------------- /packages/cache/src/cli/compilationFixes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/cli/compilationFixes.ts -------------------------------------------------------------------------------- /packages/cache/src/cli/compileWalletSetupFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/cli/compileWalletSetupFunctions.ts -------------------------------------------------------------------------------- /packages/cache/src/cli/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/cli/footer.ts -------------------------------------------------------------------------------- /packages/cache/src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/cli/index.ts -------------------------------------------------------------------------------- /packages/cache/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/constants.ts -------------------------------------------------------------------------------- /packages/cache/src/createCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/createCache.ts -------------------------------------------------------------------------------- /packages/cache/src/defineWalletSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/defineWalletSetup.ts -------------------------------------------------------------------------------- /packages/cache/src/downloadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/downloadFile.ts -------------------------------------------------------------------------------- /packages/cache/src/ensureCacheDirExists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/ensureCacheDirExists.ts -------------------------------------------------------------------------------- /packages/cache/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/index.ts -------------------------------------------------------------------------------- /packages/cache/src/prepareExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/prepareExtension.ts -------------------------------------------------------------------------------- /packages/cache/src/prepareExtensionPhantom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/prepareExtensionPhantom.ts -------------------------------------------------------------------------------- /packages/cache/src/unzipArchive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/unzipArchive.ts -------------------------------------------------------------------------------- /packages/cache/src/utils/buildWalletSetupFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/utils/buildWalletSetupFunction.ts -------------------------------------------------------------------------------- /packages/cache/src/utils/bytesToMegabytes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/utils/bytesToMegabytes.ts -------------------------------------------------------------------------------- /packages/cache/src/utils/createCacheForWalletSetupFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/utils/createCacheForWalletSetupFunction.ts -------------------------------------------------------------------------------- /packages/cache/src/utils/createTempContextDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/utils/createTempContextDir.ts -------------------------------------------------------------------------------- /packages/cache/src/utils/extractWalletSetupFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/utils/extractWalletSetupFunction.ts -------------------------------------------------------------------------------- /packages/cache/src/utils/getUniqueWalletSetupFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/utils/getUniqueWalletSetupFunctions.ts -------------------------------------------------------------------------------- /packages/cache/src/utils/getWalletSetupFiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/utils/getWalletSetupFiles.ts -------------------------------------------------------------------------------- /packages/cache/src/utils/getWalletSetupFuncHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/utils/getWalletSetupFuncHash.ts -------------------------------------------------------------------------------- /packages/cache/src/utils/importWalletSetupFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/utils/importWalletSetupFile.ts -------------------------------------------------------------------------------- /packages/cache/src/utils/isDirEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/utils/isDirEmpty.ts -------------------------------------------------------------------------------- /packages/cache/src/utils/onDownloadProgress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/utils/onDownloadProgress.ts -------------------------------------------------------------------------------- /packages/cache/src/utils/removeTempContextDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/utils/removeTempContextDir.ts -------------------------------------------------------------------------------- /packages/cache/src/utils/triggerCacheCreation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/utils/triggerCacheCreation.ts -------------------------------------------------------------------------------- /packages/cache/src/utils/waitForExtensionOnLoadPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/src/utils/waitForExtensionOnLoadPage.ts -------------------------------------------------------------------------------- /packages/cache/test/createCache.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/createCache.test.ts -------------------------------------------------------------------------------- /packages/cache/test/defineWalletSetup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/defineWalletSetup.test.ts -------------------------------------------------------------------------------- /packages/cache/test/downloadFile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/downloadFile.test.ts -------------------------------------------------------------------------------- /packages/cache/test/ensureCacheDirExists.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/ensureCacheDirExists.test.ts -------------------------------------------------------------------------------- /packages/cache/test/test-utils/createTestZipArchive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/test-utils/createTestZipArchive.ts -------------------------------------------------------------------------------- /packages/cache/test/unzipArchive.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/unzipArchive.test.ts -------------------------------------------------------------------------------- /packages/cache/test/utils/bytesToMegabytes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/utils/bytesToMegabytes.test.ts -------------------------------------------------------------------------------- /packages/cache/test/utils/createCacheForWalletSetupFunction.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/utils/createCacheForWalletSetupFunction.test.ts -------------------------------------------------------------------------------- /packages/cache/test/utils/createTempContextDir.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/utils/createTempContextDir.test.ts -------------------------------------------------------------------------------- /packages/cache/test/utils/getUniqueWalletSetupFunctions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/utils/getUniqueWalletSetupFunctions.test.ts -------------------------------------------------------------------------------- /packages/cache/test/utils/getWalletSetupFiles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/utils/getWalletSetupFiles.test.ts -------------------------------------------------------------------------------- /packages/cache/test/utils/getWalletSetupFuncHash.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/utils/getWalletSetupFuncHash.test.ts -------------------------------------------------------------------------------- /packages/cache/test/utils/importWalletSetupFile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/utils/importWalletSetupFile.test.ts -------------------------------------------------------------------------------- /packages/cache/test/utils/isDirEmpty.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/utils/isDirEmpty.test.ts -------------------------------------------------------------------------------- /packages/cache/test/utils/removeTempContextDir.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/utils/removeTempContextDir.test.ts -------------------------------------------------------------------------------- /packages/cache/test/utils/triggerCacheCreation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/utils/triggerCacheCreation.test.ts -------------------------------------------------------------------------------- /packages/cache/test/utils/waitForExtensionOnLoadPage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/test/utils/waitForExtensionOnLoadPage.test.ts -------------------------------------------------------------------------------- /packages/cache/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/tsconfig.build.json -------------------------------------------------------------------------------- /packages/cache/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/tsconfig.json -------------------------------------------------------------------------------- /packages/cache/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/cache/tsup.config.ts -------------------------------------------------------------------------------- /packages/cache/unzip-crx-3.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'unzip-crx-3' 2 | -------------------------------------------------------------------------------- /packages/core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/core/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/core/environment.d.ts -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/src/cypress/ensureRdpPort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/core/src/cypress/ensureRdpPort.ts -------------------------------------------------------------------------------- /packages/core/src/cypress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/core/src/cypress/index.ts -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/testWithSynpress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/core/src/testWithSynpress.ts -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/core/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/core/tsup.config.ts -------------------------------------------------------------------------------- /packages/tsconfig/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/tsconfig/CHANGELOG.md -------------------------------------------------------------------------------- /packages/tsconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/tsconfig/README.md -------------------------------------------------------------------------------- /packages/tsconfig/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/tsconfig/base.json -------------------------------------------------------------------------------- /packages/tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/packages/tsconfig/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /release/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/release/CHANGELOG.md -------------------------------------------------------------------------------- /release/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/release/package.json -------------------------------------------------------------------------------- /release/src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/release/src/cli.ts -------------------------------------------------------------------------------- /release/src/cypress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/release/src/cypress/index.ts -------------------------------------------------------------------------------- /release/src/cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/release/src/cypress/support/index.ts -------------------------------------------------------------------------------- /release/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/release/src/index.ts -------------------------------------------------------------------------------- /release/src/playwright/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/release/src/playwright/index.ts -------------------------------------------------------------------------------- /release/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/release/tsconfig.json -------------------------------------------------------------------------------- /release/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/release/tsup.config.ts -------------------------------------------------------------------------------- /support-bot/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/support-bot/.env.example -------------------------------------------------------------------------------- /support-bot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/support-bot/README.md -------------------------------------------------------------------------------- /support-bot/flatten.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/support-bot/flatten.cjs -------------------------------------------------------------------------------- /support-bot/infra/Pulumi.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/support-bot/infra/Pulumi.dev.yaml -------------------------------------------------------------------------------- /support-bot/infra/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/support-bot/infra/Pulumi.yaml -------------------------------------------------------------------------------- /support-bot/infra/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/support-bot/infra/index.ts -------------------------------------------------------------------------------- /support-bot/infra/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/support-bot/infra/package.json -------------------------------------------------------------------------------- /support-bot/infra/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/support-bot/infra/tsconfig.json -------------------------------------------------------------------------------- /support-bot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/support-bot/package.json -------------------------------------------------------------------------------- /support-bot/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/support-bot/src/index.ts -------------------------------------------------------------------------------- /support-bot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/support-bot/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/turbo.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "cleanUrls": true 3 | } 4 | -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/CHANGELOG.md -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/cypress.config.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/environment.d.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/package.json -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/playwright.config.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/constants.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/cypress/EthereumWalletMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/cypress/EthereumWalletMock.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/cypress/constants/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/cypress/constants/errors.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/cypress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/cypress/index.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/cypress/support/e2e.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/cypress/support/index.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/cypress/support/mockEthereum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/cypress/support/mockEthereum.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/cypress/support/synpressCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/cypress/support/synpressCommands.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/cypress/utils/configureSynpress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/cypress/utils/configureSynpress.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/cypress/utils/getEthereumWalletMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/cypress/utils/getEthereumWalletMock.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/cypress/utils/initEthereumWalletMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/cypress/utils/initEthereumWalletMock.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/playwright/EthereumWalletMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/playwright/EthereumWalletMock.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/playwright/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/playwright/constants.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/playwright/fixtures/ethereumWalletMockFixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/playwright/fixtures/ethereumWalletMockFixtures.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/playwright/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/playwright/index.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/playwright/synpress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/playwright/synpress.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/playwright/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/playwright/utils/index.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/playwright/utils/mockEthereum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/playwright/utils/mockEthereum.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/playwright/utils/mockTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/playwright/utils/mockTransaction.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/playwright/utils/sendTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/playwright/utils/sendTransaction.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/type/EthereumWalletMockAbstract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/type/EthereumWalletMockAbstract.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/type/Network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/type/Network.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/src/type/WalletMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/src/type/WalletMock.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/test/cypress/metamask/addNewAccount.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/test/cypress/metamask/addNewAccount.cy.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/test/cypress/metamask/importWalletFromPrivateKey.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/test/cypress/metamask/importWalletFromPrivateKey.cy.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/test/cypress/metamask/switchAccount.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/test/cypress/metamask/switchAccount.cy.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/test/cypress/metamask/switchNetwork.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/test/cypress/metamask/switchNetwork.cy.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/test/cypress/mock/mockEthereum.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/test/cypress/mock/mockEthereum.cy.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/test/playwright/metamask/addNewAccount.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/test/playwright/metamask/addNewAccount.spec.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/test/playwright/metamask/importWalletFromPrivateKey.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/test/playwright/metamask/importWalletFromPrivateKey.spec.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/test/playwright/metamask/switchAccount.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/test/playwright/metamask/switchAccount.spec.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/test/playwright/metamask/switchNetwork.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/test/playwright/metamask/switchNetwork.spec.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/test/playwright/mock/mockEthereum.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/test/playwright/mock/mockEthereum.spec.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/test/playwright/mock/sendTransaction.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/test/playwright/mock/sendTransaction.spec.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/tsconfig.build.json -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/tsconfig.json -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/tsup.config.ts -------------------------------------------------------------------------------- /wallets/ethereum-wallet-mock/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/ethereum-wallet-mock/vitest.config.ts -------------------------------------------------------------------------------- /wallets/metamask/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/CHANGELOG.md -------------------------------------------------------------------------------- /wallets/metamask/cypress-no-wallet.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/cypress-no-wallet.config.ts -------------------------------------------------------------------------------- /wallets/metamask/cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/cypress.config.ts -------------------------------------------------------------------------------- /wallets/metamask/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/environment.d.ts -------------------------------------------------------------------------------- /wallets/metamask/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/package.json -------------------------------------------------------------------------------- /wallets/metamask/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/playwright.config.ts -------------------------------------------------------------------------------- /wallets/metamask/src/cypress/MetaMask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/cypress/MetaMask.ts -------------------------------------------------------------------------------- /wallets/metamask/src/cypress/configureSynpress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/cypress/configureSynpress.ts -------------------------------------------------------------------------------- /wallets/metamask/src/cypress/constans.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/cypress/constans.ts -------------------------------------------------------------------------------- /wallets/metamask/src/cypress/getPlaywrightMetamask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/cypress/getPlaywrightMetamask.ts -------------------------------------------------------------------------------- /wallets/metamask/src/cypress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/cypress/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/cypress/support/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/cypress/support/e2e.ts -------------------------------------------------------------------------------- /wallets/metamask/src/cypress/support/importMetaMaskWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/cypress/support/importMetaMaskWallet.ts -------------------------------------------------------------------------------- /wallets/metamask/src/cypress/support/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/cypress/support/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/cypress/support/initMetaMask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/cypress/support/initMetaMask.ts -------------------------------------------------------------------------------- /wallets/metamask/src/cypress/support/synpressCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/cypress/support/synpressCommands.ts -------------------------------------------------------------------------------- /wallets/metamask/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/MetaMask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/MetaMask.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/fixture-actions/getExtensionId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/fixture-actions/getExtensionId.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/fixture-actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/fixture-actions/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/fixture-actions/persistLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/fixture-actions/persistLocalStorage.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/fixture-actions/prepareExtension.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/fixture-actions/unlockForFixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/fixture-actions/unlockForFixture.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/fixtures/metaMaskFixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/fixtures/metaMaskFixtures.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/CrashPage/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/CrashPage/page.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/addNetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/addNetwork.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/addNewAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/addNewAccount.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/getAccountAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/getAccountAddress.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/importWalletFromPrivateKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/importWalletFromPrivateKey.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/lock.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/popups/closeNetworkAddedPopover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/popups/closeNetworkAddedPopover.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/popups/closeNewNetworkInfoPopover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/popups/closeNewNetworkInfoPopover.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/popups/closePopover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/popups/closePopover.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/popups/closeRecoveryPhraseReminder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/popups/closeRecoveryPhraseReminder.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/popups/closeWhatsNewPopover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/popups/closeWhatsNewPopover.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/popups/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/popups/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/renameAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/renameAccount.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/settings.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/switchAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/switchAccount.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/switchNetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/switchNetwork.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/toggleShowTestNetworks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/toggleShowTestNetworks.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/actions/transactionDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/actions/transactionDetails.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/HomePage/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/HomePage/page.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/LockPage/actions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './unlock' 2 | -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/LockPage/actions/unlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/LockPage/actions/unlock.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/LockPage/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/LockPage/page.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/NotificationPage/actions/approvePermission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/NotificationPage/actions/approvePermission.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/NotificationPage/actions/connectToDapp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/NotificationPage/actions/connectToDapp.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/NotificationPage/actions/encryption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/NotificationPage/actions/encryption.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/NotificationPage/actions/ethereumRpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/NotificationPage/actions/ethereumRpc.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/NotificationPage/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/NotificationPage/actions/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/NotificationPage/actions/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/NotificationPage/actions/network.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/NotificationPage/actions/signSimpleMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/NotificationPage/actions/signSimpleMessage.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/NotificationPage/actions/signStructuredMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/NotificationPage/actions/signStructuredMessage.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/NotificationPage/actions/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/NotificationPage/actions/token.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/NotificationPage/actions/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/NotificationPage/actions/transaction.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/NotificationPage/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/NotificationPage/page.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/OnboardingPage/actions/helpers/confirmSecretRecoveryPhrase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/OnboardingPage/actions/helpers/confirmSecretRecoveryPhrase.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/OnboardingPage/actions/helpers/createPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/OnboardingPage/actions/helpers/createPassword.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/OnboardingPage/actions/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/OnboardingPage/actions/helpers/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/OnboardingPage/actions/importWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/OnboardingPage/actions/importWallet.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/OnboardingPage/actions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './importWallet' 2 | -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/OnboardingPage/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/OnboardingPage/page.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/SettingsPage/actions/disableEthSign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/SettingsPage/actions/disableEthSign.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/SettingsPage/actions/enableEthSign.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/SettingsPage/actions/enableEthSign.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/SettingsPage/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/SettingsPage/actions/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/SettingsPage/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/SettingsPage/page.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/pages/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/utils/allTextContents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/utils/allTextContents.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/utils/clickLocatorIfCondition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/utils/clickLocatorIfCondition.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/utils/getNotificationPageAndWaitForLoad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/utils/getNotificationPageAndWaitForLoad.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/utils/toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/utils/toggle.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/utils/waitFor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/utils/waitFor.ts -------------------------------------------------------------------------------- /wallets/metamask/src/playwright/utils/waitForSpinnerToVanish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/playwright/utils/waitForSpinnerToVanish.ts -------------------------------------------------------------------------------- /wallets/metamask/src/prepareExtension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/prepareExtension.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/createDataTestSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/createDataTestSelector.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/error/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/loading/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/loading/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/CrashPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/CrashPage/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/HomePage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/HomePage/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/HomePage/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/HomePage/settings.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/LockPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/LockPage/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/NotificationPage/actionFooter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/NotificationPage/actionFooter.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/NotificationPage/connectPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/NotificationPage/connectPage.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/NotificationPage/ethereumRpcPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/NotificationPage/ethereumRpcPage.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/NotificationPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/NotificationPage/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/NotificationPage/networkPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/NotificationPage/networkPage.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/NotificationPage/permissionPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/NotificationPage/permissionPage.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/NotificationPage/signaturePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/NotificationPage/signaturePage.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/NotificationPage/transactionPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/NotificationPage/transactionPage.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/OnboardingPage/analyticsPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/OnboardingPage/analyticsPage.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/OnboardingPage/getStartedPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/OnboardingPage/getStartedPage.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/OnboardingPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/OnboardingPage/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/OnboardingPage/pinExtensionPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/OnboardingPage/pinExtensionPage.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/OnboardingPage/secretRecoveryPhrasePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/OnboardingPage/secretRecoveryPhrasePage.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/OnboardingPage/walletCreationSuccessPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/OnboardingPage/walletCreationSuccessPage.ts -------------------------------------------------------------------------------- /wallets/metamask/src/selectors/pages/SettingsPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/selectors/pages/SettingsPage/index.ts -------------------------------------------------------------------------------- /wallets/metamask/src/type/GasSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/type/GasSettings.ts -------------------------------------------------------------------------------- /wallets/metamask/src/type/MetaMaskAbstract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/type/MetaMaskAbstract.ts -------------------------------------------------------------------------------- /wallets/metamask/src/type/Network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/src/type/Network.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/addNetwork.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/addNetwork.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/addNewAccount.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/addNewAccount.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/addNewToken.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/addNewToken.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/approveNewNetwork.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/approveNewNetwork.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/approvePermission.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/approvePermission.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/approveSwitchNetwork.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/approveSwitchNetwork.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/batchTransfer.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/batchTransfer.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/confirmSignature.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/confirmSignature.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/confirmTransaction.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/confirmTransaction.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/confirmTransactionAndWaitForMining.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/confirmTransactionAndWaitForMining.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/connectToDapp.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/connectToDapp.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/encrypt.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/encrypt.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/importWallet.cy.no-wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/importWallet.cy.no-wallet.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/importWalletFromPrivateKey.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/importWalletFromPrivateKey.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/lock.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/lock.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/metamask.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/metamask.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/rejectAddNetwork.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/rejectAddNetwork.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/rejectPermission.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/rejectPermission.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/rejectSignature.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/rejectSignature.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/rejectSwitchNetwork.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/rejectSwitchNetwork.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/rejectTransaction.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/rejectTransaction.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/renameAccount.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/renameAccount.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/resetAccount.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/resetAccount.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/switchAccount.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/switchAccount.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/cypress/switchNetwork.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/cypress/switchNetwork.cy.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/PPOM.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/PPOM.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/addNetwork.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/addNetwork.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/addNewAccount.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/addNewAccount.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/addNewToken.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/addNewToken.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/approveNewNetwork.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/approveNewNetwork.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/approvePermission.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/approvePermission.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/approveSwitchNetwork.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/approveSwitchNetwork.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/batchTransfer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/batchTransfer.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/closeTransactionDetails.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/closeTransactionDetails.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/confirmSignature.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/confirmSignature.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/confirmTransaction.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/confirmTransaction.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/confirmTransactionAndWaitForMining.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/confirmTransactionAndWaitForMining.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/connectToDapp.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/connectToDapp.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/encrypt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/encrypt.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/goBackToHomePage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/goBackToHomePage.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/importWallet.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/importWallet.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/importWalletFromPrivateKey.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/importWalletFromPrivateKey.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/lock.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/lock.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/openSettings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/openSettings.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/openSidebarMenu.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/openSidebarMenu.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/openTransactionDetails.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/openTransactionDetails.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/rejectAddNetwork.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/rejectAddNetwork.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/rejectPermission.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/rejectPermission.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/rejectSignature.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/rejectSignature.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/rejectSwitchNetwork.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/rejectSwitchNetwork.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/rejectTransaction.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/rejectTransaction.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/renameAccount.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/renameAccount.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/resetAccount.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/resetAccount.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/switchAccount.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/switchAccount.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/switchNetwork.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/switchNetwork.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/toggleDismissSecretRecoveryPhraseReminder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/toggleDismissSecretRecoveryPhraseReminder.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/toggleShowTestNetworks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/toggleShowTestNetworks.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/e2e/unlock.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/e2e/unlock.spec.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/synpress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/synpress.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/wallet-setup/basic.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/wallet-setup/basic.setup.ts -------------------------------------------------------------------------------- /wallets/metamask/test/playwright/wallet-setup/connected.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/playwright/wallet-setup/connected.setup.ts -------------------------------------------------------------------------------- /wallets/metamask/test/unit/prepareExtension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/test/unit/prepareExtension.test.ts -------------------------------------------------------------------------------- /wallets/metamask/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/tsconfig.build.json -------------------------------------------------------------------------------- /wallets/metamask/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/tsconfig.json -------------------------------------------------------------------------------- /wallets/metamask/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/tsup.config.ts -------------------------------------------------------------------------------- /wallets/metamask/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/metamask/vitest.config.ts -------------------------------------------------------------------------------- /wallets/phantom/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/CHANGELOG.md -------------------------------------------------------------------------------- /wallets/phantom/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/environment.d.ts -------------------------------------------------------------------------------- /wallets/phantom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/package.json -------------------------------------------------------------------------------- /wallets/phantom/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/playwright.config.ts -------------------------------------------------------------------------------- /wallets/phantom/src/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/Phantom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/Phantom.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/fixture-actions/getExtensionId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/fixture-actions/getExtensionId.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/fixture-actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/fixture-actions/index.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/fixture-actions/persistLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/fixture-actions/persistLocalStorage.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/fixture-actions/prepareExtensionPhantom.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/fixture-actions/unlockForFixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/fixture-actions/unlockForFixture.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/fixtures/phantomFixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/fixtures/phantomFixtures.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/index.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/HomePage/actions/addNewAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/HomePage/actions/addNewAccount.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/HomePage/actions/closeSuiAndMonadScreen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/HomePage/actions/closeSuiAndMonadScreen.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/HomePage/actions/getAccountAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/HomePage/actions/getAccountAddress.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/HomePage/actions/importWalletFromPrivateKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/HomePage/actions/importWalletFromPrivateKey.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/HomePage/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/HomePage/actions/index.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/HomePage/actions/lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/HomePage/actions/lock.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/HomePage/actions/renameAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/HomePage/actions/renameAccount.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/HomePage/actions/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/HomePage/actions/settings.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/HomePage/actions/switchAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/HomePage/actions/switchAccount.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/HomePage/actions/toggleTestnetMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/HomePage/actions/toggleTestnetMode.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/HomePage/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/HomePage/page.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/NotificationPage/actions/approvePermission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/NotificationPage/actions/approvePermission.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/NotificationPage/actions/closeUnsupportedNetworkWarning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/NotificationPage/actions/closeUnsupportedNetworkWarning.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/NotificationPage/actions/connectToDapp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/NotificationPage/actions/connectToDapp.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/NotificationPage/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/NotificationPage/actions/index.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/NotificationPage/actions/signSimpleMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/NotificationPage/actions/signSimpleMessage.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/NotificationPage/actions/signStructuredMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/NotificationPage/actions/signStructuredMessage.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/NotificationPage/actions/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/NotificationPage/actions/transaction.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/NotificationPage/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/NotificationPage/page.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/OnboardingPage/actions/helpers/confirmSecretRecoveryPhrase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/OnboardingPage/actions/helpers/confirmSecretRecoveryPhrase.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/OnboardingPage/actions/helpers/createPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/OnboardingPage/actions/helpers/createPassword.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/OnboardingPage/actions/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/OnboardingPage/actions/helpers/index.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/OnboardingPage/actions/importWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/OnboardingPage/actions/importWallet.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/OnboardingPage/actions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './importWallet' 2 | -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/OnboardingPage/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/OnboardingPage/page.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/UnlockPage/actions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './unlock' 2 | -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/UnlockPage/actions/unlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/UnlockPage/actions/unlock.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/UnlockPage/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/UnlockPage/page.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/pages/index.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/utils/allTextContents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/utils/allTextContents.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/utils/getNotificationPageAndWaitForLoad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/utils/getNotificationPageAndWaitForLoad.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/utils/loadAndWaitForPopupPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/utils/loadAndWaitForPopupPage.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/utils/toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/utils/toggle.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/utils/waitFor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/utils/waitFor.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/utils/waitForSpinnerToVanish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/utils/waitForSpinnerToVanish.ts -------------------------------------------------------------------------------- /wallets/phantom/src/playwright/utils/waitForTestPageLoad.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/playwright/utils/waitForTestPageLoad.ts -------------------------------------------------------------------------------- /wallets/phantom/src/prepareExtensionPhantom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/prepareExtensionPhantom.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/createDataTestSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/createDataTestSelector.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/error/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/error/index.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/index.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/loading/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/loading/index.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/pages/HomePage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/pages/HomePage/index.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/pages/HomePage/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/pages/HomePage/settings.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/pages/NotificationPage/actionFooter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/pages/NotificationPage/actionFooter.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/pages/NotificationPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/pages/NotificationPage/index.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/pages/NotificationPage/signaturePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/pages/NotificationPage/signaturePage.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/pages/NotificationPage/transactionPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/pages/NotificationPage/transactionPage.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/pages/OnboardingPage/getStartedPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/pages/OnboardingPage/getStartedPage.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/pages/OnboardingPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/pages/OnboardingPage/index.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/pages/OnboardingPage/secretRecoveryPhrasePage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/pages/OnboardingPage/secretRecoveryPhrasePage.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/pages/OnboardingPage/walletCreationSuccessPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/pages/OnboardingPage/walletCreationSuccessPage.ts -------------------------------------------------------------------------------- /wallets/phantom/src/selectors/pages/UnlockPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/selectors/pages/UnlockPage/index.ts -------------------------------------------------------------------------------- /wallets/phantom/src/type/GasSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/type/GasSettings.ts -------------------------------------------------------------------------------- /wallets/phantom/src/type/Networks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/type/Networks.ts -------------------------------------------------------------------------------- /wallets/phantom/src/type/PhantomAbstract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/src/type/PhantomAbstract.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/commonSteps/aaveSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/commonSteps/aaveSetup.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/commonSteps/connectPhantomToTestDapp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/commonSteps/connectPhantomToTestDapp.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/commonSteps/solanaSandboxSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/commonSteps/solanaSandboxSetup.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/addNewAccount.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/addNewAccount.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/approveTokenPermission.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/approveTokenPermission.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/confirmSignature.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/confirmSignature.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/confirmTransaction.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/confirmTransaction.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/connectToDapp.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/connectToDapp.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/getAccountAddress.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/getAccountAddress.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/goBackToHomePage.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/goBackToHomePage.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/importWalletFromPrivateKey.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/importWalletFromPrivateKey.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/lock.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/lock.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/openSettings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/openSettings.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/rejectSignature.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/rejectSignature.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/rejectTokenPermission.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/rejectTokenPermission.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/rejectTransaction.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/rejectTransaction.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/renameAccount.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/renameAccount.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/resetApp.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/resetApp.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/switchAccount.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/switchAccount.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/toggleTestnetMode.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/toggleTestnetMode.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/e2e/unlock.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/e2e/unlock.spec.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/synpress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/synpress.ts -------------------------------------------------------------------------------- /wallets/phantom/test/playwright/wallet-setup/basic.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/playwright/wallet-setup/basic.setup.ts -------------------------------------------------------------------------------- /wallets/phantom/test/unit/prepareExtension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/test/unit/prepareExtension.test.ts -------------------------------------------------------------------------------- /wallets/phantom/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/tsconfig.build.json -------------------------------------------------------------------------------- /wallets/phantom/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/tsconfig.json -------------------------------------------------------------------------------- /wallets/phantom/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/tsup.config.ts -------------------------------------------------------------------------------- /wallets/phantom/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synpress-io/synpress/HEAD/wallets/phantom/vitest.config.ts --------------------------------------------------------------------------------