2023-03-08 06:11:13 -08:00
|
|
|
import { WorkflowPage, NDV } from '../pages';
|
2022-11-25 04:09:44 -08:00
|
|
|
|
2023-01-18 06:48:36 -08:00
|
|
|
const workflowPage = new WorkflowPage();
|
2023-01-26 23:51:32 -08:00
|
|
|
const ndv = new NDV();
|
2022-11-25 04:09:44 -08:00
|
|
|
|
|
|
|
describe('HTTP Request node', () => {
|
2023-06-22 15:38:12 -07:00
|
|
|
beforeEach(() => {
|
|
|
|
workflowPage.actions.visit();
|
2022-11-25 04:09:44 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should make a request with a URL and receive a response', () => {
|
2023-02-17 06:08:26 -08:00
|
|
|
workflowPage.actions.addInitialNodeToCanvas('Manual');
|
2023-01-18 06:48:36 -08:00
|
|
|
workflowPage.actions.addNodeToCanvas('HTTP Request');
|
|
|
|
workflowPage.actions.openNode('HTTP Request');
|
|
|
|
ndv.actions.typeIntoParameterInput('url', 'https://catfact.ninja/fact');
|
2022-11-25 04:09:44 -08:00
|
|
|
|
2023-01-18 06:48:36 -08:00
|
|
|
ndv.actions.execute();
|
2022-11-25 04:09:44 -08:00
|
|
|
|
2023-01-18 06:48:36 -08:00
|
|
|
ndv.getters.outputPanel().contains('fact');
|
2022-11-25 04:09:44 -08:00
|
|
|
});
|
|
|
|
});
|