Selenium Chrome 驱动程序无法定位元素输入

Selenium Chrome Driver Unable to locate element INPUT

错误: 没有这样的元素:无法定位元素:{"method":"xpath","selector":"//div[@class='label-input'] //输入"}

我需要发送一个用户名到这里 https://prnt.sc/sf9t14 https://prnt.sc/sfaqre

兄弟们帮帮我:)

拳头你必须切换框架:

driver.SwitchTo().Frame(driver.FindElement(By.Xpath("//iframe[@class='gameframe']")));

然后你可以输入

IWebElement userInput = driver.FindElement(By.Xpath("//div[@class='label-input']/input"));
userInput.SendKeys("username");