Skip to content

Commit a150e0c

Browse files
authored
chore: pass Activator.CreateInstance exception as inner exception (#2703)
1 parent 24edb58 commit a150e0c

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

src/Playwright.Tests/PageEvaluateTests.cs

+13
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ public async Task ShouldWork()
3939
Assert.AreEqual(21, result);
4040
}
4141

42+
[PlaywrightTest()]
4243
public async Task ShouldSerializeArguments()
4344
{
4445
int result = await Page.EvaluateAsync<int>("a => a.m * a.n", new { m = 7, n = 3 });
@@ -656,6 +657,7 @@ public async Task ShouldJsonValueDate()
656657
Assert.AreEqual(new DateTime(2020, 05, 27, 1, 31, 38, 506), result.date);
657658
}
658659

660+
[PlaywrightTest()]
659661
public async Task ShouldSerializeEnumProperty()
660662
{
661663
int result = await Page.EvaluateAsync<int>("a => a.TestEnum", new ClassWithEnumProperty());
@@ -718,4 +720,15 @@ public async Task ShouldParseTypeProperties()
718720
Assert.AreEqual(600, result.Width);
719721
Assert.AreEqual(400, result.Height);
720722
}
723+
724+
#if NET6_0_OR_GREATER
725+
private record ShapeRecord(int Width, int Height);
726+
727+
[PlaywrightTest()]
728+
public async Task ShouldParseRecordProperties()
729+
{
730+
var exception = await PlaywrightAssert.ThrowsAsync<PlaywrightException>(() => Page.EvaluateAsync<ShapeRecord>("() => ({ width: 600, height: 400 })"));
731+
Assert.IsInstanceOf<MissingMethodException>(exception.InnerException);
732+
}
733+
#endif
721734
}

src/Playwright/Transport/Converters/EvaluateArgumentValueConverter.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,9 @@ private static object ToExpectedType(object parsed, Type t, IDictionary<object,
241241
{
242242
objResult = Activator.CreateInstance(t);
243243
}
244-
catch (Exception)
244+
catch (Exception ex)
245245
{
246-
throw new PlaywrightException("Return type mismatch. Expecting " + t.ToString() + ", got Object");
246+
throw new PlaywrightException("Return type mismatch. Expecting " + t.ToString() + ", got Object", ex);
247247
}
248248
visited.Add(parsed, objResult);
249249

0 commit comments

Comments
 (0)