2

Safari 10.0.1 macOS Sierra

运行 Codeception 命令时:

$I->waitForElementVisible(['css' => 'input[type=text][id=UserUsername]'], 30);

在带有 Selenium 3.0.1 的 Safari 验收测试中,我收到一个错误。失败时截取的屏幕截图清楚地显示了有问题的元素。相同的测试/命令在 Firefox 和 Chrome 中都是成功的。错误:

Screenshot saved to /Applications/MAMP/htdocs/AutomatedTests/tests/_output/debug/FAILED1479307207.png
  Unable to retrieve Selenium logs : The command 'GET /session/9BC56414-8934-4315-9293-B6E99720E318/log/types' is not implemented.
  Command duration or timeout: 3 milliseconds
  Build info: version: '3.0.1', revision: '1969d75', time: '2016-10-18 09:48:19 -0700'
  System info: host: 'Cosettes-MacBook-Pro.local', ip: '10.0.1.75', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.12.1', java.version: '1.8.0_101'
  Driver info: org.openqa.selenium.safari.SafariDriver
  Capabilities [{applicationCacheEnabled=true, rotatable=false, databaseEnabled=true, handlesAlerts=true, version=12602.2.14.0.5, cleanSession=true, platform=MAC, nativeEvents=true, locationContextEnabled=false, webStorageEnabled=true, browserName=safari, javascriptEnabled=true, cssSelectorsEnabled=true}]
  Session ID: 9BC56414-8934-4315-9293-B6E99720E318
  Screenshot and page source were saved into '/Applications/MAMP/htdocs/AutomatedTests/tests/_output/' dir
 ERROR 

当我在 Safari/Firefox/Chrome 中使用 Selenium 2.53.1 运行相同的测试/命令时,它会找到没有问题的元素。

我在浏览论坛时找不到这种类型的定位器是否存在已知问题?有人对如何使这项工作有建议吗?

2016 年 12 月 1 日更新:现在这似乎是 waitForElementVisible() 命令的问题,而不是定位器。如果我将命令更改为$I->waitForElement(['css' => 'input[type=text][id=UserUsername]'], 30);测试成功前进,直到下一个 waitForElementVisible() 命令。

4

1 回答 1

5

人们说Safari 10 的发布版本中的可见性检查已损坏。您可以尝试Safari Technology Preview,如果您的问题仍然存在,我们可以断定这是其他问题,而不是可见性检查损坏。如果您的问题消失了,那将不完全是您的用户体验,但总比没有好。您也可以尝试使用浏览器端的一些脚本来实现您自己的可见性检查作为一种解决方法(例如,这个函数看起来足够好)。

要在 Safari Technology Preview 中运行测试,请添加

'safari.options': { technologyPreview: true }

到能力。

另请参阅我关于此主题的其他答案。

于 2017-01-30T23:40:35.343 回答