puppeter sharp如何获取属性的值?
How does puppeter sharp get the value of an attribute?
puppeter sharp如何获取属性的值?好像获取属性和控件没有WindowsForms WebBrowser方便。
在下面的代码中,我无法获取 type
的值
var node=await page.QuerySelectorAsync("#uid" );
var vv=await node.GetPropertyAsync("type");
html
<input name="uid" type="text" style="height:50px;font-size:20px;" onkeypress="txtEnter(this,event)" class="form-control" id="uid">
我认为 EvaluateFunctionAsync
是最直接的方法:
var type = await node.EvaluateFunctionAsync<string>("node => node.type");
puppeter sharp如何获取属性的值?好像获取属性和控件没有WindowsForms WebBrowser方便。 在下面的代码中,我无法获取 type
的值var node=await page.QuerySelectorAsync("#uid" );
var vv=await node.GetPropertyAsync("type");
html
<input name="uid" type="text" style="height:50px;font-size:20px;" onkeypress="txtEnter(this,event)" class="form-control" id="uid">
我认为 EvaluateFunctionAsync
是最直接的方法:
var type = await node.EvaluateFunctionAsync<string>("node => node.type");