10 use Magento\Customer\Test\Page\Adminhtml\CustomerIndexNew;
11 use Magento\Mtf\Constraint\AbstractConstraint;
26 CustomerIndexNew $customerIndexNew,
30 $customerIndexNew->getCustomerForm()
31 ->openTab(
'account_information');
32 $customerIndexNew->getCustomerForm()->fillCustomer(
$customer);
33 $customerIndexNew->getCustomerForm()
34 ->openTab(
'addresses');
35 $tab = $customerIndexNew->getCustomerForm()
36 ->getTab(
'addresses');
37 $countriesList = $tab->getCountriesList(1);
40 \PHPUnit\Framework\Assert::assertEquals(
43 'Wrong country list is displayed.' 54 return 'All required fields on customer form are highlighted.';
processAssert(CustomerIndexNew $customerIndexNew, Customer $customer, $expectedList)