我需要验证网页上的特定插槽是否已加载。我正在main()
为此使用 Selenium WebDriver(我应该使用 JUnit 测试用例吗?)。
有什么方法可以在<div>
具有特定 ID 的任何人之间检索文本?
如果给出这个页面:
<div id="center-2" class="promo">
<div class="unified_widget rcmBody">
<span class="logo"><img src="someimage.gif" /></span>
<span class="headline">Make money by Selling items on Amazon</span>
<span class="link"><a href="/content/sell-on-amazon.htm">Selling On Amazon</a></span>
<span class="body">Sell your items on Amazon.com. Amazon can help you grow your business and reach more customers.</span>
<div class="h_rule"></div>
</div>
</div>
当<div id = center-2>
给出时,我需要提取
“通过在亚马逊上销售商品赚钱”、
“在亚马逊上销售”、
“在 Amazon.com 上销售您的商品。亚马逊可以帮助您发展业务并吸引更多客户。”
我应该使用哪种方法?