Lucas Loegel
Lucas Loegel
Since the addition of .net core targets for test projects, the switch to `dotnet test` and the new VS 2019 image of AppVeyor, the build became unreliable. Issues are: -...
Add a new set of actions that would allow to scroll on the page. ```csharp Actor.Given(Scroll.To(target)); ``` - [ ] Scroll to target - [ ] Scroll to top /...
Add actions that allows to drag elements on a page: ```csharp var itemToDrag = Target.The("item to drag").LocatedBy(By.Id("item")); var drop = Target.The("Drop target").LocatedBy(By.Id("drop")); var action = Drag.Target(itemToDrag).AndDropTo(drop); Actor.Given(action); ``` - [...
I want to be able to update forms with UIModel. ```csharp var action = UIModel.Update(model, target). ```
### Description The operator override of a discriminated union returns fase when the 2 operands are null. ### Repro steps 1. Create a discriminated union such as `union Maybe{ None...
Hello, We use `AutoGenerateBindingRedirects `in order to let msbuild generate them. Unfortunately, it does not generate them for assemblies signed by the StrongNamer package. I made a repro solution here:...