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
Is there a standard place/way to call these functions only when the right type of browser is in use? Obviously we can inspect the current webdriver, pytestconfig, test environment, etc., to determine whether it's a ChromiumDriver, but since the options are handled so nicely I thought maybe this would be too.
The text was updated successfully, but these errors were encountered:
There is a standard in flux that deals with the extra capabilities that Chrome provides via the remote DevTools Protocol. When "Webdriver Bidrectional Interface" standard is formalized, there will be a way to test this. 4.0 is in beta and I am waiting until the final release is out to understand how Firefox and Chrome report their CDP capabilities.
Hi,
We make great use of the
chrome_options
andfirefox_options
fixtures - they're great.However, some functionality is only exposed on a specific instance of
Webdriver
, e.g.,ChromiumDriver#set_network_conditions
Is there a standard place/way to call these functions only when the right type of browser is in use? Obviously we can inspect the current webdriver, pytestconfig, test environment, etc., to determine whether it's a
ChromiumDriver
, but since the options are handled so nicely I thought maybe this would be too.The text was updated successfully, but these errors were encountered: