• <i id='YEt5o'><tr id='YEt5o'><dt id='YEt5o'><q id='YEt5o'><span id='YEt5o'><b id='YEt5o'><form id='YEt5o'><ins id='YEt5o'></ins><ul id='YEt5o'></ul><sub id='YEt5o'></sub></form><legend id='YEt5o'></legend><bdo id='YEt5o'><pre id='YEt5o'><center id='YEt5o'></center></pre></bdo></b><th id='YEt5o'></th></span></q></dt></tr></i><div id='YEt5o'><tfoot id='YEt5o'></tfoot><dl id='YEt5o'><fieldset id='YEt5o'></fieldset></dl></div>

  • <legend id='YEt5o'><style id='YEt5o'><dir id='YEt5o'><q id='YEt5o'></q></dir></style></legend>
  • <small id='YEt5o'></small><noframes id='YEt5o'>

      <tfoot id='YEt5o'></tfoot>

          <bdo id='YEt5o'></bdo><ul id='YEt5o'></ul>
      1. 是否可以在 Protractor 中使用 cssContainingText 获得下一个兄弟姐妹

        时间:2023-06-15

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

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

                1. 本文介绍了是否可以在 Protractor 中使用 cssContainingText 获得下一个兄弟姐妹的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  是否可以通过使用 by.cssContainingText() 获取下一个兄弟

                  Is it possible to get the next sibling by using by.cssContainingText()

                  示例:HTML 代码如下:

                  Example: HTML code is like below:

                  <div ng-repeat="SomeNgRepeat" class="ng-scope">
                      <div class="text-label" >SomeText</div>
                      <div class="some-class">SomeValue</div>
                  </div>
                  

                  通过使用获取元素:

                  element(by.cssContainingText('div.text-label','SomeText'))
                  

                  现在找到上述元素的下一个兄弟.

                  Now find the next sibling of the above element.

                  我知道 css=form input.username + input 查找兄弟的方法.但是,这在我的情况下不起作用!

                  I know of css=form input.username + input way of finding the sibling. However, this is not working in my case!

                  我认为'chaining'可以用来实现这一点,但不知道如何!

                  I think 'chaining' can be used to achieve this, but don't know How!

                  谢谢,飒飒

                  推荐答案

                  如果你使用 by.xpath():

                  What if you would get it in one go using by.xpath():

                  element(by.xpath('//div[@class="text-label" and . = "SomeText"]/following-sibling::div'))
                  

                  或者,您可以将其与 cssContainingText() 结合使用:

                  Or, you can combine it with cssContainingText():

                  element(by.cssContainingText('div.text-label','SomeText')).element(by.xpath('following-sibling::div'))
                  

                  这篇关于是否可以在 Protractor 中使用 cssContainingText 获得下一个兄弟姐妹的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:使用 Promise 配置多种功能 下一篇:量角器清除()不工作

                  相关文章

                  <legend id='y7wL7'><style id='y7wL7'><dir id='y7wL7'><q id='y7wL7'></q></dir></style></legend>

                  1. <small id='y7wL7'></small><noframes id='y7wL7'>

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

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