0

假设我有一个文本区域:`

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

如您所见,没有 id 所以我想使用类属性来识别它。

4

3 回答 3

1

Try this

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
于 2014-01-10T07:48:48.620 回答
0

您必须找到文本字段的 Xpath,使用 Xpath 来识别文本字段和 selenium ide,您必须编写以下命令

type|Xpath of text field | your content 

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

于 2012-12-11T11:00:34.173 回答
0

用这个 :

//body[@class='html-editor portlet portlet-blogs cke_show_borders']
于 2012-12-11T07:10:22.593 回答