-
Notifications
You must be signed in to change notification settings - Fork 936
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Failing step is not highlighted in red in actions panel for versions after 1.39.0 #2258
Comments
Can you provide us a introductions on how to reproduce this? This would help us a ton in order to triage and prioritise this! |
create a new project with the latest playwright: main.py:
pytest.ini:
run the test with playwright 1.39.0: red assertion step |
I can reproduce: 1.39.0: good Caused by microsoft/playwright#28112. This also affects Node.js without the test-runner, Playwright for Java, and probably .NET. import { chromium, expect } from '@playwright/test';
(async () => {
const browser = await chromium.launch();
const context = await browser.newContext();
try {
await context.tracing.start({ screenshots: true, snapshots: true });
const page = await context.newPage();
await page.goto('https://example.com');
await expect(page).toHaveTitle('123');
} finally {
await context.tracing.stop({ path: 'trace.zip' });
}
await context.close();
await browser.close();
})(); Expected: Last step is red. |
This reverts commit 2c3955a. Relates microsoft/playwright-python#2258
has this issue been fixed yet ? if not can i contribute ? |
This should be fixed in https://github.com/microsoft/playwright-python/releases/tag/v1.41.2. |
I am looking for issues or bugs to fix. i would like to contribute
…On Fri, Feb 9, 2024 at 11:16 AM Max Schmitt ***@***.***> wrote:
Closed #2258 <#2258>
as completed.
—
Reply to this email directly, view it on GitHub
<#2258 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AVM3FTMAXEAUOWXYLOJFPDLYSZYXXAVCNFSM6AAAAABCINM57GVHI2DSMVQWIX3LMV45UABCJFZXG5LFIV3GK3TUJZXXI2LGNFRWC5DJN5XDWMJRG43DCNRRGU2TGOA>
.
You are receiving this because you commented.Message ID:
***@***.***
com>
|
System info
Steps
Expected
Failing step in the actions panel should be highlighted in red
Actual
Failing step not highlighted in red
Additional info
This is working on version 1.39.0
All traces opened in trace.playwright.dev
The text was updated successfully, but these errors were encountered: