Uses of Class
org.openqa.selenium.devtools.target.model.BrowserContextID
-
Packages that use BrowserContextID Package Description org.openqa.selenium.devtools.browser org.openqa.selenium.devtools.target org.openqa.selenium.devtools.target.model -
-
Uses of BrowserContextID in org.openqa.selenium.devtools.browser
Method parameters in org.openqa.selenium.devtools.browser with type arguments of type BrowserContextID Modifier and Type Method Description static Command<java.lang.Void>
Browser. grantPermissions(java.lang.String origin, java.util.List<PermissionType> permissions, java.util.Optional<BrowserContextID> browserContextId)
Grant specific permissions to the given origin and reject all others.static Command<java.lang.Void>
Browser. resetPermissions(java.util.Optional<BrowserContextID> browserContextId)
Reset all permission management for all origins. -
Uses of BrowserContextID in org.openqa.selenium.devtools.target
Methods in org.openqa.selenium.devtools.target that return types with arguments of type BrowserContextID Modifier and Type Method Description static Command<BrowserContextID>
Target. createBrowserContext()
Creates a new empty BrowserContext.static Command<java.util.List<BrowserContextID>>
Target. getBrowserContexts()
Returns all browser contexts created with `Target.createBrowserContext` method.Methods in org.openqa.selenium.devtools.target with parameters of type BrowserContextID Modifier and Type Method Description static Command<java.lang.Void>
Target. disposeBrowserContext(BrowserContextID browserContextId)
Deletes a BrowserContext. -
Uses of BrowserContextID in org.openqa.selenium.devtools.target.model
Methods in org.openqa.selenium.devtools.target.model that return BrowserContextID Modifier and Type Method Description BrowserContextID
TargetInfo. getBrowserContextId()
Constructors in org.openqa.selenium.devtools.target.model with parameters of type BrowserContextID Constructor Description TargetInfo(TargetID targetId, java.lang.String type, java.lang.String title, java.lang.String url, java.lang.Boolean attached, TargetID openerId, BrowserContextID browserContextId)
-