Selenium Webdriver通常从哪个地方获得标题-使用routes.MapRoute(
"MethodName",
"{ControllerName}/{MethodName}/{num}",
new { controller = "controllerName", action = "MethodName", num= UrlParameter.Optional }
);
?
答案 0 :(得分:0)
title返回当前页面的标题。
用法:
title = driver.title
定义:
def title(self):
"""Returns the title of the current page.
:Usage:
title = driver.title
"""
resp = self.execute(Command.GET_TITLE)
详细信息:调用driver.title
时, HTTP GET request 会通过 {{ 1}} URI模板。
注意:此命令返回当前顶级浏览上下文的文档标题,等同于调用
/session/{session id}/title
。