当前位置: 首页 > 知识库问答 >
问题:

Mac OS上的Safari的WebDriver wait命令失败

任昊苍
2023-03-14

我有脚本登录到一个站点,然后等待主页按钮得到加载。我设置了fluentwait以等待元素可见。但WebDriver不会等待并立即失败,因为home按钮未加载。

By usernameInput = By.name("User”);
By passwordInput = By.name("Password”);
By loginButton = By.xpath("//input[@value='Sign In']”);
String URL = “https://demotest.mytest.com/"

WebDriver driver = new SafariDriver();
driver.get(URL);
driver.manage().window().maximize();
setText(usernameInput,”User1");
setText(passwordInput,”User1");
clickOnElement(loginButton);
Wait<WebDriver> wait = new FluentWait<WebDriver>(driver);

以下抛出错误-

org.openqa.selenium.WebDriverException: 
Build info: version: '3.141.59', revision: 'e82be7d358', time:     '2018-11-14T08:25:48'
System info: host: 'cnparmar-mac', ip: '10.168.104.60', os.name:     'Mac OS X', os.arch: 'x86_64', os.version: '10.13.6', java.version:     '1.8.0_211'
Driver info: org.openqa.selenium.safari.SafariDriver
Capabilities {acceptInsecureCerts: false, browserName: Safari,         browserVersion: 12.1.1, javascriptEnabled: true, platform: MAC,         platformName: MAC, safari:automaticInspection: false,     safari:automaticProfiling: false, safari:diagnose: false,     setWindowRect: true, strictFileInteractability: false, webkit:WebRTC:     {DisableICECandidateFiltering: false, DisableInsecureMediaCapture:     false}}
Session ID: 1257BF8B-335E-4E80-8B08-CB15A77AD648
*** Element info: {Using=xpath, value=//div[@title='Home']}
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native     Method)
at         sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructo    rAccessorImpl.java:62)
at     sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingCo    nstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at     org.openqa.selenium.remote.http.W3CHttpResponseCodec.createException(    W3CHttpResponseCodec.java:187)
at     org.openqa.selenium.remote.http.W3CHttpResponseCodec.decode(W3CHttpRes    ponseCodec.java:122)
at     org.openqa.selenium.remote.http.W3CHttpResponseCodec.decode(W3CHttpRes    ponseCodec.java:49)
at     org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExec    utor.java:158)
at     org.openqa.selenium.remote.service.DriverCommandExecutor.execute(Drive    rCommandExecutor.java:83)
at     org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.jav    a:552)
at     org.openqa.selenium.remote.RemoteWebDriver.findElement(RemoteWebDriver    .java:323)
at     org.openqa.selenium.remote.RemoteWebDriver.findElementByXPath(RemoteWe    bDriver.java:428)
at org.openqa.selenium.By$ByXPath.findElement(By.java:353)
at     org.openqa.selenium.remote.RemoteWebDriver.findElement(RemoteWebDriver    .java:315)
at     org.openqa.selenium.support.ui.ExpectedConditions$7.apply(ExpectedCond    itions.java:205)
at     org.openqa.selenium.support.ui.ExpectedConditions$7.apply(ExpectedCond    itions.java:201)
at     org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:249)
at sample.Sample.loginAs(Sample.java:64)
at sample.Sample.test1(Sample.java:28)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at     sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.j    ava:62)
at     sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccess    orImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at         org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocati    onHelper.java:124)
at org.testng.internal.Invoker.invokeMethod(Invoker.java:583)
at org.testng.internal.Invoker.invokeTestMethod(Invoker.java:719)
at org.testng.internal.Invoker.invokeTestMethods(Invoker.java:989)
at     org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorke    r.java:125)
at     org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:109)
at org.testng.TestRunner.privateRun(TestRunner.java:648)
at org.testng.TestRunner.run(TestRunner.java:505)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:455)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:450)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:415)
at org.testng.SuiteRunner.run(SuiteRunner.java:364)
at     org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:84)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1208)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1137)
at org.testng.TestNG.runSuites(TestNG.java:1049)
at org.testng.TestNG.run(TestNG.java:1017)
at org.testng.remote.AbstractRemoteTestNG.run(AbstractRemoteTestNG.java:115)
at org.testng.remote.RemoteTestNG.initAndRun(RemoteTestNG.java:251)
at org.testng.remote.RemoteTestNG.main(RemoteTestNG.java:77)

理想情况下,它应该等待Home按钮显示。但它正在失败。这在Windows上的Chrome,Firefox,IE,Edge都能用,但在Mac上的Safari上却不行。

共有1个答案

车诚
2023-03-14

看起来像是把WebDriverWait和FluentWait类混在一起了。

请尝试使用以下命令:

WebDriverWait wait = new WebDriverWait(driver, 15, 100);
wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//div[@title='Home']")));
 类似资料:
  • 这里有很多关于在mac上安装Java以及让Android Studio使用正确版本的信息(很多已经过时了)。但是最近的Android Studio(2.2和更高版本?)提供他们自己的Java,对于大多数Mac用户来说,没有理由(或希望)再安装浏览器或命令行Java……直到你想要使用Studio的shell工具,并且意识到它们都是Java的,Studio的Java没有集成到JAVA_HOME这个奇迹

  • 我是科尔多瓦的新手,所以如果我的问题不相关,请原谅我。我的Windows7x64机器中有一个cordova项目。昨天,我通过构建了我的cordova应用程序。但是我需要添加新的插件来更新我的cordova项目。我做了什么来添加这个插件到我的cordova应用程序; null 构建失败C:\android\sdk\tools\ant\BUILD.xml:720:执行这一行时发生以下错误:C:\and

  • 问题内容: 我是科尔多瓦的新手,所以如果我的问题不相关,请原谅我。我在Windows 7 x64计算机上有一个cordova项目。昨天,我通过构建了Cordova应用。但是我需要添加新的插件来更新我的cordova项目。我将该插件添加到我的cordova应用程序中所做的工作; 我在win7 x64 env上安装了git应用程序。 我在cmd上写了这个命令。 我打开Windows环境变量/路径窗口并

  • 内置程序 open 顾名思义,open 是一个打开文件或目录的命令,当然也包括程序: 使用首选视频播放器打开 xxx.mp4:open xxx.mp4 打开主目录:open ~ 打开 Safari:open /Applications/Safari.app/ pbcopy 和 pbpaste pbcopy 和 pbpaste 是读取及写入系统剪贴板的命令,支持 Unix 管道操作,也就是说你可以

  • 我正在尝试使用Selenium Grid在MacOS上启动Safari进行一个基本测试。 我已经注册了该节点,它在我的中心中显示如下。 集线器确认节点已启动 浏览器超时:0 调试:假 主持人:10.120.45.211 端口:5558 角色:节点 超时:1800 清理周期:5000 最大会话:5 功能:功能{browserName:Safari,maxInstances:1,平台:MAC,平台名:

  • 文件在我的路径中,所以我不知道为什么它不能工作 hungs-macbook-pro-2:~hungcao$echo$path/usr/local/bin://usr/bin://bin://usr/sbin://usr/local/git/bin://users/hung 1/.rvm/bin 我做了sudo nano,它显示