Get text from text field of type email?
问题 So I am trying to read a site with C#. I have it so it opens a website and goes to read a TextField. However the website has the text field like so. <input name="loginMail" class="c-txtfld c-txtfld-fixed c-txtfld-green c-txtfld-medium" id="login-email" type="email" placeholder="Email address" pattern="[^ @]*@[^ @]*"> And because of this I can get C# to read it. TextField emailaddressfield = this.Document.TextField(Find.BySelector("form#login-form.credential-form input#login-email") It will