MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / IEServer

Method IEServer

cpp/iedriver/IEServer.cpp:26–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24namespace webdriver {
25
26IEServer::IEServer(int port,
27 const std::string& host,
28 const std::string& log_level,
29 const std::string& log_file,
30 const std::string& version,
31 const std::string& acl) : Server(port, host, log_level, log_file, acl) {
32 LOG(TRACE) << "Entering IEServer::IEServer";
33 LOG(INFO) << "Driver version: " << version;
34 this->version_ = version;
35 this->AddCommand("/session/:sessionid/ie/script/background", "POST", "executeBackgroundScript");
36}
37
38IEServer::~IEServer(void) {
39}

Callers

nothing calls this directly

Calls 2

AddCommandMethod · 0.80
LOGClass · 0.50

Tested by

no test coverage detected