我在Visual Studio中使用Specflow创建了一些Selenium Chrome webdriver测试。我的应用程序在Agular 5中
我的HTML
中有一个输入字段string encrypt= EncryptDecrypt.Encrypt("abcd");
我在C#中进行了测试
<input type="text" (change)="onInputChange()" id="{{name}}"
[(ngModel)]="inputAddress">
但是即使输入了地址,addressInput.Text也是空的。当我在Chrome中检查字段时,地址不会显示在源代码中。关于如何从输入字段中获取值的任何想法?
答案 0 :(得分:0)
找到它
var addressInput = Driver.FindElementById("homePageAddress").GetAttribute("value");