输入文字
给百度输入框中输入文字,的代码:
searchStr = "crifan"
SearchInputSelector = "input#kw.s_ipt"
page.fill(SearchInputSelector, searchStr)
效果:给百度搜索输入框中输入了文字
另:估计是先用Selector
选择元素,再去用元素的fill
也是可以的。
相关文档:Text input
其他几种fill
另外还支持几种的fill
:
page.fill(selector, value[, options])
frame.fill(selector, value[, options])
elementHandle.fill(value[, options])