Oleksandr Liakhevych
Oleksandr Liakhevych
### What happened? We use Network monitoring to log requests and responses for failed tests. ```csharp var network = _driver.Manage().Network; await network.StartMonitoring(); network.NetworkRequestSent += NetworkRequestSent; network.NetworkResponseReceived += NetworkResponseReceived; ``` Unfortunately,...
First of all, thanks a lot for the great library! I only use Task Scheduler from Coravel (at least for now), and personally I'd prefer to be able not to...
```csharp [Theory] #pragma warning disable xUnit1010 // The value is not convertible to the method parameter type [InlineData("2.234")] #pragma warning restore xUnit1010 // The value is not convertible to the...
Fix #460 . ```razor ... public string ItemDisplay(PickerModel model) { return $"❤️{model.Name}❤️"; } ```  I haven't changed property name (to ItemDisplaySelector) so far, but I'd be happy to do...
Currently in our Picker implementation `ItemDisplayBinding` property has a string type, which represents property name which should be displayed, so if I have the following item type: ```csharp class Item...
Since MAUI supports passing additional parameters during navigation, would be great if MBB supported that as well. https://docs.microsoft.com/en-us/dotnet/maui/fundamentals/shell/navigation#pass-data
Fixes #454 . I've added the support for text child content, and a small page in the ControlGallery for Labels.
Despite the example in our Readme: ```razor You pressed @count times ``` MBB doesn't actually allow to set Label text via child content, Text property should be used instead. Would...
Fixes #452 . I had to remove unit tests, because there's nothing unit-testable left. I've noticed another issue while working on this issue - Shell navigation with 'double' parameters fails...