case object InternetExplorerInfo extends BrowserInfo with Product with Serializable
Ordering
- Alphabetic
- By Inheritance
Inherited
- InternetExplorerInfo
- Serializable
- Product
- Equals
- BrowserInfo
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def createWebDriver(): WebDriver
Creates a new instance of a Selenium
InternetExplorerDriver
, or returns a BrowserFactory.UnavailableDriver that includes the exception that indicates Internet Explorer was not supported on the host platform and an appropriate error message.Creates a new instance of a Selenium
InternetExplorerDriver
, or returns a BrowserFactory.UnavailableDriver that includes the exception that indicates Internet Explorer was not supported on the host platform and an appropriate error message.- returns
an new instance of a Selenium
InternetExplorerDriver
, or a BrowserFactory.UnavailableDriver if Internet Explorer was not available on the host platform.
- Definition Classes
- → BrowserInfo
- val name: String
- Definition Classes
- BrowserInfo
- def productElementName(n: Int): String
- Definition Classes
- Product
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val tagName: String
- Definition Classes
- BrowserInfo
Internet Explorer browser info, which encapsulates the browser name,
"[InternetExplorer]"
; tag name,org.scalatest.tags.InternetExplorerBrowser
; and a factory method that produces a SeleniumInternetExplorerDriver
.This object's superclass,
BrowserInfo
, is used by AllBrowsersPerSuite and AllBrowsersPerTest: anIndexedSeq[BrowserInfo]
is returned from thebrowsers
field of these traits to specify the browsers to share between tests. When tests are registered,AllBrowsersPerSuite
andAllBrowsersPerTest
use the browser name to ensure the tests shared by multiple browsers have unique names (the name of each shared test is appended with a browser name). When the tests run, these traits use theBrowserInfo
's factory method to createWebDriver
s as needed. TheAllBrowsersPerSuite
andAllBrowsersPerTest
traits use the tag name to automatically tag any tests that use a particularWebDriver
with the appropriate tag so that tests can be dynamically filtered by the browser the use.