Java selenium 无法发送键和单击元素

我想尝试登录这个网站


这是我的代码:


driver.findElement(By.id("userid_sebenarnya")).sendKeys("myUserName");

这是输入文本的属性 id='userid_sebenarnya'


<div class="form-group" id="form-group-height">

    <label for="userid" class="text-field-label-horizontal-empty">User ID</label>

    <input id="userid" class="fake_field_userid" style="-webkit-box-shadow: inset 0 0 0 2em transparent !important" value="autofill field" type="text">

    <div class="outer-border-login">

        <input class="form-control-login-transparent" id="userid_sebenarnya" placeholder="Masukkan user ID" onblur="removeErrMsg('#userid');" data-rule-required="true" data-msg-required="Field ini dibutuhkan" autocomplete="off" readonly="" onfocus="this.removeAttribute('readonly'); this.focus();" value="" autocorrect="off" autocapitalize="off" spellcheck="false" maxlength="2147483647" style="-webkit-box-shadow: inset 0 0 0 2em transparent !important" type="text">

    </div>

</div>

但是我收到了如下所示的错误消息,而如果我从视觉上看应该可以找到它。


线程“main” org.openqa.selenium.NoSuchElementException 中的异常:没有这样的元素:无法定位元素:{“method”:“id”,“selector”:“userid_sebenarnya”}


这与隐藏文本输入有关,我该怎么办?


大话西游666
浏览 121回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java