9 use Magento\Sales\Test\Page\Adminhtml\OrderIndex;
10 use Magento\Sales\Test\Page\Adminhtml\SalesOrderView;
11 use Magento\Mtf\TestStep\TestStepInterface;
26 private $salesOrderView;
33 public function __construct(OrderIndex $orderIndex, SalesOrderView $salesOrderView, OrderInjectable $order)
35 $this->orderIndex = $orderIndex;
36 $this->salesOrderView = $salesOrderView;
45 $this->orderIndex->open();
46 $this->orderIndex->getSalesOrderGrid()->searchAndOpen([
'id' => $this->order->getId()]);
47 $this->salesOrderView->getPageActions()->accept();
__construct(OrderIndex $orderIndex, SalesOrderView $salesOrderView, OrderInjectable $order)