Uses of Interface
org.openqa.selenium.OutputType
-
Packages that use OutputType Package Description org.openqa.selenium org.openqa.selenium.firefox org.openqa.selenium.remote org.openqa.selenium.support.events -
-
Uses of OutputType in org.openqa.selenium
Fields in org.openqa.selenium declared as OutputType Modifier and Type Field Description static OutputType<java.lang.String>
OutputType. BASE64
Obtain the screenshot as base64 data.static OutputType<byte[]>
OutputType. BYTES
Obtain the screenshot as raw bytes.static OutputType<java.io.File>
OutputType. FILE
Obtain the screenshot into a temporary file that will be deleted once the JVM exits.Methods in org.openqa.selenium with parameters of type OutputType Modifier and Type Method Description <X> X
TakesScreenshot. getScreenshotAs(OutputType<X> target)
Capture the screenshot and store it in the specified location. -
Uses of OutputType in org.openqa.selenium.firefox
Methods in org.openqa.selenium.firefox with parameters of type OutputType Modifier and Type Method Description <X> X
FirefoxDriver. getFullPageScreenshotAs(OutputType<X> outputType)
Capture the full page screenshot and store it in the specified location.<X> X
HasFullPageScreenshot. getFullPageScreenshotAs(OutputType<X> outputType)
Capture the full page screenshot and store it in the specified location. -
Uses of OutputType in org.openqa.selenium.remote
Methods in org.openqa.selenium.remote with parameters of type OutputType Modifier and Type Method Description <X> X
RemoteWebDriver. getScreenshotAs(OutputType<X> outputType)
<X> X
RemoteWebElement. getScreenshotAs(OutputType<X> outputType)
-
Uses of OutputType in org.openqa.selenium.support.events
Methods in org.openqa.selenium.support.events with parameters of type OutputType Modifier and Type Method Description <X> void
AbstractWebDriverEventListener. afterGetScreenshotAs(OutputType<X> target, X screenshot)
Deprecated.<X> void
WebDriverEventListener. afterGetScreenshotAs(OutputType<X> target, X screenshot)
Deprecated.Called afterTakesScreenshot.getScreenshotAs(OutputType)
allows the implementation to determine which type of output was generated and to access the output itself<X> void
AbstractWebDriverEventListener. beforeGetScreenshotAs(OutputType<X> target)
Deprecated.<X> void
WebDriverEventListener. beforeGetScreenshotAs(OutputType<X> target)
Deprecated.Called beforeTakesScreenshot.getScreenshotAs(OutputType)
allows the implementation to determine which type of output will be generated<X> X
EventFiringWebDriver. getScreenshotAs(OutputType<X> target)
Deprecated.
-