0

我想用 PowerShell 创建一个 webtest。目前,当我创建新的日历条目时,我遇到了 SharePoint 文本框的问题。该字段的属性是:

现在您可以看到,我没有可以使用的固定 ID。

是否可以搜索“Titel”一词并获得ID?

(标题=标题,因为它是德语;-))

以下代码不起作用。

$ie2.Document.getElementById( "*ctl00$TextField").value = "test"
$ie2.Document.getElementByName( "*ctl00$TextField").value = "test"
$ie2.Document.getElementByTagName( "Titel").value = "test"

Internet Explorer 中的源代码:

<td nowrap="true" valign="top" width="190px" class="ms-formlabel"><h3 class="ms-standardheader">
        <nobr>Titel<span class="ms-formvalidation" title="Dies ist ein Pflichtfeld." > *</span></nobr>
    </h3></td>
        <td valign="top" class="ms-formbody">
        <!-- FieldName="Titel"
             FieldInternalName="Title"
             FieldType="SPFieldText"
          -->
            <span dir="none">
        <input name="ctl00$m$g_27855e01_08c1_498d_b130_0b761c472fbd$ctl00$ctl05$ctl00$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" type="text" maxlength="255" id="ctl00_m_g_27855e01_08c1_498d_b130_0b761c472fbd_ctl00_ctl05_ctl00_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Titel" class="ms-long ms-spellcheck-true" /><br />
    </span>
4

1 回答 1

1

您应该考虑使用PowerShell中的 WATIN,WATIN 会让您的生活更轻松。

于 2011-01-03T18:47:28.757 回答