-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update dependency testcafe to v1 #33
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/testcafe-1.x
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4fcf589
to
73d0c1f
Compare
73d0c1f
to
3238dd4
Compare
a52c77d
to
1c09432
Compare
1c09432
to
f84582c
Compare
f84582c
to
8fecbbd
Compare
8fecbbd
to
f58d334
Compare
f58d334
to
84d626b
Compare
84d626b
to
4adb4af
Compare
4adb4af
to
864670a
Compare
864670a
to
8bc13b4
Compare
8bc13b4
to
441a71b
Compare
441a71b
to
079beec
Compare
079beec
to
6d95d06
Compare
6d95d06
to
fd954fe
Compare
fd954fe
to
da6e0b8
Compare
da6e0b8
to
98b05b7
Compare
98b05b7
to
29020cd
Compare
29020cd
to
3294f2b
Compare
3294f2b
to
f65bcba
Compare
f65bcba
to
da51f61
Compare
da51f61
to
a603b3a
Compare
a603b3a
to
0669a5e
Compare
0669a5e
to
b981a46
Compare
b981a46
to
1ca99b4
Compare
1ca99b4
to
c5da39d
Compare
c5da39d
to
d3b0fc6
Compare
d3b0fc6
to
c17add3
Compare
c17add3
to
190bb22
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^0.23.0
->^1.18.4
Release Notes
DevExpress/testcafe
v1.18.4
Compare Source
Bug Fixes
TestCafe does not display reporter output during initialization (#6842)
TestCafe uses outdated automation scripts after cache expiration (testcafe-hammerhead#2738, PR by @rr13k)
The
Node.append
method causes theIllegal invocation
error (PR testcafe-hammerhead#2730 by @danieltroger)Scripts in SVG documents cause the
Illegal invocation
error (testcafe-hammerhead#2735)v1.18.3
Compare Source
Bug Fixes
nanoid
package is vulnerable to CVE-2021-23566 (#6826)Selector.visibility
property does not depend on the parent elements' visibility (#3495)v1.18.2
Compare Source
Bug Fixes
<select>
elements (#5616)v1.18.1
Compare Source
macOS Bug Fix
TestCafe fails to launch Safari after the v1.18.0 update.
v1.18.0
Compare Source
TestCafe v1.18.0 includes a new experimental Selector debugging capability, important improvements for macOS users and a number of routine bug fixes.
If you run TestCafe on macOS, follow the Upgrade Guide to make sure your upgrade goes smoothly.
New Debugging Capabilities (Experimental)
If you launch TestCafe with the
--experimental-debug
flag, you can debug Selectors and Client Functions in the Watch panel of a Node.js debugger.macOS improvements
TestCafe Browser Tools on Apple Silicon
The TestCafe Browser Tools package is a communication layer that automates browsers on behalf of TestCafe. Both the TestCafe framework and TestCafe Studio include the TestCafe Browser Tools binary.
Earlier versions of TestCafe Browser Tools were optimized for the x86-64 architecture. Apple Silicon Macs ran those binaries through the Rosetta 2 translation layer. Rosetta 2 took up additional space and prevented TestCafe from taking full advantage of the processor.
TestCafe v1.18.0 includes a Universal TestCafe Browser Tools binary that runs natively on both x64 Macs and Apple Silicon Macs.
Follow the Upgrade Instructions to make sure your version of TestCafe Browser Tools is up to date.
TestCafe Browser Tools macOS Permission Fix
The TestCafe Browser Tools binary requires special privileges to automate browsers and take screenshots. Security improvements in recent versions of macOS made these privileges harder to obtain.
Prior to TestCafe v1.18.0, each installation of TestCafe and TestCafe Studio included a TestCafe Browser Tools binary. macOS users with multiple sets of TestCafe Browser Tools had to go through a lengthy process to obtain the necessary permissions.
TestCafe v1.18.0 and TestCafe Studio v1.7 address this issue. Beginning with this version, all TestCafe installations share a single TestCafe Browser Tools binary. TestCafe stores this binary in the user's Home directory, inside the hidden
~/.testcafe-browser-tools
folder.Follow the Upgrade Instructions to reset TestCafe Browser Tools' permissions and enable the new binary.
Bug Fixes
TypeError: Invalid value used as weak map key.
error (#6563)"Uncaught object "[object Object]"
(Issue #6624. Discovered by @danieltroger, PR by @rob4629.)v1.17.1
Compare Source
Bug Fixes
v1.17.0
Compare Source
Enhancements
Global Test and Fixture Hooks
You can now specify global test and fixture hooks. TestCafe attaches these hooks to every test / fixture in the test suite.
Execution Timeouts
You can now specify custom timeouts for tests and test runs. If a test/test run is idle or unresponsive for the specified length of time, TestCafe terminates it. Specify these timeouts in the configuration file or from the command line.
Command line interface
Configuration file
Bug Fixes
v1.16.1
Compare Source
Bug Fixes
v1.16.0
Compare Source
Enhancements
Support for JavaScript configuration files
You can now store TestCafe settings in a
js
file. Configuration properties in JavaScript files can reference JavaScript methods, functions and variables, which makes it easy to create dynamic configuration files.Just
export
the JSON name/value pairs in the file:Support for custom user variables in the configuration file
TestCafe v1.16.0 and later supports configuration files with variable declarations. Users can reference variables from a configuration file in the tests that utilize that configuration file. To enable access to configuration file variables, import the
userVariables
object from thetestcafe
module at the beginning of the test script.This capability can come in handy if there's a single piece of data you want to use in multiple tests — for example, the website's URL. That way, if your website moves to a new domain name, you don't have to change your tests one by one.
If you previously used environment variables to achieve the same goal, you might prefer the new method — it significantly simplifies the setup process, and allows you to commit the data to a version control system.
Define your custom variables with the
userVariables
JSON object:Reference this variable in your test:
Other enhancements
embedding-utils
API method that retrieves information about skipped tests (PR by @flora8984461).Runner.filter
function supports asynchronous arguments (PR by @eignatyev).test
andfixture
objects directly from thetestcafe
module (PR #6338).Bug Fixes
v1.15.3
Compare Source
Bug Fixes
v1.15.2
Compare Source
Bug Fixes
tab
action if a page contains a cross-domain iframe (#6405).v1.15.1
Compare Source
Bug Fixes
Element.getAttribute
method returns an incorrect value (#5984).await
keyword before the assertion statement (#4613).v1.15.0
Compare Source
Enhancements
Dispatch DOM events (PR #6103)
The
t.dispatchEvent
method lets you interact with the page in ways that TestCafe does not support out of the box. To implement an unsupported user action, break it down into discrete DOM events, and use thet.dispatchEvent
method to fire them.The following example fires a
touchstart
action on an element with the 'button' id:Read the Custom Actions Guide for more information on DOM events and event constructors.
Quarantine mode customization (PR #6073 by @rob4629)
New settings are available in quarantine mode. Quarantine mode repeats failing tests to help users get conclusive test results in sub-optimal conditions. TestCafe v1.15 adds two variables -
successThreshold
andattemptLimit
- that allow you specify when TestCafe must stop.The
attemptLimit
variable determines the maximum possible number of test attempts.The
successThreshold
variable determines the number of successful attempts necessary for the test to pass.Password obfuscation (#6014)
TestCafe reporters no longer receive the contents of
password
input fields, unless you explicitly specify otherwise. This improves security for users that store their test results online.Support for non-HTML documents (#1471)
TestCafe now has the capability to proxy non-HTML documents such as XML and text files. Tests no longer hang upon redirection to a non-HTML address.
Bug Fixes
Navigator.prototype
requests (PR testcafe-hammerhead/#2643 by @michaelficarra).WorkerGlobalScope.importScripts()
arguments (testcafe-hammerhead/#2521).download
attributes cause TestCafe to hang (#6132).v1.14.2
Compare Source
v1.14.1
Compare Source
v1.14.0
Compare Source
v1.13.0
Compare Source
This release adds support for custom paths to the configuration file, support for Microsoft Edge on Linux systems, and multiple bugfixes.
Enhancements
⚙️ Specify Custom Path to the TestCafe Configuration File (PR #6035 by @Chris-Greaves)
TestCafe now allows you to specify a custom configuration file path.
To set this path, use one of the following options:
Add Support for Microsoft Edge on Linux (PR testcafe-browser-tools/#210 by @dcsaszar)
If you follow the Microsoft Edge Insider Channels for Linux and have Microsoft Edge installed on your Linux machine, you can now launch TestCafe tests in this browser.
⚙️ Deprecated the
t.setPageLoadTimeout
method (PR #5979)Starting with v1.13.0, the t.setPageLoadTimeout method is deprecated. To set the page load timeout, use the new test.timeouts method.
You can also use
test.timeouts
to set the pageRequestTimeout and ajaxRequestTimeout.Bug Fixes
hover
event on aradio
element (#5916)currentScope
calculation inside aWindow.postMessage
call (testcafe-hammerhead/#2524)RequestLogger
now shows a correct protocol for WebSocket requests (testcafe-hammerhead/#2591)No tests to run
error occurs in Live mode (#4257)documentElement.transform.translate
call moved the TestCafe UI in the browser window (#5606)v1.12.0
Compare Source
Enhancements
⚙️ Server-Side Web Assets Caching (testcafe-hammerhead/#863)
TestCafe's proxy server can now cache web assets (like images, scripts and videos). When TestCafe revisits a website, it loads assets from this cache to save time on repetetive network requests.
To enable server-side caching, use any of the following:
--cache
CLI flagcache
configuration file propertycreateTestCafe
function parameterInitialize Request Hooks with Async Predicates
The following request hooks now support asynchronous predicate functions:
Example
Bug Fixes
Illegal invocation
error thrown by TestCafe when callingStorage.prototype
methods on aStorageWrapper
object (#2526)v1.11.0
Compare Source
Enhancements
⚙️ Set Request Timeouts (PR #5692)
TestCafe now enables you to set request timeouts. If TestCafe receives no response within the specified period, it throws an error.
CLI
Configuration file
JavaScript API
These options are available in the runner.run Method.
⚙️ Set Browser Initialization Timeout (PR #5720)
This release introduces an option to control browser initialization timeout. This timeout controls the time browsers have to connect to TestCafe before an error is thrown. You can control this timeout in one of the following ways:
This setting sets an equal timeout for local and remote browsers.
Improved
Unable To Establish Browser Connection
Error Message (PR #5720)TestCafe raises this error when at least one local or remote browser was not able to connect. The error message now includes the number of browsers that have not established a connection.
TestCafe raises a warning if low system performance is causing the connectivity issue.
⚙️ An Option to Retry Requests for the Test Page (PR #5738)
If a tested webpage was not served after the first request, TestCafe can now retry the request.
You can enable this functionality with a command line, API, or configuration file option:
the --retry-test-pages command line argument
the createTestCafe function parameter
the retryTestPages configuration file property
Bug Fixes
Selector.withText
couldn't locate elements inside aniframe
(#5886)Yarn 2
(PR #5872 by @NiavlysB)typeText
action does not always replace existing text (PR #5942 by @rueyaa332266)Web Worker
from an object (testcafe-hammerhead/#2512)window
object (testcafe-hammerhead/#2538)t.openWindow
method requested a URL twice (testcafe-hammerhead/#2544)TypeError: Illegal invocation
) thrown by TestCafe on pages that contain an XMLDocument with aniframe
(testcafe-hammerhead/#2554)SyntaxError: Identifier has already been declared
) thrown by TestCafe on pages with scripts that create nested JavaScript objects (testcafe-hammerhead/#2506)Error
is thrown in a test script (PR testcafe-hammerhead/#2536)window.location.constructor
are now shadowed correctly by TestCafe proxy (testcafe-hammerhead/#2423)with
statements (testcafe-hammerhead/#2434)for..of
loops (testcafe-hammerhead/#2573)preventDefault
is present in element's event handler (testcafe-hammerhead/#2582)Vulnerability Fix (PR #5843, PR testcafe-hammerhead#2531)
We have fixed a vulnerability found in the debug module we use for debugging.
The vulnerability was a ReDos Vulnerability Regression that affected all TestCafe users. TestCafe now uses
[email protected]
, where the issue is fixed.v1.10.1
Compare Source
Bug Fixes
t.getBrowserConsoleMessages
method (#5600)v1.10.0
Compare Source
Enhancements
Window Resize and Screenshot Support for Child Windows in Chrome (PR #5661, PR #5567)
You can now use the following actions in Google Chrome when you switch the test context to a child window:
New API to Specify Compiler Options (#5519)
In previous versions, you used the following methods to specify TypeScript compiler options:
the --ts-config-path command line flag
the runner.tsConfigPath method
the tsConfigPath configuration file property
In v1.10.0, we introduced a new easy-to-use API that allows you to specify the compiler options in the command line, API or TestCafe configuration file, without creating a separate JSON file. The new API is also designed to accept options for more compilers (for instance, Babel) in future releases.
The API consists of the following members:
the --compiler-options command line flag
the runner.compilerOptions method
the compilerOptions configuration file property
If you prefer to keep compiler settings in a configuration file, you can use the new API to specify the path to this file:
testcafe chrome my-tests --compiler-options typescript.configPath='path/to/config.json'
In v1.10.0, you can customize TypeScript compiler options only.
For more information, see TypeScript and CoffeeScript.
Added a Selector Method to Access Shadow DOM (PR #5560 by @mostlyfabulous)
This release introduces the selector.shadowRoot method that allows you to access and interact with the shadow DOM elements. This method returns a shadow DOM root hosted in the selector's matched element.
Note that you should chain other selector methods to selector.shadowRoot to access elements in the shadow DOM. You cannot interact with the root element (an error occurs if you specify
selector.shadowRoot
as an action's target element).Bug Fixes
iframe
(#5033)iframes
are now focused correctly in Safari (#4793)selector.xxxSibling
method (#5449, #5389)304
status (#5025)srcdoc
attributes foriframes
are now processed (testcafe-hammerhead/#1237)authorization
header is now preserved in response headers of fetch requests (testcafe-hammerhead/#2334)document.title
for aniframe
withoutsrc
can now be correctly obtained in Firefox (PR testcafe-hammerhead/#2466)fetch
events (testcafe-hammerhead/#2412)Location
objects iniframes
withoutsrc
now contain the correct data (PR testcafe-hammerhead/#2448)iframes
(testcafe-hammerhead/#2461)iframe
source links now have the correct protocol when SSL is used (PR testcafe-hammerhead/#2478)v1.9.4
Compare Source
Bug Fixes
document.title
(#5559, PR testcafe-hammerhead/#2451, PR testcafe-hammerhead/#2446)null
was passed to thecreateTestCafe()
API function (#5549)content-encoding
header value was in the upper case (testcafe-hammerhead/#2427)v1.9.3
Compare Source
Bug Fixes
RequestMock
type definitions to accept any type for the headers (#5529)await
when you save a snapshot property to a variable but do not use it later in the test (#5534)document.getElementsByTagName('body')
calls now produce the correct results even if the first call was made before a document body was parsed entirely (#5322)v1.9.2
Compare Source
Bug Fixes
null
as an expected value in assertions (PR #5456)await
(PR #5383, part of #5087)Request
class (testcafe-hammerhead/#2140)t.hover
now works correctly for tested pages built with the Styled Components framework (#3830)<iframe>
(testcafe-hammerhead/#2392)v1.9.1
Compare Source
Bug Fixes
File
object for uploaded files (testcafe-hammerhead/#2338)v1.9.0
Compare Source
Enhancements
🌟 Multi Window Support (Beta)
TestCafe can now automate user actions in multiple windows. You can switch between open windows during the test. Make edits in one window and check that the other window's content changes dynamically to reflect these modifications.
When the main window opens a child window, TestCafe automatically switches to this new window and continues test actions there:
You can use the t.openWindow method to open a child window in test code:
The t.switchToWindow method enables you to switch between open windows. You can use a window descriptor or a predicate to specify the window that should be activated:
The t.switchToParentWindow and t.switchToPreviousWindow methods allow you to switch back to the parent window or the previously active window.
The t.closeWindow method closes the current window when called without arguments, or the specified window if you pass a descriptor or predicate:
Detailed Diffs in Failed Assertions
Test run reports now show the differences between an assertion's actual and expected values:
TestCafe can display difference between values, arrays, objects, and even functions.
Bug Fixes
Configuration
📅 Schedule: "before 3am on the first day of the month" (UTC).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.