D | js_checker.cc | 13 std::string WrapSend(const std::string& expression) { in WrapSend() argument 14 return "window.domAutomationController.send(" + expression + ")"; in WrapSend() 28 void JSChecker::Evaluate(const std::string& expression) { in Evaluate() argument 30 ASSERT_TRUE(content::ExecuteScript(web_contents_, expression)); in Evaluate() 33 bool JSChecker::GetBool(const std::string& expression) { in GetBool() argument 35 GetBoolImpl(expression, &result); in GetBool() 39 int JSChecker::GetInt(const std::string& expression) { in GetInt() argument 41 GetIntImpl(expression, &result); in GetInt() 45 std::string JSChecker::GetString(const std::string& expression) { in GetString() argument 47 GetStringImpl(expression, &result); in GetString() [all …]
|