codeceptjs 4.0.0-beta.8.esm-aria → 4.0.0-beta.9.esm-aria
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeceptjs",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.9.esm-aria",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Supercharged End 2 End Testing Framework for NodeJS",
|
|
6
6
|
"keywords": [
|
|
@@ -92,6 +92,7 @@
|
|
|
92
92
|
"@cucumber/messages": "29.0.1",
|
|
93
93
|
"@xmldom/xmldom": "0.9.8",
|
|
94
94
|
"acorn": "8.15.0",
|
|
95
|
+
"ai": "^5.0.60",
|
|
95
96
|
"arrify": "3.0.0",
|
|
96
97
|
"axios": "1.12.2",
|
|
97
98
|
"chalk": "4.1.2",
|
|
@@ -2741,6 +2741,7 @@ declare namespace CodeceptJS {
|
|
|
2741
2741
|
* May include session cookies, auth tokens, localStorage and (if captured with
|
|
2742
2742
|
* `grabStorageState({ indexedDB: true })`) IndexedDB data; treat as sensitive and do not commit.
|
|
2743
2743
|
*/
|
|
2744
|
+
// @ts-ignore
|
|
2744
2745
|
type PlaywrightConfig = {
|
|
2745
2746
|
url?: string;
|
|
2746
2747
|
browser?: 'chromium' | 'firefox' | 'webkit' | 'electron';
|
|
@@ -6140,6 +6141,7 @@ declare namespace CodeceptJS {
|
|
|
6140
6141
|
* @property [chrome] - pass additional [Puppeteer run options](https://github.com/puppeteer/puppeteer/blob/main/docs/api/puppeteer.launchoptions.md).
|
|
6141
6142
|
* @property [highlightElement] - highlight the interacting elements. Default: false. Note: only activate under verbose mode (--verbose).
|
|
6142
6143
|
*/
|
|
6144
|
+
// @ts-ignore
|
|
6143
6145
|
type PuppeteerConfig = {
|
|
6144
6146
|
url: string;
|
|
6145
6147
|
basicAuth?: any;
|
|
@@ -7984,6 +7986,7 @@ declare namespace CodeceptJS {
|
|
|
7984
7986
|
* @property [onResponse] - an async function which can update response object.
|
|
7985
7987
|
* @property [maxUploadFileSize] - set the max content file size in MB when performing api calls.
|
|
7986
7988
|
*/
|
|
7989
|
+
// @ts-ignore
|
|
7987
7990
|
type RESTConfig = {
|
|
7988
7991
|
endpoint?: string;
|
|
7989
7992
|
prettyPrintJson?: boolean;
|
|
@@ -9139,6 +9142,7 @@ declare namespace CodeceptJS {
|
|
|
9139
9142
|
* @property [highlightElement] - highlight the interacting elements. Default: false. Note: only activate under verbose mode (--verbose).
|
|
9140
9143
|
* @property [logLevel = silent] - level of logging verbosity. Default: silent. Options: trace | debug | info | warn | error | silent. More info: https://webdriver.io/docs/configuration/#loglevel
|
|
9141
9144
|
*/
|
|
9145
|
+
// @ts-ignore
|
|
9142
9146
|
type WebDriverConfig = {
|
|
9143
9147
|
url: string;
|
|
9144
9148
|
browser: string;
|
package/typings/types.d.ts
CHANGED
|
@@ -2831,6 +2831,7 @@ declare namespace CodeceptJS {
|
|
|
2831
2831
|
* May include session cookies, auth tokens, localStorage and (if captured with
|
|
2832
2832
|
* `grabStorageState({ indexedDB: true })`) IndexedDB data; treat as sensitive and do not commit.
|
|
2833
2833
|
*/
|
|
2834
|
+
// @ts-ignore
|
|
2834
2835
|
type PlaywrightConfig = {
|
|
2835
2836
|
url?: string;
|
|
2836
2837
|
browser?: 'chromium' | 'firefox' | 'webkit' | 'electron';
|
|
@@ -6381,6 +6382,7 @@ declare namespace CodeceptJS {
|
|
|
6381
6382
|
* @property [chrome] - pass additional [Puppeteer run options](https://github.com/puppeteer/puppeteer/blob/main/docs/api/puppeteer.launchoptions.md).
|
|
6382
6383
|
* @property [highlightElement] - highlight the interacting elements. Default: false. Note: only activate under verbose mode (--verbose).
|
|
6383
6384
|
*/
|
|
6385
|
+
// @ts-ignore
|
|
6384
6386
|
type PuppeteerConfig = {
|
|
6385
6387
|
url: string;
|
|
6386
6388
|
basicAuth?: any;
|
|
@@ -8361,6 +8363,7 @@ declare namespace CodeceptJS {
|
|
|
8361
8363
|
* @property [onResponse] - an async function which can update response object.
|
|
8362
8364
|
* @property [maxUploadFileSize] - set the max content file size in MB when performing api calls.
|
|
8363
8365
|
*/
|
|
8366
|
+
// @ts-ignore
|
|
8364
8367
|
type RESTConfig = {
|
|
8365
8368
|
endpoint?: string;
|
|
8366
8369
|
prettyPrintJson?: boolean;
|
|
@@ -9576,6 +9579,7 @@ declare namespace CodeceptJS {
|
|
|
9576
9579
|
* @property [highlightElement] - highlight the interacting elements. Default: false. Note: only activate under verbose mode (--verbose).
|
|
9577
9580
|
* @property [logLevel = silent] - level of logging verbosity. Default: silent. Options: trace | debug | info | warn | error | silent. More info: https://webdriver.io/docs/configuration/#loglevel
|
|
9578
9581
|
*/
|
|
9582
|
+
// @ts-ignore
|
|
9579
9583
|
type WebDriverConfig = {
|
|
9580
9584
|
url: string;
|
|
9581
9585
|
browser: string;
|