假设我有一个文本区域:`
<body contenteditable="true" class="html-editor portlet portlet-blogs cke_show_borders" spellcheck="false"><p><br type="_moz"></p></body>`
如您所见,没有 id 所以我想使用类属性来识别它。
假设我有一个文本区域:`
<body contenteditable="true" class="html-editor portlet portlet-blogs cke_show_borders" spellcheck="false"><p><br type="_moz"></p></body>`
如您所见,没有 id 所以我想使用类属性来识别它。
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
您必须找到文本字段的 Xpath,使用 Xpath 来识别文本字段和 selenium ide,您必须编写以下命令
type|Xpath of text field | your content
您可以在FF浏览器中安装firepath插件并通过firebug获取文本框的xpath,例如://*[@id='search']/div/input
用这个 :
//body[@class='html-editor portlet portlet-blogs cke_show_borders']