如何在文本框中单击没有唯一标识符的html通过selenium-webdriver和Python

问题描述 投票:0回答:1

<div class="panel">
      <div data-bind="foreach: UriParameters">
        <div>
          <input readonly="true" spellcheck="false" tabindex="100" class="uriParameterLabel" data-bind="value: '{' + name + '}'">
          <span>= </span>
          <input spellcheck="false" data-bind="value: value, valueUpdate: 'afterkeydown', enable: enabled">
          <input type="checkbox" data-bind="checked: enabled">
        </div>
      
        <div>
          <input readonly="true" spellcheck="false" tabindex="100" class="uriParameterLabel" data-bind="value: '{' + name + '}'">
          <span>= </span>
          <input spellcheck="false" data-bind="value: value, valueUpdate: 'afterkeydown', enable: enabled">
          <input type="checkbox" data-bind="checked: enabled">
        </div>
      </div>
    </div>

我正在学习自动化API测试,并遇到一个没有唯一标识符的元素,因为它会自动从端点获取其值。

python selenium selenium-webdriver webdriver webdriverwait
1个回答
0
投票

根据您共享的HTML以找到与{userid}字段对应的文本框,您需要引导WebDriverWait以使元素可单击,您可以使用以下解决方案:

  • XPATHWebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//div[@class='panel']/div[contains(@data-bind, 'UriParameters')]/div//following::input[2]"))).click() #or WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//div[@class='panel']/div[contains(@data-bind, 'UriParameters')]/div//following::input[2]"))).send_keys("Ice")
© www.soinside.com 2019 - 2024. All rights reserved.