From bdb234db9e7e8a90a69543c2f78c47fa902de92a Mon Sep 17 00:00:00 2001 From: Mori Atsushi Date: Sun, 18 Aug 2019 21:28:04 +0900 Subject: [PATCH] fix: sample codes in python (#13091) --- sample-code/python/test/test_ios_selectors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample-code/python/test/test_ios_selectors.py b/sample-code/python/test/test_ios_selectors.py index fd601ef0e..351f97925 100644 --- a/sample-code/python/test/test_ios_selectors.py +++ b/sample-code/python/test/test_ios_selectors.py @@ -48,4 +48,4 @@ class TestIOSSelectors(): def test_should_find_elements_by_xpath(self, driver): action_bar_container_elements = driver.find_elements_by_xpath('//XCUIElementTypeWindow//XCUIElementTypeButton') - assert 7 == len(action_bar_container_elements) + assert 8 == len(action_bar_container_elements)