本当に構文の助けが必要です。Codeceptsセレクタ: "email"入力フィールドの選択方法?
<input class="email__field ng-pristine ng-empty ng-valid-email ng-invalid ng-invalid-required ng-touched" name="email" ng-model="authForm.email" ng-keypress="keypress($event);" ng-disabled="false" focused="true" required="" style="" type="email">
ドキュメントよると::http://devdocs.io/codeceptjs/helpers/seleniumwebdriver/index#fillfield
I.fillField('email', '[email protected]');
名前で要素を見つける必要があります
は、私は、入力フィールドを持っています。 エラーメッセージ: "名前でフィールドメールが見つかりません" | text | CSS | XPath "
構文が間違っているか、WebDriverに問題がありますか? など。
I.amOnPage(some url here);
、それが働いているので、私はwebdriverをはOKされるべきだと思う: 前のコマンド/ステップがあります。
ありがとうございました。もう一度それは待っている問題だった。 – Simon
その電子メールフィールドのCSSセレクタを動作させることができますか? xpathとして、私は使用します:I.fillField( '// input [@ name = "email"]'、 '[email protected]');それは働いていますが、私はCSSセレクタの地獄を得ることができません。たとえば、document.querySelector( 'input [type = "email"]')は必要な要素を返しますが、それに基づくCSSセレクタは失敗しました。 – Simon
実行スクリプトをI.executeScript( "document.querySelector(\" input [name = 'email'] \ ")として試してみてください。setAttribute( 'value'、 '[email protected]');"); – NithyaViji