mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
ad assert for chart page whitelist call
This commit is contained in:
parent
95df87c293
commit
75ed9bb3b4
|
@ -7,7 +7,11 @@ test.describe('Chart', () => {
|
||||||
await setLoginInfo(page);
|
await setLoginInfo(page);
|
||||||
});
|
});
|
||||||
test('Chart page', async ({ page }) => {
|
test('Chart page', async ({ page }) => {
|
||||||
await page.goto('/graph');
|
await Promise.all([
|
||||||
|
page.goto('/graph'),
|
||||||
|
page.waitForResponse('**/whitelist'),
|
||||||
|
page.waitForResponse('**/blacklist'),
|
||||||
|
]);
|
||||||
|
|
||||||
// await page.waitForResponse('**/pair_candles');
|
// await page.waitForResponse('**/pair_candles');
|
||||||
await page.locator('input[title="AutoRefresh"]').click();
|
await page.locator('input[title="AutoRefresh"]').click();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user