English 中文(简体)
利用Selenium 点击nes<div> 。
原标题:Using Selenium to click on an element which is in nested <div> <li>

我的网页看上去的是下面在检查要素方面的守则。

I have series of li tags inside div tags, whose ids are dynamically created while I load the page.

我需要点击总结、意图、换算要素。

任何人都可以帮助我如何在驻地协调员的len中这样做。

这些孩子是动态产生的,因此我不能在这里使用补贴方案。 例如:id yui_3_3_0_1_1316760142810944是动态产生的。 我还利用Xpath,我无法点击这些内容。

让我知道,有没有办法。 这对我非常有益。

The actual inspected source is here if it might help in looking into this.
http://paste.ubuntu.com/696262/

问题回答

这里是用nes干的DOM树。

<div class="aui-helper-clearfix aui-tree-node-content aui-tree-data-content aui-tree-node-    content aui-tree-node-selected aui-tree-expanded" id="aui_3_4_0_1_1005">
<div class="aui-tree-hitarea" id="aui_3_4_0_1_1224">
</div><div class="aui-tree-icon" id="aui_3_4_0_1_1214">
</div><div class="aui-tree-label aui-helper-unselectable" id="aui_3_4_0_1_1218">OSS</div>    </div>

这里选择可点击的 no(ium)的Xpath

$x("//div[contains(@class, aui-tree-node-content ) and (contains(., OSS ))]//div[contains(@class, aui-tree-hitarea )]")

显而易见的答案是:

selenium.click("link=Summary");
...
selenium.click("link=Intent");
...
selenium.click("link=Conversion");
...

不太明显的是:

selenium.click("xpath=//*[@id= reports-subtab-summary ]/a");
...
selenium.click("xpath=//*[@id= reports-subtab-intent ]/a");
...
selenium.click("xpath=//*[@id= reports-subtab-conversions ]/a");
...

which has the advantage that it doesn t depend on page-text that might change (due to language translation, etc.).

You can use css path for example:

html body#gsr div#searchform.jhp form#tsf div.tsf-p div table tbody tr td table tbody tr td#sftab.lst-td div.lst-d table.lst-t tbody tr td table tbody tr td.gsib_a div input#lst-ib.gsfi




相关问题
Setup for IE6 (and multiple browsers) in Selenium Grid

I m having a hard time trying to grasp some concepts on selenium Grid/RC. What I need is to provide specific environments (ie6-on-xp, ie7-on-xp, etc) to the tests. For what I ve been reading, the ...

Wait for an iframe to open and load with Selenium

I have an app in which the user clicks a button, triggering an iFrame to open. I m having real trouble waiting for this frame to open an load before continuing. I can t use: wait_for_page_to_load ...

Selenium Automation

Is there any way in Selenium ide, so that we get list and handlers for all controls provided on any page? So if we get that we can test that one by one using RC and it ll greatly helpful when there ...

Selenium screenshots using rspec

I am trying to capture screenshots on test failure using selenium-client and rspec. I run this command: $ spec my_spec.rb --require rubygems,selenium/rspec/reporting/...

Javascript communication with Selenium (RC)

My Application has a lot of calculation being done in JavaScript according to how and when the user acts on the application. The project prints out valuable information (through console calls) as to ...

Heightened privilege selenium browsers on Windows 7 (x64)

I make use of *firefox and *iexplore etc. within my selenium tests to get around the issue of self-signed SSL certificates on my local machine. Unfortunately, now that I ve moved from XP over to 7, ...

Selenium RC > how to upload file using attachFile()

I am using Selenium RC with Junit framework. I am trying to upload a file using attachFile() method. attachFile: (Information collected from selenium API http://release.seleniumhq.org/selenium-...

热门标签