flaky-nest-4929
11/15/2021, 4:33 PMbulky-sundown-74498
11/15/2021, 4:34 PMbulky-sundown-74498
11/15/2021, 4:35 PMbulky-sundown-74498
11/15/2021, 4:38 PMbulky-sundown-74498
11/15/2021, 4:39 PMflaky-nest-4929
11/15/2021, 4:43 PMflaky-nest-4929
11/15/2021, 4:43 PMbulky-sundown-74498
11/15/2021, 4:43 PMbulky-sundown-74498
11/15/2021, 4:43 PMquiet-tent-29166
11/16/2021, 1:05 PMquiet-tent-29166
11/16/2021, 3:27 PMquiet-tent-29166
11/16/2021, 3:27 PMstrong-plumber-54448
11/16/2021, 5:01 PMgray-kilobyte-89541
11/16/2021, 6:14 PMquiet-tent-29166
11/16/2021, 6:34 PMquiet-tent-29166
11/16/2021, 6:38 PMgorgeous-bird-50464
11/18/2021, 10:49 AMstraight-accountant-22127
11/22/2021, 12:12 PMgray-kilobyte-89541
11/22/2021, 3:56 PMlively-hamburger-88429
11/22/2021, 11:14 PMlively-hamburger-88429
11/22/2021, 11:19 PMnpx cypress run
and after it yarn open
but I think it should be yarn cypress run
instead. As "open" is not the same as "run" and without specifying "cypress" it will not know to run cypress 🙂future-eye-56254
11/23/2021, 1:06 AMcalm-doctor-58650
11/23/2021, 3:45 AMenough-plastic-87422
11/24/2021, 6:50 PMuser
11/24/2021, 6:52 PMdata-cy
selectors:
Cypress.Commands.overwrite("get", (originalFn, selector, options = {}) => {
let locator
if (!selector.includes('iframe')) {
const splitSelector = selector.split("")
const nonDataCy = [
".",
"#",
"=",
]
const found = splitSelector.some((v) => nonDataCy.includes(v))
if (found) locator = selector
else locator = `[data-cy='${selector}']`
} else {
locator = selector
}
return originalFn(locator, options)
})
enough-plastic-87422
11/24/2021, 6:54 PMuser
11/24/2021, 6:54 PMsparse-train-10591
11/25/2021, 12:56 PMcalm-doctor-58650
11/25/2021, 1:51 PMcalm-doctor-58650
11/25/2021, 1:52 PM