我需要获取表单元素的操作值。例如,对于表单:
<form action="/MyApp/Users/Index" method="post"></form>
我想获得“ /MyApp/Users/Index
”值。
我尝试使用的.GetAttribute("action")
方法,IWebElement
但它返回一个空字符串。
我需要获取表单元素的操作值。例如,对于表单:
<form action="/MyApp/Users/Index" method="post"></form>
我想获得“ /MyApp/Users/Index
”值。
我尝试使用的.GetAttribute("action")
方法,IWebElement
但它返回一个空字符串。