0
<span id="outDuration" class="check_duration last flL" onclick="hideCalendar('#pickUpDate');">
      <label style="width:95px">
      <span class="Class-Outmatch">
             <select id="duration" class="selectBox"  tabindex="7" name="duration">
                         <option selected="selected" value="1">1</option>
                         <option value="2">2</option>
                         <option value="3">3</option>
                         <option value="4">4</option>
                         <option value="5">5</option>
                         <option value="6">6</option>
                         <option value="7">7</option>
                         <option value="8">8</option>
                         <option value="9">9</option>
            </select>
            <span class="left_part flL firefinder-match"></span>
            <span class="selectBox center_part flL selectBox-dropdown" tabindex="7">
                         <span class="selectBox-label">5</span>

我无法更改选择框的值。默认情况下,选择值 1。如果我手动将其更改为 5,则以下 html 代码将值从 1 更改为 5。

<span class="selectBox-label">5</span> 

但是选项标签属性selected没有改变。选择标签是不可见的。

如果使用以下代码,则会出现异常。

Select select = driver.findElement(By.xpath("//span[@id='outDuration']/span/select")).SelectByVisibleText("5");

Exception: Element is not currently visible and so may not be interacted with
4

3 回答 3

1

您是否尝试过使用SelectByValue而不是SelectByVisibleText

于 2013-01-10T07:23:06.250 回答
0

您提到选择标签是不可见的,这就是驱动程序给您错误的原因,因为它不可见,您无法与之交互。

Selenium 曾经允许与隐藏元素进行交互,但不允许与 webdriver 交互,因为它希望更恰当地模拟用户交互。

要在 webdriver 中实现这一点,您需要先通过使其在页面上可见的操作使 select 标签可见,然后使用 selectbylabel。此外,您的 xpath 似乎正在考虑 span id,而 select 标签本身有一个 id 来识别它。我建议直接使用 select 的 id 而不是采用相对方式。

于 2013-01-10T08:07:00.687 回答
0

用这个 :

Select select=new Select(Utils.driver.findElement(By.xpath("//span[@id='outDuration']//select[@id='duration']")));
select.deselectAll();
select.selectByVisibleText("5");

如果你也得到可见性异常,那么你将不得不使用JavaScript Executor.

于 2013-01-10T12:20:41.460 回答