Skip to content

Commit

Permalink
test(Fill Form)
Browse files Browse the repository at this point in the history
- Fix incorrect property in E2E test for Fill Form
  • Loading branch information
lomamech committed Aug 28, 2019
1 parent ee23707 commit 715786e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/end-to-end/fillForm/fillForm.page.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class FillFormManagementPage {
*/
async create(fillForm) {
await element(by.id('form_3')).click();
await browser.findElement(by.css('[name="structure"]')).sendKeys(fillForm.structure);
await browser.findElement(by.css('[name="label"]')).sendKeys(fillForm.label);
await browser.findElement(by.css('[name="longueur"]')).sendKeys(fillForm.longueur);
await browser.findElement(by.css('[name="largeur"]')).sendKeys(fillForm.largeur);
await browser.findElement(by.css('[name="nombre_agent"]')).sendKeys(fillForm.nombre_agent);
Expand Down

0 comments on commit 715786e

Please sign in to comment.