当前,我正在尝试与一个下拉菜单进行交互,该菜单仅在单击后才显示特定文本。
<div class="" style="display: inline-block;">
<input autocapitalize="none" autocomplete="off" autocorrect="off" id="react-select-2-input" spellcheck="false" tabindex="0" type="text" aria-autocomplete="list" value="" style="box-sizing: content-box; width: 4px; background: 0px center; border: 0px; font-size: inherit; opacity: 1; outline: 0px; padding: 0px; color: inherit;"><div style="position: absolute; top: 0px; left: 0px; visibility: hidden; height: 0px; overflow: scroll; white-space: pre; font-size: 12px; font-family: sans-serif; font-weight: 300; font-style: normal; letter-spacing: normal; text-transform: none;">
</div>
</div>
如上图所示,单击元素后,文本可见,但是当我检查元素时,看不到任何下拉文本项?
我尝试了以下方法:
有什么想法吗?
答案 0 :(得分:2)
一个选择是:
yourOption = element(by.id('react-select-2-input')).
yourOption.Click();
yourOption.sendKeys(Keys.DOWN);
yourOption.sendKeys(Keys.RETURN);
HTML的某处也必须有一个列表,该列表中将具有可供选择的选项。它可能不是输入的直接父项或子项。