33

我正在尝试熟悉新的 ruby​​ selenium-webdriver,因为它看起来比之前版本的 selenium 和随附的 ruby​​ 驱动程序更直观。此外,我很难让旧硒在 Windows 中与 ruby​​ 1.9.1 一起使用,所以我想我会寻找替代方案。到目前为止,我已经用我的脚本完成了这个:

require "selenium-webdriver"

driver = Selenium::WebDriver.for :firefox
driver.get "https://example.com"

element = driver.find_element(:name, 'username')
element.send_keys "mwolfe"
element = driver.find_element(:name, 'password')
element.send_keys "mypass"
driver.find_element(:id, "sign-in-button").click
driver.find_element(:id,"menu-link-my_profile_professional_info").click
driver.find_element(:id,"add_education_btn").click
country_select = driver.find_element(:name, "address_country")

所以基本上我正在登录我的网站并尝试在我的用户个人资料中添加一个教育条目。我引用了一个带有选项的选择框(在 country_select 变量中),现在我想选择一个具有给定值的选项..我不知道如何在新客户端中执行此操作.. 我唯一能想到的就是循环遍历所有选项,直到找到我想要的选项,然后调用 execute_script: http://selenium。 googlecode.com/svn/trunk/docs/api/rb/Selenium/WebDriver/Driver.html#execute_script-class_method 方法来设置 selectedIndex。

有没有其他方法可以做到这一点?在 selenium 2.0/webdriver 的 java api 中:http://seleniumhq.org/docs/09_webdriver.html 一个这样做的例子

Select select = new Select(driver.findElement(By.xpath("//select")));
select.deselectAll();
select.selectByVisibleText("Edam");

除非我遗漏了什么,否则 ruby​​ 版本似乎没有此功能。任何帮助,将不胜感激。

4

10 回答 10

35

在这里完全披露:我完全没有 Ruby 的工作知识。

但是,我对 Selenium 非常熟悉,所以我想我可以提供帮助。我认为您正在寻找的是select 方法。如果 ruby​​ 与其他驱动程序类似,您可以使用 select 方法来告诉它被选中的选项之一。

在伪代码/java 术语中,它看起来像这样

    WebElement select = driver.findElement(By.name("select"));
    List<WebElement> options = select.findElements(By.tagName("option"));
    for(WebElement option : options){
        if(option.getText().equals("Name you want")) {
            option.click();
            break;
        }
    }

您上面的 Select 对象实际上是在一个特殊的 Support 包中。它目前仅适用于 Java 和 .Net(2011 年 1 月)

于 2011-01-12T21:20:39.117 回答
20

请注意,以上都不再适用。Element#selectElement#toggle已被弃用。您需要执行以下操作:

my_select.click
my_select.find_elements( :tag_name => "option" ).find do |option|
  option.text == value
end.click
于 2011-07-29T05:05:15.833 回答
14

我不知道这是什么版本的 Selenium,但看起来有 pnewhook 在 Selenium 2.20 中提到的 Select 类

http://selenium.googlecode.com/svn-history/r15117/trunk/docs/api/rb/Selenium/WebDriver/Support/Select.html

option = Selenium::WebDriver::Support::Select.new(@driver.find_element(:xpath => "//select"))
option.select_by(:text, "Edam")
于 2012-04-03T20:54:22.423 回答
7

pnewhook 得到了它,但我想在这里发布 ruby​​ 版本,以便每个人都可以看到它:

require "selenium-webdriver"
driver = Selenium::WebDriver.for :firefox
driver.manage.timeouts.implicit_wait = 10
driver.get "https://example.com"  
country_select = driver.find_element(:id=> "address_country")
options = country_select.find_elements(:tag_name=>"option")
options.each do |el|
    if (el.attributes("value") == "USA") 
        el.click()
        break
    end
end
于 2011-01-14T01:42:09.517 回答
6

您可以使用XPath来避免循环:

String nameYouWant = "Name you want";
WebElement select = driver.findElement(By.id(id));
WebElement option = 
  select.findElement(By.xpath("//option[contains(text(),'" + nameYouWant + "')]"));
option.click();

或者

WebElement option = 
  select.findElement(By.xpath("//option[text()='" + nameYouWant + "']"));
于 2011-10-25T11:47:20.137 回答
3
require "selenium-webdriver"
webdriver = Selenium::WebDriver.for :firefox

driver.navigate.to url

dropdown = webdriver.find_element(:id,dropdownid)
return nil if dropdown.nil?
selected = dropdown.find_elements(:tag_name,"option").detect { |option| option.attribute('text').eql? value}
 if selected.nil? then
  puts "Can't find value in dropdown list"
 else
  selected.click
 end

就我而言,这只是一个工作样本。

于 2011-12-14T11:40:28.563 回答
2

对于最新版本的 Webdriver (RC3),您应该使用“click()”而不是 setSelected()。还应使用 option.getText().equals("Name you want") 代替 JAVA 中的 option.getText()=="Name you want":

<!-- language: lang-java --> 
WebElement select = driver.findElement(By.name("select"));
List<WebElement> options = select.findElements(By.tagName("option"));
for(WebElement option : options){
    if(option.getText().equals("Name you want"){
        option.click();
        break;
    }
}
于 2011-06-27T08:19:38.607 回答
1

带有示例的 Ruby 代码:

require "selenium-webdriver"

driver = Selenium::WebDriver.for :ie

driver.navigate.to "http://google.com"
a=driver.find_element(:link,'Advanced search')

a.click


a=driver.find_element(:name,'num')

options=a.find_elements(:tag_name=>"option")
options.each do |g|
  if g.text == "20 results"
  g.click
  break
  end
end
于 2011-08-19T06:10:23.623 回答
0

我发现的最简单的方法是:

select_elem.find_element(:css, "option[value='some_value']").click
于 2012-06-25T10:55:02.907 回答
0
#SELECT FROM DROPDOWN IN RUBY USING SELENIUM WEBDRIVER
#AUTHOR:AYAN  DATE:14 June 2012

require "rubygems"
require "selenium-webdriver"



  begin
    @driver = Selenium::WebDriver.for :firefox
    @base_url = "http://www.yoururl.com"
    @driver.manage.timeouts.implicit_wait = 30

    @driver.get "http://www.yoursite.com"


    #select Urugway as Country
     Selenium::WebDriver::Support::Select.new(@driver.find_element(:id, "country")).select_by(:text, "Uruguay")

        rescue Exception => e
         puts e
         @driver.quit


    end
于 2012-06-14T07:05:15.860 回答