average-soccer-69770
08/26/2022, 3:56 PMgray-kilobyte-89541
08/26/2022, 7:38 PMstrong-energy-6158
08/27/2022, 5:55 AMgray-kilobyte-89541
08/27/2022, 12:10 PMacoustic-printer-33265
08/28/2022, 3:56 AMWebpack Compilation Error
with the firebase-admin
package. I've tried different configurations from my Google searches.
Here is the pastebin
for the error: https://pastebin.com/z7GWamcChappy-dinner-13480
08/28/2022, 4:18 PMtypescript
it('Set payment methods', () => {
cy.el('tablePaymentMethods')
.children()
.each(($el) => {
$el.trigger('click');
cy.el('toggleActive').click();
cy.el('btnEditPaymentMethod').click();
});
});
but I think this executes the code all at the same time, so all 5 modals are opened simultaneously. How can I do this in order?happy-dinner-13480
08/28/2022, 4:42 PMboundless-pager-73753
08/28/2022, 6:17 PMclass navigationPage {
studioManagementPage() {
selectGroupMenuItem('Studio Management')
}
memberProfilesPage() {
selectGroupMenuItem('Member Management')
cy.contains('Member Profiles').click()
}
mergeProfilesPage() {
selectGroupMenuItem('Member Management')
cy.contains('Merge Profiles').click()
}
... i.e.
export const navigateTo = new navigationPage();
Trying to create a test to validate navigation through each page in app, that would iterate through each method within this class. Thanks!acceptable-hamburger-48790
08/28/2022, 6:22 PMboundless-pager-73753
08/28/2022, 6:23 PMacceptable-hamburger-48790
08/28/2022, 6:23 PMacceptable-hamburger-48790
08/28/2022, 6:24 PMboundless-pager-73753
08/28/2022, 6:27 PMacceptable-hamburger-48790
08/28/2022, 6:30 PMboundless-pager-73753
08/28/2022, 6:30 PMsparse-salesmen-23560
08/29/2022, 3:14 AMlimited-barista-33480
08/29/2022, 4:02 AMcold-nail-59111
08/29/2022, 7:21 AMwitty-beach-37597
08/29/2022, 9:40 AMmysterious-motherboard-13344
08/29/2022, 1:28 PMcolossal-farmer-50435
08/29/2022, 2:03 PMhappy-dinner-13480
08/29/2022, 2:39 PMGET
request but it doesn't work as I wanted:
cy.intercept({
method: 'GET',
url: `${Cypress.env('API_URL')}/api/v1/receipt/*?cache_buster=*`,
}).as('getReceipt');
This intercept intercepts the first url, but I want to intercept the second url. Any suggestions how to make the *
more strict?
https://***.com/api/v1/receipt/suggestions?type=receipt&finance_type=purchase&is_invoice=0&cache_buster=FlYeNfBNG5ZY66
https://***.com/api/v1/receipt/630ba8b4f7005c058a702534?cache_buster=LcsJ1esqykcp93
quaint-judge-45197
08/29/2022, 3:41 PMbody { error: you must pass cert to access this endpoint, you can not skip this request }
This error occurs when you visit website which use PKI certificate to login and you cancel the popup of select your certificatepolite-policeman-65273
08/29/2022, 3:51 PMacceptable-hamburger-48790
08/29/2022, 4:20 PMuser
08/29/2022, 8:27 PMacceptable-solstice-90676
08/29/2022, 9:31 PMspec
when havingadorable-smartphone-87280
08/30/2022, 12:51 AMCypress.session.clearAllSavedSessions();
in an afterEach()
hook to clear my session state. I don't know if that clears the entire cache or not, but might be worth trying (?).strong-energy-6158
08/30/2022, 6:00 AMhappy-dinner-13480
08/30/2022, 6:53 AMurl: /receipt\/(?=[a-z]*[0-9])[a-z0-9]+\?/,