硒铬驱动程序无法找到元素输入



>错误: 没有这样的元素:无法找到元素:{"方法":"xpath","selector":"//div[@class='label-input']//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");

相关内容

  • 没有找到相关文章

最新更新