然后获取 selenium的 Caused by: org.openqa.selenium.TimeoutException: Expected condition failed: waiting for visibility of element located by By.linkText: MCR新店 (tried for 5 second(s) with 500 milliseconds interval) Build info: version: '4.8.3', revision: 'e5e76298c3' System info: os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_281' Driver info: org.openqa.selenium.remote.RemoteWebDriver Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 94.0.4606.61, chrome: {chromedriverVersion: 94.0.4606.61 (418b78f5838ed..., userDataDir: /tmp/.com.google.Chrome.69uhB4}, goog:chromeOptions: {debuggerAddress: localhost:37631}, networkConnectionEnabled: false, pageLoadStrategy: normal, platformName: LINUX, proxy: Proxy(), setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:virtualAuthenticators: true, webdriver.remote.sessionid: 7944b5d0a47e4a061ba54dd34da...} Session ID: 7944b5d0a47e4a061ba54dd34da03f56这些报错
时间: 2024-03-28 17:40:34 浏览: 125
selenium.server:Selenium Grid 项目的 org.openqa.selenium.server 实用程序类
这是一个超时异常,意味着程序在等待一个元素出现,但是它没有在规定的时间内出现。具体来说,这里使用了一个By.linkText定位器来查找一个名为"MCR新店"的链接,但是它没有在5秒内出现。为了解决这个问题,你可以尝试增加等待的时间,或者使用其他定位器来定位这个元素。同时,也可以检查一下元素是否存在于页面中,或者是否有其他问题导致元素无法被定位。
阅读全文