I'm trying to place an order programmatically with tablerates. Here is my code
```
$quote->getShippingAddress()->addData($postData['shipping_address']);
$quote->getBillingAddress()->addData($postData['billing_address']);
/** @var \Magento\Quote\Model\Quote\Address $shippingAddress */
$shippingAddress= $quote->getShippingAddress();
$shippingAddress
->removeAllShippingRates()
->setCollectShippingRates(true)
->collectShippingRates()
->setShippingMethod('tablerate_bestway') //shipping method
->setShippingDescription('Table Rate - Best Way');
$this->handlePayment('banktransfer');
$quote->setPayment($this->payment);
$quote->setCheckoutMethod(QuoteManagement::METHOD_GUEST);
$quote->save();
$quote->collectTotals();
$orderId = $this->cartManagement->placeOrder($quote->getId());
$order = $this->orderResource->load($this->order, $orderId);
```
I'm constantly getting *** Please specify a shipping method***. In QuoteValidator it trie€ to get the rate $rate = $quote->getShippingAddress()->getShippingRateByCode($method); which always returns false. tablerates is setup as I can use this when placing an Order with the Rest api
how can I place this order with tablerates prgrammatically?