loginAsCustomer(); $I->amOnPage('/'); $I->click('Profile'); $I->click('Edit'); $I->selectOption('gender', 'Other'); $I->click('Update Profile'); $I->dontSeeInSource('The old password does not match.'); $I->seeInSource('Profile updated successfully.'); $I->seeRecord(Customer::class, [ 'id' => $customer->id, 'gender' => 'Other', ]); } public function updateCustomerAddress(FunctionalTester $I) { $faker = Faker\Factory::create(); $formCssSelector = '.account-layout > form:nth-child(2)'; $customer = $I->loginAsCustomer(); $I->amOnPage('/'); $I->click('Profile'); $I->click('Address'); $I->click('Add Address'); $fields = [ 'company_name' => $faker->company, 'vat_id' => $faker->randomNumber(9), 'address1[]' => $faker->streetAddress, 'country' => $faker->countryCode, 'state' => $faker->state, 'city' => $faker->city, 'postcode' => $faker->postcode, 'phone' => $faker->phoneNumber, ]; foreach ($fields as $key => $value) { // the following fields are being rendered via javascript so we ignore them: if (! in_array($key, [ 'country', 'state', ])) { $selector = 'input[name="' . $key . '"]'; $I->fillField($selector, $value); } } $I->wantTo('Ensure that the company_name field is being displayed'); $I->seeElement('.account-table-content > div:nth-child(2) > input:nth-child(2)'); // we need to use this css selector to hit the correct