如何使用class属性识别Selenium IDE中的Text字段

时间:2012-12-11 06:58:31

标签: selenium

说我有一个文字区:`

<body contenteditable="true" class="html-editor portlet portlet-blogs cke_show_borders" spellcheck="false"><p><br type="_moz"></p></body>`

如你所见,没有id所以我想用class属性来识别它。

3 个答案:

答案 0 :(得分:1)

试试这个

css=tag.class

tag=HTML tage of the element

class=class of the element

type this in target

css=body.html-editor portlet portlet-blogs cke_show_borders

答案 1 :(得分:0)

使用此:

//body[@class='html-editor portlet portlet-blogs cke_show_borders']

答案 2 :(得分:0)

您必须找到文本字段的Xpath,使用Xpath标识文本字段和selenium ide,您必须按照命令编写

type|Xpath of text field | your content 

你可以在FF浏览器中安装firepath插件并通过firebug获取文本框的xpath, EG://*[@id='search']/div/input