Oleksandr Liakhevych
Oleksandr Liakhevych
> I wish we have aspect-oriented interceptors for properties as a language feature like how it's done in [PostSharp](https://doc.postsharp.net/location-interception), so I could transparently hook and redirect managed properties to Unreal...
Today I was able to get another similar error. This one is very rare though, I've seen it only once so far. ``` The active test run was aborted. Reason:...
@rhamblin I ended up ditching WebDriver's Network classes, and used ChromeDevTools directly: ```csharp _devTools = ((IDevTools)_driver).GetDevToolsSession().GetVersionSpecificDomains(); await _devTools.Network.Enable(new EnableCommandSettings()); _devTools.Network.RequestWillBeSent += RequestWillBeSent; _devTools.Network.ResponseReceived += ResponseReceived; _devTools.Network.LoadingFinished += LoadingFinished; ```
@lopukhDA You're trying to retrieve response body on RequestWillBeSent event, response body not available at this point, since there is no response itself so far. You should do that on...
Would it make sense to add StackTraceHiddenAttribute for auto-generated methods?
Unfortunately, this property is not yet mapped in MBB.
That one is not mapped either. If you really need to, you can access native Xamarin.Forms elements, and assign that property directly, but you'll need to build that TitleView using...
I think you can leave it opened - as a request to map those properties in MBB.
Seems like the cause of the issue is Xamarin.Forms upgrade - I cannot reproduce on older commits.
Probably should be fixed by this PR: https://github.com/xamarin/Xamarin.Forms/pull/13330 So probably simply need to wait for Xamarin.Forms update.