9 use Magento\Mtf\TestStep\TestStepInterface;
10 use Magento\Paypal\Test\Fixture\SandboxCustomer;
11 use Magento\Paypal\Test\Page\Sandbox\AccountSignup;
12 use Magento\Paypal\Test\Page\Sandbox\SignupAddCard;
13 use Magento\Paypal\Test\Page\Sandbox\SignupCreate;
74 $this->accountSignup->open();
75 $this->accountSignup->getSignupPersonalAccountBlock()->fill($this->sandboxCustomer);
76 $this->accountSignup->getSignupPersonalAccountBlock()->continueSignup();
77 $this->signupCreate->getSignupCreateBlock()->fill($this->sandboxCustomer);
78 $this->signupCreate->getSignupCreateBlock()->createAccount();
79 $this->signupAddCard->getSignupAddCardBlock()->fill($this->sandboxCustomer);
80 $this->signupAddCard->getSignupAddCardBlock()->linkCardToAccount();
__construct(SandboxCustomer $sandboxCustomer, AccountSignup $accountSignup, SignupAddCard $signupAddCard, SignupCreate $signupCreate)