<bdo id='IQX7u'></bdo><ul id='IQX7u'></ul>
      1. <tfoot id='IQX7u'></tfoot>

        <small id='IQX7u'></small><noframes id='IQX7u'>

        <i id='IQX7u'><tr id='IQX7u'><dt id='IQX7u'><q id='IQX7u'><span id='IQX7u'><b id='IQX7u'><form id='IQX7u'><ins id='IQX7u'></ins><ul id='IQX7u'></ul><sub id='IQX7u'></sub></form><legend id='IQX7u'></legend><bdo id='IQX7u'><pre id='IQX7u'><center id='IQX7u'></center></pre></bdo></b><th id='IQX7u'></th></span></q></dt></tr></i><div id='IQX7u'><tfoot id='IQX7u'></tfoot><dl id='IQX7u'><fieldset id='IQX7u'></fieldset></dl></div>
        <legend id='IQX7u'><style id='IQX7u'><dir id='IQX7u'><q id='IQX7u'></q></dir></style></legend>
      2. 带有量角器js的剪贴板中的文本

        时间:2023-06-15
        1. <i id='J1qrC'><tr id='J1qrC'><dt id='J1qrC'><q id='J1qrC'><span id='J1qrC'><b id='J1qrC'><form id='J1qrC'><ins id='J1qrC'></ins><ul id='J1qrC'></ul><sub id='J1qrC'></sub></form><legend id='J1qrC'></legend><bdo id='J1qrC'><pre id='J1qrC'><center id='J1qrC'></center></pre></bdo></b><th id='J1qrC'></th></span></q></dt></tr></i><div id='J1qrC'><tfoot id='J1qrC'></tfoot><dl id='J1qrC'><fieldset id='J1qrC'></fieldset></dl></div>
          <tfoot id='J1qrC'></tfoot>

          <small id='J1qrC'></small><noframes id='J1qrC'>

              <tbody id='J1qrC'></tbody>
            <legend id='J1qrC'><style id='J1qrC'><dir id='J1qrC'><q id='J1qrC'></q></dir></style></legend>
                <bdo id='J1qrC'></bdo><ul id='J1qrC'></ul>
                • 本文介绍了带有量角器js的剪贴板中的文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如何使用量角器复制特定文本?

                  How can I copy a specific text with protractor ?

                  我想使用此命令加载要粘贴的文本:

                  I would like to load a text to paste after with this command :

                  return browser.actions().sendKeys(Keys.CONTROL, 'v').perform();
                  

                  示例:

                  加载我的文本test",然后使用此命令粘贴test"

                  Load my text "test" and after with this command, paste "test"

                  我想在我的剪贴板中放一个文本

                  I would like put a text in my clipboard

                  推荐答案

                  我可以直接在我的 ng-model 中输入一个值,而不是使用 sendKeys 吗?

                  can I put a value directly in my ng-model, not use sendKeys ?

                  是的,您可以通过 model 值="nofollow noreferrer">.evaluate():

                  Yes, you can directly set the model value via .evaluate():

                  var elm = element(by.model("mymodel.field"));
                  elm.evaluate("mymodel.field = 'test';");
                  


                  将文本放入剪贴板

                  这个想法是使用现有的或动态创建一个 input 元素,您可以将文本发送到该元素,选择输入中的所有文本并使用 CTRL/COMMAND + 复制它C 快捷方式.


                  Putting a text into clipboard

                  The idea is to use an existing or dynamically create an input element where you would send the text to, select all the text in the input and copy it with a CTRL/COMMAND + C shortcut.

                  示例:

                  var textToBeCopied = "my text";
                  
                  // creating a new input element
                  browser.executeScript(function () {
                      var el = document.createElement('input');
                      el.setAttribute('id', 'customInput'); 
                  
                      document.getElementsByTagName('body')[0].appendChild(el);
                  });
                  
                  // set the input value to a desired text
                  var newInput = $("#customInput");
                  newInput.sendKeys(textToBeCopied);
                  
                  // select all and copy
                  newInput.sendKeys(protractor.Key.chord(browser.controlKey, "a"));
                  newInput.sendKeys(protractor.Key.chord(browser.controlKey, "c"));
                  

                  其中 browser.controlKey 是处理 CTRL/COMMAND 键的跨平台方式:

                  where browser.controlKey is a cross-platform way to handle CTRL/COMMAND keys:

                  • 使用跨平台键盘快捷键结束-端到端测试

                  这篇关于带有量角器js的剪贴板中的文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:使用 Protractor 设置 Angular 模型 下一篇:AngularJs量角器:滑出菜单中的元素不可见

                  相关文章

                  <legend id='KzILK'><style id='KzILK'><dir id='KzILK'><q id='KzILK'></q></dir></style></legend>
                    1. <i id='KzILK'><tr id='KzILK'><dt id='KzILK'><q id='KzILK'><span id='KzILK'><b id='KzILK'><form id='KzILK'><ins id='KzILK'></ins><ul id='KzILK'></ul><sub id='KzILK'></sub></form><legend id='KzILK'></legend><bdo id='KzILK'><pre id='KzILK'><center id='KzILK'></center></pre></bdo></b><th id='KzILK'></th></span></q></dt></tr></i><div id='KzILK'><tfoot id='KzILK'></tfoot><dl id='KzILK'><fieldset id='KzILK'></fieldset></dl></div>

                      <small id='KzILK'></small><noframes id='KzILK'>

                      • <bdo id='KzILK'></bdo><ul id='KzILK'></ul>

                      <tfoot id='KzILK'></tfoot>