selenium系列->Actions命令实例整理->type(locator,value)

  • 命令作用:向指定输入域中输入指定值;也可以为复选框和单选按钮赋值,只是Value应为选项的值,而不是文本内容。

  • 示例:selenium.type("xpath=//input[@name='userID']", "test-user");

  • http://blog.chinaunix.net/uid-11775320-id-2830463.html

你可能感兴趣的:(type,selenium)