美文网首页
Cypress 键盘按键事件

Cypress 键盘按键事件

作者: BestFei | 来源:发表于2020-06-10 15:15 被阅读0次
      // .type() with special character sequences
      .type('{leftarrow}{rightarrow}{uparrow}{downarrow}')
      .type('{del}{selectall}{backspace}')
    
      // .type() with key modifiers
      .type('{alt}{option}') //these are equivalent
      .type('{ctrl}{control}') //these are equivalent
      .type('{meta}{command}{cmd}') //these are equivalent
      .type('{shift}')
    

    相关文章

      网友评论

          本文标题:Cypress 键盘按键事件

          本文链接:https://www.haomeiwen.com/subject/dlkptktx.html