Skip to content
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

TestCafe: bump version to 3.6.2 #28161

Open
wants to merge 20 commits into
base: 24_2
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
58c283f
TestCafe: bump version to 3.6.2
EugeniyKiyashko Oct 9, 2024
91e1fd4
set disableNativeAutomation to true
EugeniyKiyashko Oct 9, 2024
578cd28
update etalons
EugeniyKiyashko Oct 10, 2024
3e17fa6
update etalons
EugeniyKiyashko Oct 10, 2024
2cfb1de
update etalons
EugeniyKiyashko Oct 12, 2024
5f507e5
Merge branch '24_2' into 24_2_testcafe_bump
EugeniyKiyashko Oct 12, 2024
3264048
fix configuration
EugeniyKiyashko Oct 12, 2024
41e09c2
Uncomment dataGrid tests to check failures
ivanblinov2k17 Oct 15, 2024
4d3246b
Uncomment other grid squad tests and add skip-cache label
ivanblinov2k17 Oct 15, 2024
5510cb3
Merge branch '24_2' into 24_2_testcafe_bump
ivanblinov2k17 Oct 22, 2024
9dbad83
Stabilization of tests: Set DataGrid' width for sticky column tests
Oct 22, 2024
0f6c033
Merge branch '24_2' into 24_2_testcafe_bump
ivanblinov2k17 Oct 24, 2024
bcff660
Try waiting for dataGrid isReady for grid keyboardNavigation tests (T…
ivanblinov2k17 Oct 24, 2024
b9149ae
Grid KeyboardNavigation - try more datagrid.isReady in defferent places
ivanblinov2k17 Oct 30, 2024
ef9c068
Merge branch '24_2' into 24_2_testcafe_bump
ivanblinov2k17 Oct 30, 2024
2749d08
Update datagrid screenshots/masks
ivanblinov2k17 Oct 31, 2024
6501861
Update etalons for chat after merge
ivanblinov2k17 Oct 31, 2024
f452b58
DataGrid update etalons/masks part 2
ivanblinov2k17 Oct 31, 2024
de29b77
DataGrid - update masks part 3
ivanblinov2k17 Nov 1, 2024
bb84c00
Datagrid - update etalon/masks part 4
ivanblinov2k17 Nov 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Try waiting for dataGrid isReady for grid keyboardNavigation tests (T…
…951849)
ivanblinov2k17 committed Oct 24, 2024
commit bcff660f3ea00215c010d6588e82134a47dbab4d
Original file line number Diff line number Diff line change
@@ -2166,6 +2166,7 @@ test('Empty row should lose focus on Tab (T941246)', async (t) => {
const dataGrid = new DataGrid('#container');
const headers = dataGrid.getHeaders();
const dataGridOffsetBottom = await dataGrid.element.getBoundingClientRectProperty('bottom');
await t.expect(dataGrid.isReady()).ok();

async function checkNavigationOfAllCells(): Promise<void> {
await t
@@ -2248,6 +2249,7 @@ test('Empty row should lose focus on Tab (T941246)', async (t) => {
test(`The cell focus should be restored on pressing shift and tab keys when command column is ${isCommandColumnFixed ? 'fixed' : 'unfixed'} and on the left side (T951849)`, async (t) => {
const dataGrid = new DataGrid('#container');
const headers = dataGrid.getHeaders();
await t.expect(dataGrid.isReady()).ok();

async function checkNavigationOfAllCells(): Promise<void> {
await t
@@ -2329,6 +2331,7 @@ test('Empty row should lose focus on Tab (T941246)', async (t) => {
const dataGrid = new DataGrid('#container');
const headers = dataGrid.getHeaders();
const dataGridOffsetBottom = await dataGrid.element.getBoundingClientRectProperty('bottom');
await t.expect(dataGrid.isReady()).ok();

async function checkNavigationOfAllCells(): Promise<void> {
await t
@@ -2414,6 +2417,7 @@ test('Empty row should lose focus on Tab (T941246)', async (t) => {
const dataGrid = new DataGrid('#container');
const headers = dataGrid.getHeaders();
const dataGridOffsetBottom = await dataGrid.element.getBoundingClientRectProperty('bottom');
await t.expect(dataGrid.isReady()).ok();

async function checkNavigationOfAllCells(): Promise<void> {
await t
@@ -2481,6 +2485,7 @@ test('Empty row should lose focus on Tab (T941246)', async (t) => {
test(`The cell focus should be restored on pressing shift and tab keys when command column is ${isCommandColumnFixed ? 'fixed' : 'unfixed'} and on the right side (T951849)`, async (t) => {
const dataGrid = new DataGrid('#container');
const headers = dataGrid.getHeaders();
await t.expect(dataGrid.isReady()).ok();

async function checkNavigationOfAllCells(): Promise<void> {
await t