Verify shipping rate on FedEx

Automated test to get the delivery price between UK and Singapore.

E-commerce
Bootstrap
Adobe Experience Manager
//First go to website
I.goTo("https://www.fedex.com/en-ph/home.html")

//Choose Location
I.see("United Kingdom")
I.click("English")

//Accept Cookies
I.click("Accept All Cookies")

//Fill in where to ship
I.click("Rate & Transit Times")
I.see("Calculate FedEx® shipping rates")
I.fill("From", "United Kingdom")
I.click("London")
I.wait(5)
I.fill("To", "Singapore")
I.click("Raffles Avenue")
I.wait(5)

//Choose packaging and fill package weight
I.select("Packaging", "FedEx Box")
I.select("No. of packages", "5")
I.fill("Weight Per Package", "3")
I.click("Show Rates")

I.see("Arrives On")
I.see("FedEx International Economy®")
I.click(".fdx-c-icon")
I.see("Estimated Total")
I.see("£485.17")

Edit