selenium在iframe只有src怎么定位
展开全部
selenium webdriver处理frame比较简单,这点比某些测试工具要先进一些,令人身心愉悦。
以下面的html代码为例,我们看一下如何定位frame上的元素。
frame.html
<html>
<head>
<title>Frame</title>
<style>
#f_1 {width: 10em; height: 10em; border: 1px solid #ccc; }
#f_2 {display: none}
</style>
</head>
<body>
<p id = "p">Outside frame</p>
<iframe id = "f_1" src = "part1.htm"></iframe>
<iframe id = "f_2" src = "part2.htm"></iframe>
</body>
</html>
part1.htm
<html>
<head><title>Part1</title></head>
<body>
<p id = "f_p">This is part 1</p>
<input id = "btn" type = "button" value = "click me" onclick = "alert('hello')" />
</body>
</html>
switch_to方法会new1个TargetLocator对象,使用该对象的frame方法可以将当前识别的”主体”移动到需要定位的frame上去。
require 'selenium-webdriver'
dr = Selenium::WebDriver.for :chrome
frame_file = 'file:///'+File.expand_path(File.join(File.dirname(__FILE__),'frame.html'))
dr.navigate.to frame_file
#定位default content 上的p元素
dr.find_element(:id=>'p')
#将当前识别主体移动到id为f_1的frame上去
dr.switch_to.frame('f_1')
#点击frame上的button
button = dr.find_element(:id=>'btn')
button.click # -->a alert will popup
alert = dr.switch_to.alert
alert.accept
#此时再去定位frame外的p 元素将出现错误
dr.find_element(:id=>'p') #--> error
#将识别的主体切换出frame
dr.switch_to.default_content
dr.find_element(:id=>'p') #--> ok
以下面的html代码为例,我们看一下如何定位frame上的元素。
frame.html
<html>
<head>
<title>Frame</title>
<style>
#f_1 {width: 10em; height: 10em; border: 1px solid #ccc; }
#f_2 {display: none}
</style>
</head>
<body>
<p id = "p">Outside frame</p>
<iframe id = "f_1" src = "part1.htm"></iframe>
<iframe id = "f_2" src = "part2.htm"></iframe>
</body>
</html>
part1.htm
<html>
<head><title>Part1</title></head>
<body>
<p id = "f_p">This is part 1</p>
<input id = "btn" type = "button" value = "click me" onclick = "alert('hello')" />
</body>
</html>
switch_to方法会new1个TargetLocator对象,使用该对象的frame方法可以将当前识别的”主体”移动到需要定位的frame上去。
require 'selenium-webdriver'
dr = Selenium::WebDriver.for :chrome
frame_file = 'file:///'+File.expand_path(File.join(File.dirname(__FILE__),'frame.html'))
dr.navigate.to frame_file
#定位default content 上的p元素
dr.find_element(:id=>'p')
#将当前识别主体移动到id为f_1的frame上去
dr.switch_to.frame('f_1')
#点击frame上的button
button = dr.find_element(:id=>'btn')
button.click # -->a alert will popup
alert = dr.switch_to.alert
alert.accept
#此时再去定位frame外的p 元素将出现错误
dr.find_element(:id=>'p') #--> error
#将识别的主体切换出frame
dr.switch_to.default_content
dr.find_element(:id=>'p') #--> ok
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |