Why is the google address suggestions not showing when automating using playwright or selenium. After typing in the google address bar the suggestions do not show. They only show when I assist manually ,that's the only time line 2 will execute.
//Line 1 is typing in the google address field
await Page1.Locator("input[name=\"ctl00\\$maincontent\\"]") .FillAsync("1026 Robertson Ave");
//Line 2 is selecting the option that will come up
await Page1.GetByText("Robertson").ClickAsync();