LarryG

Results 23 comments of LarryG

I use cucumber in my framework: https://github.com/larryg01/klassi-js, in turn the framework is being used in many projects worldwide. also i use another cucumber related project for reporting cucumber-html-reporter

Hi John Let me know which folders needed and i will sort it out

I am having problems and getting lots of errors trying to implement this: await pactum.spec() .get('url') .withHeaders('Authorization', 'username=john + password=test') .expectStatus(200) Is that the correct implementation i have tried different...

I ca get it working with .withHeaders('Authorization', `Bearer ${token}`) but not with .withAuth(username, password)

Thanks for posting

I am fighting with getting it to work where the auth is part of the url? i.e https://username:[email protected]

As a workaround we can use `withAuth` method. ```js await pactum.spec() .get('https://the-internet.herokuapp.com') .withAuth('admin', 'admin') ``` This worked for me Thank you very much. Its a great tool but I have...

Do you have any updates with reference to using different types of Auth methods (i.e. Digest in particular) ?

I am struggling to get it to work with aws Signature its working in postman but not in Pactum is there something am missing? Any help would be greatly appreciated

I would also like to know, what is the position on this in terms of updating to use the new version of cucumber, as I am also using the module...