Package org.openqa.selenium.remote
Interface AdditionalHttpCommands
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface AdditionalHttpCommands
Used to allow aCommandExecutor
using HTTP to find additional commands that should be supported. Implementations of this interface are found using theServiceLoader
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,CommandInfo>
getAdditionalCommands()
-
-
-
Method Detail
-
getAdditionalCommands
java.util.Map<java.lang.String,CommandInfo> getAdditionalCommands()
- Returns:
- Additional commands to add to the
CommandExecutor
.
-
-