The below test is supposed to scan and authenticate a QR code and use the authentication token received. The last two command(.type) is being skipped. Does anyone have an idea why? I have been stuck here for some time already.
getUrlVars is a helper function returning the string I use to generate the token. I
Thanks
/// <reference types='Cypress' />
import { Decoder } from "@nuintun/qrcode";
const qrcode = new Decoder();
const OTPAuth = require("otpauth");
import Navbar from "../page-objects/components/Navbar";
import UserProfileNav from "../page-objects/components/UserProfileNav";
import BasePage from "../page-objects/pages/BasePage";
import LoginPage from "../page-objects/pages/LoginPage";
import RegistrationPage from "../page-objects/pages/RegistrationPage";
import { createEmail, getUrlVars } from "../utils/utils";
describe("test", () => {
it("ttest", () => {
cy.visit("/");
LoginPage.login("[email protected]", "P@ssword1");
Navbar.navigateToProfile();
UserProfileNav.twoStepVerificationTab();
cy.findAllByAltText("2FA QR kód").then(function ($img) {
qrcode.scan($img.prop("src")).then((result) => {
const totp = new OTPAuth.TOTP({
algorithm: "SHA1",
digits: 6,
period: 30,
secret: getUrlVars(result.data)["secret"],
});
const token = totp.generate();
console.log(token);
cy.findByLabelText("Jednorázový kód").type(token);
});
});
});
});
Can you try this? May be the problem is because of javascript asynchronous nature, this is executed first:
followed by:
Hence token is coming as not defined. We have to use
then()
to basically tell cypress to run everything synchronously.