AWS Device Farm IE 等待页面超时
AWS Device Farm IE Timeout waiting for page
我找不到符合我情况的人。
一个 AWS 农场我写了我自己的 selenium 框架,我在那里使用它作为一个网格,chrome,firefox 可以很好地使用功能选项,但是当我将它设置为 INTERNETEXPLORER 时,测试使用这个选项一直失败。
self = <selenium.webdriver.remote.errorhandler.ErrorHandler object at 0x7fbb123fa790>
response = {'status': 500, 'value': '{\n\t"value" : \n\t{\n\t\t"error" : "timeout",\n\t\t"message" : "Timed out waiting for page to load.",\n\t\t"stacktrace" : ""\n\t}\n}\r\n'}
我真的不明白为什么会发生这种情况,但显然,它不会检测到页面已加载,在它加载的视频中。
下面是我输入的代码。
devicefarm_client = boto3.client("devicefarm", region_name="us-west-2")
testgrid_url_response = devicefarm_client.create_test_grid_url(
projectArn="BLANK ON PURPOSE.",
expiresInSeconds=1000,
)
desired_capabilities = DesiredCapabilities.INTERNETEXPLORER
desired_capabilities['IntroduceInstabilityByIgnoringProtectedModeSettings'] = True
desired_capabilities["platform"] = "windows"
driver = Remote(testgrid_url_response["url"], desired_capabilities)
driver.set_window_size(1920, 1080)
谢谢。
您能否尝试使用 IntroduceInstabilityByIgnoringProtectedModeSettings 功能安排 运行。如果您仍然遇到问题,请在 https://forums.aws.amazon.com 中创建一个问题。
我找不到符合我情况的人。 一个 AWS 农场我写了我自己的 selenium 框架,我在那里使用它作为一个网格,chrome,firefox 可以很好地使用功能选项,但是当我将它设置为 INTERNETEXPLORER 时,测试使用这个选项一直失败。
self = <selenium.webdriver.remote.errorhandler.ErrorHandler object at 0x7fbb123fa790>
response = {'status': 500, 'value': '{\n\t"value" : \n\t{\n\t\t"error" : "timeout",\n\t\t"message" : "Timed out waiting for page to load.",\n\t\t"stacktrace" : ""\n\t}\n}\r\n'}
我真的不明白为什么会发生这种情况,但显然,它不会检测到页面已加载,在它加载的视频中。
下面是我输入的代码。
devicefarm_client = boto3.client("devicefarm", region_name="us-west-2")
testgrid_url_response = devicefarm_client.create_test_grid_url(
projectArn="BLANK ON PURPOSE.",
expiresInSeconds=1000,
)
desired_capabilities = DesiredCapabilities.INTERNETEXPLORER
desired_capabilities['IntroduceInstabilityByIgnoringProtectedModeSettings'] = True
desired_capabilities["platform"] = "windows"
driver = Remote(testgrid_url_response["url"], desired_capabilities)
driver.set_window_size(1920, 1080)
谢谢。
您能否尝试使用 IntroduceInstabilityByIgnoringProtectedModeSettings 功能安排 运行。如果您仍然遇到问题,请在 https://forums.aws.amazon.com 中创建一个问题。