mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
fe4df702dd
* Always generate base environment id when importing * add unit test * fix lint Co-authored-by: Filipe Freire <livrofubia@gmail.com>
58 lines
2.2 KiB
TypeScript
58 lines
2.2 KiB
TypeScript
import { loadFixture } from '../../playwright/paths';
|
|
import { test } from '../../playwright/test';
|
|
|
|
test.describe('Cookie editor', async () => {
|
|
|
|
test.beforeEach(async ({ app, page }) => {
|
|
await page.click('[data-testid="project"] >> text=Insomnia');
|
|
await page.click('text=Create');
|
|
const text = await loadFixture('simple.yaml');
|
|
await app.evaluate(async ({ clipboard }, text) => clipboard.writeText(text), text);
|
|
await page.click('button:has-text("Clipboard")');
|
|
await page.click('div[role="dialog"] button:has-text("New")');
|
|
await page.click('text=Collectionsimplejust now');
|
|
});
|
|
|
|
test('create and send a cookie', async ({ page }) => {
|
|
|
|
// Open cookie editor
|
|
await page.click('button:has-text("Cookies")');
|
|
|
|
// Edit existing cookie
|
|
await page.click('button:has-text("Edit")');
|
|
await page.click('pre[role="presentation"]:has-text("bar")');
|
|
await page.locator('[data-testid="CookieValue"] >> textarea').nth(1).fill('123');
|
|
await page.locator('text=Done').nth(1).click();
|
|
|
|
// Create a new cookie
|
|
await page.click('text=Actions');
|
|
await page.click('button:has-text("Add Cookie")');
|
|
await page.locator('text=Edit').first().click();
|
|
|
|
// Try to replace text in Raw view
|
|
await page.click('text=Raw');
|
|
await page.locator('text=Raw Cookie String >> input[type="text"]').fill('foo2=bar2; Expires=Tue, 19 Jan 2038 03:14:07 GMT; Domain=localhost; Path=/');
|
|
|
|
await page.locator('text=Done').nth(1).click();
|
|
await page.click('text=Done');
|
|
|
|
// Send http request
|
|
await page.click('button:has-text("GETexample http")');
|
|
await page.click('[data-testid="request-pane"] button:has-text("Send")');
|
|
|
|
// Check in the timeline that the cookie was sent
|
|
await page.click('text=Timeline');
|
|
await page.click('text=foo2=bar2; foo=b123ar');
|
|
|
|
// Send ws request
|
|
await page.click('button:has-text("WSexample websocket")');
|
|
await page.click('text=ws://localhost:4010');
|
|
await page.click('[data-testid="request-pane"] >> text=Connect');
|
|
|
|
// Check in the timeline that the cookie was sent
|
|
await page.click('text=Timeline');
|
|
await page.click('text=foo2=bar2; foo=b123ar;');
|
|
});
|
|
|
|
});
|