You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.4 KiB
50 lines
1.4 KiB
// Copyright (c) Jupyter Development Team.
|
|
// Distributed under the terms of the Modified BSD License.
|
|
|
|
import { test } from './fixtures';
|
|
|
|
import { expect } from '@playwright/test';
|
|
|
|
const SUBFOLDER = 'subfolder';
|
|
|
|
test('Tree', async ({ page }) => {
|
|
await page.goto('tree');
|
|
const button = await page.$('text="New Notebook"');
|
|
expect(button).toBeDefined();
|
|
});
|
|
|
|
test('should go to subfolder', async ({ page, tmpPath }) => {
|
|
const dir = `${tmpPath}/${SUBFOLDER}`;
|
|
await page.contents.createDirectory(dir);
|
|
await page.goto(`tree/${dir}`);
|
|
|
|
expect(
|
|
await page.waitForSelector(`.jp-FileBrowser-crumbs >> text=/${SUBFOLDER}/`)
|
|
).toBeTruthy();
|
|
});
|
|
|
|
test('should update url when navigating in filebrowser', async ({
|
|
page,
|
|
tmpPath
|
|
}) => {
|
|
await page.contents.createDirectory(`${tmpPath}/${SUBFOLDER}`);
|
|
|
|
await page.dblclick(`.jp-FileBrowser-listing >> text=${SUBFOLDER}`);
|
|
|
|
await page.waitForSelector(`.jp-FileBrowser-crumbs >> text=/${SUBFOLDER}/`);
|
|
|
|
const url = new URL(page.url());
|
|
expect(url.pathname).toEqual(`/tree/${tmpPath}/${SUBFOLDER}`);
|
|
});
|
|
|
|
test('Should activate file browser tab', async ({ page, tmpPath }) => {
|
|
await page.goto(`tree/${tmpPath}`);
|
|
await page.click('text="Running"');
|
|
await expect(
|
|
page.locator('#main-panel #jp-running-sessions-tree')
|
|
).toBeVisible();
|
|
|
|
await page.menu.clickMenuItem('View>File Browser');
|
|
await expect(page.locator('#main-panel #filebrowser')).toBeVisible();
|
|
});
|