博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Selenium Webdriver——操作隐藏的元素(二)display属性
阅读量:6149 次
发布时间:2019-06-21

本文共 1727 字,大约阅读时间需要 5 分钟。

有时候我们会碰到一些元素不可见,这个时候selenium就无法对这些元素进行操作了。例如,下面的情况:

页面主要通过“display:none”来控制整个下拉框不可见。这个时候如果直接操作这个下拉框,就会提示:

from selenium import webdriverfrom selenium.webdriver.support.select import Selectimport os,timedriver = webdriver.Chrome()file_path = 'file:///' + os.path.abspath('test.html')driver.get(file_path)sel = driver.find_element_by_tag_name('select')Select(sel).select_by_value('opel')time.sleep(2)driver.quit()

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('opel')

document.querySelectorAll("select")[0].style.display="block";

document.querySelectorAll("select")  选择所有的select。

[0] 指定这一组标签里的第几个。

style.display="block";  修改样式的display="block" ,表示可见。

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

 

Java代码

import java.io.File;import org.openqa.selenium.WebDriver;import org.openqa.selenium.By.ById;import org.openqa.selenium.chrome.ChromeDriver;import org.openqa.selenium.support.ui.Select;import org.openqa.selenium.JavascriptExecutor;public class SelectTest {    public static void main(String[] args){                WebDriver driver = new  ChromeDriver();        File file = new File("C:/Users/fnngj/Desktop/test.html");        String filePath = file.getAbsolutePath();        driver.get(filePath);                 String js = "document.querySelectorAll('select')[0].style.display='block';";        ((JavascriptExecutor)driver).executeScript(js);                Select sel = new Select(driver.findElement(ById.xpath("//select")));        sel.selectByValue("opel");      }}

转载地址:http://jlmya.baihongyu.com/

你可能感兴趣的文章
ASP.NET中字段赋值问题
查看>>
T-SQL 编程与高级查询
查看>>
我的友情链接
查看>>
七牛云与上海陈天桥脑疾病研究所签署战略合作,多维度助力脑科学研究
查看>>
quota .1
查看>>
RabbitMQ安装配置-01
查看>>
OGEngine:Java程序员也能开发iOS游戏
查看>>
PowerPoint巧妙确定圆心的技巧商务ppt模板
查看>>
用CORS 解决vue.js django跨域调用
查看>>
php libevent 详解与使用
查看>>
win 下 apache 虚拟主机配置方式
查看>>
刚开通了,说上几句
查看>>
函数与类
查看>>
思科4500系列与华为9300系列交换机介绍与选配
查看>>
L3 MPLS ××× InterAS Option B: MP-eBGP between ASBRs
查看>>
linux用户操作
查看>>
U-Mail邮件系统:垃圾邮件过滤器
查看>>
centos 7 更改网卡名,主机名,虚拟机添加网卡
查看>>
nginx建https站实验
查看>>
mysql_spec rpmbuild
查看>>