Ian Johnson
Ian Johnson
Moving forward I'm going to upgrade the projects to selenium 3.7, are you interested in moving up to 3.7 or is it more useful for you to release against the...
I agree WebDriverCommandTimeoutAttribute is the right way to go. It looks good.
Hi Martin, What happens when you put multiple remote attributes on a method? I'll take a look at it today but there shouldn't be any technical problems, I just have...
Yup that will definitely not work. I think the original intention was to be able to or them together but I obviously didn't end up implement it that way. That...
Oddly enough I was just going to ask you about adding the ability to provide more capabilities. option 1: Add 3 properties for Platform, BrowserName, and Version. They would be...
I definitely thought about that the problem I see with that is that the other attributes don't allow multiples so you know the one driver goes with the one driver...
For option 2 I think you would define 3 different classes that implement IRemoteDriverCapabilityProvider ``` [RemoteDriver(RemoteWebDriverCapability.Chrome, ExtraCapabilities = typeof(ChromeCurrentVersion)] [RemoteDriver(RemoteWebDriverCapability.Chrome, ExtraCapabilities = typeof(ChromeOneVersionBack)] [RemoteDriver(RemoteWebDriverCapability.Chrome, ExtraCapabilities = typeof(ChromeTwoVersionBack)] ```
And if that get's to unruly to manage there is always the option of inheriting from RemoteDriver and return as many drivers and configurations as needed. I'll look to implement...
@mcdis I can put together a sample but ultimately there really isn't much to adding Grace to an asp.net core application one line in the Program.cs and a couple in...
@mcdis sorry I'm so late on this but here is an example of doing multi tenants in asp.net core using Grace [PerRequestDependency.zip](https://github.com/ipjohnson/Grace.DependencyInjection.Extensions/files/1997011/PerRequestDependency.zip)