You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, thx for the implementation of #463 so quickly. Now I'm trying with the new veersion, but I'm not able to see how to forward settings to my edge driver. I have tried something as follows:
Seems to suggest valid keys for the 'prefs' object is described in a config file "in the user data folder for microsoft edge".
Unfortunately I couldn't find anything of the sort for edge in %APPDATA% or %LOCALAPPDATA%, so I'm not real sure if there are differences versus chrome.
It could also just be their driver doesn't return that as part of the capabilities, though I regard that as unlikely.
Is it possible that some line like this one is needed in the driver.pm ?:
#Fix broken out of the box chrome because they hate the maintainers of their interfaces
if ( $self->isa('Selenium::Chrome') ) {
if ( exists $args->{desiredCapabilities} ) {
$args->{desiredCapabilities}{'goog:chromeOptions'}{args} //= [];
push(@{$args->{desiredCapabilities}{'goog:chromeOptions'}{args}}, qw{no-sandbox disable-dev-shm-usage});
}
}
Hello, thx for the implementation of #463 so quickly. Now I'm trying with the new veersion, but I'm not able to see how to forward settings to my edge driver. I have tried something as follows:
Similar to what I do in chrome, but id does not seem to work, as dumping what
get_capabilities
returns states:This is what I'm trying to migrate to edge from chrome, but I'm not able to get it started:
The text was updated successfully, but these errors were encountered: