Package org.openqa.selenium.devtools
Class DevToolsProvider
- java.lang.Object
-
- org.openqa.selenium.devtools.DevToolsProvider
-
- All Implemented Interfaces:
AugmenterProvider<HasDevTools>
@AutoService(AugmenterProvider.class) public class DevToolsProvider extends java.lang.Object implements AugmenterProvider<HasDevTools>
-
-
Constructor Summary
Constructors Constructor Description DevToolsProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<HasDevTools>getDescribedInterface()HasDevToolsgetImplementation(org.openqa.selenium.Capabilities caps, ExecuteMethod executeMethod)For the interface that this provider describes, return an implementation.java.util.function.Predicate<org.openqa.selenium.Capabilities>isApplicable()
-
-
-
Method Detail
-
isApplicable
public java.util.function.Predicate<org.openqa.selenium.Capabilities> isApplicable()
- Specified by:
isApplicablein interfaceAugmenterProvider<HasDevTools>- Returns:
- Whether this provider should be applied given these
caps.
-
getDescribedInterface
public java.lang.Class<HasDevTools> getDescribedInterface()
- Specified by:
getDescribedInterfacein interfaceAugmenterProvider<HasDevTools>- Returns:
- The interface that this augmentor describes.
-
getImplementation
public HasDevTools getImplementation(org.openqa.selenium.Capabilities caps, ExecuteMethod executeMethod)
Description copied from interface:AugmenterProviderFor the interface that this provider describes, return an implementation.- Specified by:
getImplementationin interfaceAugmenterProvider<HasDevTools>- Returns:
- An interface implementation
-
-