在selenium中导航表格

时间:2010-02-08 22:11:20

标签: jquery selenium-rc

假设我有一个简单的表,如下所示:

Smith    |  Select
Jones    |  Select
Johnson  |  Select

我需要编写一个Selenium测试来选择与Jones相对应的链接。我可以点击第二行中的“选择”,但我宁愿让它找到“琼斯”的位置,然后点击相应的“选择”。我想我可能需要使用JQuery来实现这个目标吗?

2 个答案:

答案 0 :(得分:1)

使用xpath表达式,例如“// tc [.// text()='Jones'] /../ tc [2] / a”查找文本内容为'Jones'的表格单元格,然后导航到该单元格父级,选择该父级的第二个表格单元格,然后选择第二个表格单元格内的链接。

答案 1 :(得分:0)

如果你想使用jQuery,这里有一些信息:

  • 首先,您可以从jquery.js或jquery.min.js文件中读取jquery。
  • 然后使用execute_script(jquery)动态启用jquery。
  • 现在你可以与jquery交互了。

这里有一些代码:

browser = webdriver.Firefox() # Get local session of firefox

with open('jquery.min.js', 'r') as jquery_js: #read the jquery from a file
    jquery = jquery_js.read()
    browser.execute_script(jquery)  #active the jquery lib

#now you can write some jquery code then execute_script them
js = """
    var str = "div#myPager table a:[href=\\"javascript:__doPostBack('myPager','%s')\\"]"
    console.log(str)
    var $next_anchor = $(str);
    if ($next_anchor.length) {
        return $next_anchor.get(0).click(); //do click and redirect
    } else {
        return false;
    }""" % str(25) 

success = browser.execute_script(js)
if success == False:
    break