@sap_oss/wdio-qmate-service 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. package/README.md +2 -1
  2. package/{test/core/package-lock.json → docs/bestPractices/spec.md} +0 -0
  3. package/docs/doc.md +176 -353
  4. package/docs/gettingStarted/setup.md +2 -2
  5. package/docs/index.md +1 -1
  6. package/docs/sections/bestPractices/authentication.md +151 -0
  7. package/docs/sections/bestPractices/dataHandling.md +61 -0
  8. package/docs/sections/bestPractices/selectors.md +44 -0
  9. package/docs/{contact.md → sections/contact.md} +0 -0
  10. package/docs/sections/features/advancedDataHandling.md +252 -0
  11. package/docs/sections/features/config.md +171 -0
  12. package/docs/sections/features/dataHandling.md +83 -0
  13. package/docs/{gettingStarted → sections/features}/selectors.md +0 -0
  14. package/docs/sections/features/spec.md +0 -0
  15. package/docs/sections/gettingStarted/config.md +18 -0
  16. package/docs/sections/gettingStarted/execution.md +7 -0
  17. package/docs/sections/gettingStarted/setup.md +9 -0
  18. package/docs/sections/gettingStarted/spec.md +31 -0
  19. package/docs/sections/gettingStarted/specs.md +19 -0
  20. package/docs/sections/support/bugReporting.md +19 -0
  21. package/docs/sections/support/knownIssuesAndLimitations.md +0 -0
  22. package/docs/sections/support/troubleshooting.md +16 -0
  23. package/docs/sources/images/fiori_form.PNG +0 -0
  24. package/docs/sources/images/sapCloud_form.PNG +0 -0
  25. package/lib/reuse/helper/jsDocGen.js +2 -1
  26. package/lib/reuse/helper/jsDocGen.js.map +1 -1
  27. package/lib/reuse/modules/service/odata.d.ts +106 -94
  28. package/lib/reuse/modules/service/odata.js +132 -98
  29. package/lib/reuse/modules/service/odata.js.map +1 -1
  30. package/lib/reuse/modules/util/data.js +3 -2
  31. package/lib/reuse/modules/util/data.js.map +1 -1
  32. package/lib/scripts/hooks/utils/decryption.d.ts +1 -1
  33. package/lib/scripts/hooks/utils/decryption.js +31 -14
  34. package/lib/scripts/hooks/utils/decryption.js.map +1 -1
  35. package/mkdocs.yml +16 -3
  36. package/package.json +13 -10
  37. package/test/authenticator/staticLogin/specs/custom.spec.js +30 -1
  38. package/test/reuse/service/odata/get.spec.js +61 -0
  39. package/test/reuse/service/odata/getEntitySet.spec.js +87 -0
  40. package/test/reuse/service/odata/test.odata.conf.js +15 -0
  41. package/test/reuse/ui5/confirmationDialog/clickButton.spec.js +87 -0
  42. package/test/reuse/ui5/confirmationDialog/test.confirmationDialog.conf.js +2 -1
  43. package/test/reuse/ui5/element/test.element.conf.js +2 -1
  44. package/test/reuse/ui5/element/waitForAll.spec.js +46 -0
  45. package/test/reuse/ui5/userInteraction/clearAndFillSmartFieldInputAndRetry.spec.js +28 -0
  46. package/test/reuse/ui5/userInteraction/test.userInteraction.conf.js +1 -0
  47. package/test/reuse/util/browser/switchToNewWindow.spec.js +2 -2
  48. package/test/reuse/util/console/console.spec.js +27 -0
  49. package/test/reuse/util/console/test.console.conf.js +12 -0
  50. package/test/reuse/util/data/data/test.secure.json +7 -3
  51. package/test/reuse/util/data/getSecureData.spec.js +9 -3
  52. package/test/reuse/util/file/pdfParser.spec.js +33 -8
  53. package/test/reuse/util/system/system.spec.js +16 -0
  54. package/test/reuse/util/system/test.system.conf.js +12 -0
package/README.md CHANGED
@@ -9,7 +9,7 @@ Please find our official and more detailed documentation [here](https://sap.gith
9
9
  ## Installation
10
10
  To install the latest version of the service, simply execute the following command:
11
11
  ```bash
12
- npm install @wdio/qmate-service@latest
12
+ npm install @sap_oss/wdio-qmate-service@latest
13
13
  ```
14
14
 
15
15
  ## Contact
@@ -18,3 +18,4 @@ npm install @wdio/qmate-service@latest
18
18
 
19
19
  ## License
20
20
  Copyright (c) 2021-2022 SAP SE or an SAP affiliate company and wdio-qmate-service contributors. Please see our [LICENSE](./LICENSES/Apache-2.0.txt) for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available [via the REUSE tool](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service).
21
+