kiwigrid/gherkin-testcafe

Is it possible use fixture methods?

Closed this issue · 1 comments

Test Cafe allows set creds or/and page url for all fixture. How can I call httpAuth method?

fixture `My fixture`
    .page `http://example.com`
    .httpAuth({
        username: 'username',
        password: 'Pa$$word',

        // Optional parameters, can be required for the NTLM authentication.
        domain:      'CORP-DOMAIN',
        workstation: 'machine-win10'
    });

Hey @maximkoev!

Actually, no. But please refer to #27 on how to handle your particular use case.