| 24 | namespace webdriver { |
| 25 | |
| 26 | IEServer::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 | |
| 38 | IEServer::~IEServer(void) { |
| 39 | } |
nothing calls this directly
no test coverage detected