/**
  * Create Tax Rate Entity test.
  *
  * @param TaxRate $taxRate
  * @return void
  */
 public function test(TaxRate $taxRate)
 {
     // Steps:
     $this->taxRateIndexPage->open();
     $this->taxRateIndexPage->getPageActionsBlock()->addNew();
     $this->taxRateNewPage->getTaxRateForm()->fill($taxRate);
     $this->taxRateNewPage->getFormPageActions()->save();
 }