QA/Test Automation35 [Appium] Screenshot 구현 save_screenshot() from selenium import webdriver driver.save_screenshot('sample_screenshot_1.png') get_screenshot_as_file() from selenium import webdriver driver.get_screenshot_as_file('sample_screenshot_2.png') 2021. 3. 16. [Appium] Python에서 element 찾을 동안 기다리기(timeout) wait = WebDriverWait(driver, 10) element = wait.until(EC.element_to_be_clickable((By.ID, 'someid'))) 2021. 2. 22. [Appinum] Python으로 작성을 위한 PyCharm 설치하기 brew install node npm install -g appium npm install wd www.jetbrains.com/pycharm/download/#section=mac Download PyCharm: Python IDE for Professional Developers by JetBrains Download the latest version of PyCharm for Windows, macOS or Linux. www.jetbrains.com New Project -> 프로젝트명 입력 프로젝트 생성 완료! 2021. 2. 16. [TestNG] Testcase 실행 순서 특정 메소드에 의존하는 메소드에는 아래와 같이 지정하며, @Test (dependsOnMethods={"Test1"}) 순서로 지정하고 싶으면 @Test(priority=2) 로 하면 된다. 2021. 2. 4. 이전 1 2 3 4 5 6 ··· 9 다음