0
輸入文本我無法使用selenium webdriver C#和IE11在文本框字段中輸入文本。它打開了URL並單擊登錄按鈕,但它沒有輸入用戶名。Selinium webdriver C#無法在文本字段中使用
我的代碼輸入的用戶名文本字段中的文本是
IWebElement myField = driver.FindElement(By.Id(「Loginlogin」));
myField.SendKeys("sandy");
HTML
<form method="post" name="Login" action="lg01.asp?ccsForm=Login">
<table class="RecordImpac" cellspacing="0" cellpadding="0">
<tr class="Controls">
<td><strong>Username</strong></td>
</tr>
<tr class="Controls">
<td valign="top">
<input id="Loginlogin" maxlength="100" size="30" value="" name="login">
<br>
</td>
</tr>
ENV:
Browser IE11
IE webdriver server: IEDriverServer_x64_2.47.0
Visual Studio 2015 community