Skip to content
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

fix: CallLog formatting #3135

Merged
merged 1 commit into from
Mar 31, 2025
Merged

fix: CallLog formatting #3135

merged 1 commit into from
Mar 31, 2025

Conversation

mxschmitt
Copy link
Member

@mxschmitt mxschmitt commented Mar 31, 2025

Looks like this was changed here. Fixes #3132

Before:

➜  Playwright.Examples git:(fix-calllog-formatting) ✗ dotnet run Program.cs
Unhandled exception. System.TimeoutException: Timeout 1000ms exceeded.
Call log:
  -   - waiting for Locator("textarea")
  -     - locator resolved to <textarea disabled></textarea>
  -     - fill("12")
  -   - attempting fill action
  -     2 × waiting for element to be visible, enabled and editable
  -       - element is not enabled
  -     - retrying fill action
  -     - waiting 20ms
  -     2 × waiting for element to be visible, enabled and editable
  -       - element is not enabled
  -     - retrying fill action
  -       - waiting 100ms
  -     2 × waiting for element to be visible, enabled and editable
  -       - element is not enabled
  -     - retrying fill action
  -       - waiting 500ms
   at Microsoft.Playwright.Transport.Connection.InnerSendMessageToServerAsync[T](ChannelOwner object, String method, Dictionary`2 dictionary, Boolean keepNulls) in /Users/maxschmitt/Developer/playwright-dotnet/src/Playwright/Transport/Connection.cs:line 206
   at Microsoft.Playwright.Transport.Connection.WrapApiCallAsync[T](Func`1 action, Boolean isInternal) in /Users/maxschmitt/Developer/playwright-dotnet/src/Playwright/Transport/Connection.cs:line 535
   at Program.<Main>$(String[] args) in /Users/maxschmitt/Developer/playwright-dotnet/src/Playwright.Examples/Program.cs:line 31
   at Program.<Main>$(String[] args) in /Users/maxschmitt/Developer/playwright-dotnet/src/Playwright.Examples/Program.cs:line 31
   at Program.<Main>(String[] args)
➜  Playwright.Examples git:(main) ✗ 

After:

➜  Playwright.Examples git:(fix-calllog-formatting) ✗ dotnet run Program.cs
Unhandled exception. System.TimeoutException: Timeout 1000ms exceeded.
Call log:
  - waiting for Locator("textarea")
    - locator resolved to <textarea disabled></textarea>
    - fill("12")
  - attempting fill action
    2 × waiting for element to be visible, enabled and editable
      - element is not enabled
    - retrying fill action
    - waiting 20ms
    2 × waiting for element to be visible, enabled and editable
      - element is not enabled
    - retrying fill action
      - waiting 100ms
    2 × waiting for element to be visible, enabled and editable
      - element is not enabled
    - retrying fill action
      - waiting 500ms
   at Microsoft.Playwright.Transport.Connection.InnerSendMessageToServerAsync[T](ChannelOwner object, String method, Dictionary`2 dictionary, Boolean keepNulls) in /Users/maxschmitt/Developer/playwright-dotnet/src/Playwright/Transport/Connection.cs:line 206
   at Microsoft.Playwright.Transport.Connection.WrapApiCallAsync[T](Func`1 action, Boolean isInternal) in /Users/maxschmitt/Developer/playwright-dotnet/src/Playwright/Transport/Connection.cs:line 535
   at Program.<Main>$(String[] args) in /Users/maxschmitt/Developer/playwright-dotnet/src/Playwright.Examples/Program.cs:line 31
   at Program.<Main>$(String[] args) in /Users/maxschmitt/Developer/playwright-dotnet/src/Playwright.Examples/Program.cs:line 31
   at Program.<Main>(String[] args)

@mxschmitt mxschmitt merged commit 9c528d1 into main Mar 31, 2025
15 checks passed
@mxschmitt mxschmitt deleted the fix-calllog-formatting branch March 31, 2025 12:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug]: Call log formatting (compressCallLog + formatCallLog) is incorrectly adding extra dashes
2 participants