51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 3536|回复: 0
打印 上一主题 下一主题

[资料] selenium操作隐藏的元素

[复制链接]
  • TA的每日心情
    擦汗
    昨天 09:02
  • 签到天数: 1042 天

    连续签到: 4 天

    [LV.10]测试总司令

    跳转到指定楼层
    1#
    发表于 2016-10-21 14:31:25 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
    有时候我们会碰到一些元素不可见,这个时候selenium就无法对这些元素进行操作了。例如,下面的情况:

    Python                                                    

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

    1. from selenium import webdriver
    2. from selenium.webdriver.support.select import Select
    3. import os,time

    4. driver = webdriver.Chrome()
    5. file_path = 'file:///' + os.path.abspath('test.html')
    6. driver.get(file_path)

    7. sel = driver.find_element_by_tag_name('select')
    8. Select(sel).select_by_value('opel')
    9. time.sleep(2)

    10. driver.quit()
    复制代码
    exceptions.ElementNotVisibleException: Message: element not visible: Element is not currently visible and may not be manipulated



      我们需要通过javaScript修改display的值。

    1. ……

    2. js = 'document.querySelectorAll("select")[0].style.display="block";'
    3. driver.execute_script(js)

    4. sel = driver.find_element_by_tag_name('select')
    5. Select(sel).select_by_value('opel')

    6. ……
    复制代码
    document.querySelectorAll("select")[0].style.display="block";

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

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

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

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

    Java                                                         

      以下为java中的操作

    1. package com.jase.base;

    2. import java.io.File;

    3. import org.openqa.selenium.WebDriver;
    4. import org.openqa.selenium.By.ById;
    5. import org.openqa.selenium.chrome.ChromeDriver;
    6. import org.openqa.selenium.support.ui.Select;
    7. import org.openqa.selenium.JavascriptExecutor;

    8. public class SelectTest {

    9.     public static void main(String[] args){
    10.         
    11.         WebDriver driver = new  ChromeDriver();
    12.         File file = new File("C:/Users/fnngj/Desktop/test.html");
    13.         String filePath = file.getAbsolutePath();
    14.         driver.get(filePath);
    15.         
    16.          String js = "document.querySelectorAll('select')[0].style.display='block';";
    17.         ((JavascriptExecutor)driver).executeScript(js);
    18.         
    19.         Select sel = new Select(driver.findElement(ById.xpath("//select")));
    20.         sel.selectByValue("opel");
    21.   
    22.     }
    23. }
    复制代码


    本帖子中包含更多资源

    您需要 登录 才可以下载或查看,没有帐号?(注-册)加入51Testing

    x
    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏4
    回复

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-11-8 20:58 , Processed in 0.066342 second(s), 28 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表