aaallll 发表于 2016-10-26 15:01:59

元素定位问题

<select id="selectName" class=" " data-placeholder="请选择类型" name="">
< option value="1">请选择类型</option>
< option value="2">百度</option>
< option value="3">支付宝</option>
< /select>
如果要选择百度或者支付宝其中一个值该怎么办

aaallll 发表于 2016-10-26 15:05:09

selenium webdriver,自动化测试

掉渣饼 发表于 2016-10-26 16:12:39

可以试试下面的语句
Java语言开发
#选择百度
WebElement typeOption=driver.findElement(By.cssSelector("#selectName option"));
typeOption.click();

#选择支付宝
WebElement typeOption=driver.findElement(By.cssSelector("#selectName option"));
typeOption.click();

Python语言开发
#选择百度
typeOption=driver.find_element_by_id("selectName")
typeOption.find_element_by_xpath("//option[@value='2']").click()

#选择支付宝
typeOption=driver.find_element_by_id("selectName")
typeOption.find_element_by_xpath("//option[@value='3']").click()

梦想家 发表于 2016-10-26 16:18:48

http://www.cnblogs.com/qingchunjun/p/4208159.html
定位方法都在这里自己看看

aaallll 发表于 2016-10-27 11:10:47

选择元素时selectByValue、selectByIndex、selectByVisibleText都用过,但就是选不了元素啊

若尘_51 发表于 2016-10-27 13:50:07

aaallll 发表于 2016-10-27 11:10
选择元素时selectByValue、selectByIndex、selectByVisibleText都用过,但就是选不了元素啊

我只知道python+selenium的处理方法:
页面主要通过“display:none”来控制整个下拉框不可见。
这个时候如果直接操作这个下拉框,就会提示:

sel = driver.find_element_by_tag_name('select')
Select(sel).select_by_value('selectName')

exceptions.ElementNotVisibleException: Message: element not visible: Element is not currently visible and may not be manipulated

我们需要通过javaScript修改display的值:
js = 'document.querySelectorAll("select").style.display="block";'
driver.execute_script(js)
sel = driver.find_element_by_tag_name('select')
Select(sel).select_by_value('selectName')

执行完这句js代码后,就可以正常操作下拉框了。

aaallll 发表于 2016-10-27 14:35:31

运行的时候没有提示任何错误信息,display也不是none,select.getOptions()是可以获取到所有的option,但是选择其中一个就不行,没有任何错误信息

若尘_51 发表于 2016-10-27 14:41:22

aaallll 发表于 2016-10-27 14:35
运行的时候没有提示任何错误信息,display也不是none,select.getOptions()是可以获取到所有的option,但是 ...

将选择的界面和html截个图看看~~

aaallll 发表于 2016-10-27 17:09:21


<select id="atomicevent_evnet_type" class="AE_FIELD" name="">
<option value="">请选择</option>

<option value="1">MobileNetwork</option>

<option value="2">SocialNetwork</option>

<option value="3">Billing</option>

<option value="4">CRM</option>

<option value="5">RTSS</option>


</select>

//设置事件来源
webTest.selectItem("2", "//*[@id='atomicevent_evnet_type']");
public void selectItem(String itemName,String xpath)
        {
                Select dropDownList = new Select(findElementByXpath(xpath));
                dropDownList.selectByValue(itemName);
        }

aaallll 发表于 2016-10-28 17:15:28

最后换个浏览器就可以了:L
页: [1]
查看完整版本: 元素定位问题