AddressTest::testAddressEditAndUpdate PHP Метод

testAddressEditAndUpdate() публичный Метод

A basic test example.
public testAddressEditAndUpdate ( ) : void
Результат void
    public function testAddressEditAndUpdate()
    {
        $this->frontAuthTest();
        $this->_deleteTestAddress();
        $address = $this->_craeteAddress();
        $this->visit('/my-account/address/' . $address->id . "/edit")->see('Edit Address')->seeInField('first_name', 'first name')->type('first name new', 'first_name')->press('Update Address')->seePageIs('my-account/address')->see('first name new');
        //$this->makeR
    }