如何使用selenium RC检查文本的对齐方式

时间:2011-09-28 05:38:36

标签: python selenium-rc

使用selenium rc验证网页中文本或任何其他元素的对齐方式。 我用python, 是否有任何budy可以帮助解决这个问题。

2 个答案:

答案 0 :(得分:0)

如果文本对齐直接在HTML中编码,您可以使用assertElementPresent()方法和合适的XPath定位器执行您想要的操作。例如,检查以下文本

<p id="paragraph" align="right">Text text text text text text text</p>

你可以使用

selenium.isElementPresent("//p[@id='paragraph' and @align='right']");

答案 1 :(得分:0)

您可以使用getAttribute命令,例如

String align = selenium.getAttribute("ele_locator@align");