Как мы можем проверить отображение маркеров / маркеров на карте Google с помощью Cypress.io?Я не знаю, какой метод использовать, чтобы найти маркер, отображаемый на карте Google.
describe('Display of marker on Google map', function(){
it.only('Check the display of marker on Google map', function(){
cy.visit('https://www.google.co.nz/maps/@-36.9139788,174.8740846,15z?hl=en')
cy.get('#searchboxinput').type('gold coast')
//don't know how to select Gold Coast from the populated search items
//How to find a marker displayed on Google Map ?
})
})