On page https://about.google/intl/en/commitments/reports/ I want to click on Footer link "Press inquiries" Can anyone help me in creating a chain locator in protractor for the same. I want to click on it. I myself created below. I know it is wrong I am getting errors for it.
await element(by.css("ul[id='footer-sitemap-links']"))
.element(by.css("li:nth-child(2)"))
.element(by.css("div[css='1']"))
.element(by.css("div[id='footer-sitemap-related-content']"))
.element(by.css("div[class='glue-c-zippy__content-container']"))
.element(by.css("li:nth-child(1)"))
.click();