51Testing软件测试论坛

标题: 元素定位问题 [打印本页]

作者: aaallll    时间: 2016-10-26 15:01
标题: 元素定位问题
<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
selenium webdriver,自动化测试
作者: 掉渣饼    时间: 2016-10-26 16:12
可以试试下面的语句
Java语言开发
#选择百度
WebElement typeOption=driver.findElement(By.cssSelector("#selectName option[value='2']"));
typeOption.click();

#选择支付宝
WebElement typeOption=driver.findElement(By.cssSelector("#selectName option[value='3']"));
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
http://www.cnblogs.com/qingchunjun/p/4208159.html
定位方法都在这里自己看看  
作者: aaallll    时间: 2016-10-27 11:10
选择元素时selectByValue、selectByIndex、selectByVisibleText都用过,但就是选不了元素啊
作者: 若尘_51    时间: 2016-10-27 13:50
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")[0].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
运行的时候没有提示任何错误信息,display也不是none,select.getOptions()是可以获取到所有的option,但是选择其中一个就不行,没有任何错误信息
作者: 若尘_51    时间: 2016-10-27 14:41
aaallll 发表于 2016-10-27 14:35
运行的时候没有提示任何错误信息,display也不是none,select.getOptions()是可以获取到所有的option,但是 ...

将选择的界面和html截个图看看~~
作者: aaallll    时间: 2016-10-27 17:09
[attach]103266[/attach]
<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
最后换个浏览器就可以了




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2