51Testing软件测试论坛

标题: selenium操作隐藏的元素 [打印本页]

作者: lsekfe    时间: 2016-10-21 14:31
标题: selenium操作隐藏的元素
有时候我们会碰到一些元素不可见,这个时候selenium就无法对这些元素进行操作了。例如,下面的情况:
[attach]103144[/attach]
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软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2