(By by)
| 160 | } |
| 161 | |
| 162 | public static void click(By by) { |
| 163 | try { |
| 164 | CHROME_DRIVER.findElement(by).click(); |
| 165 | } catch (Exception e) { |
| 166 | log.error("click element:{}", by, e); |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | public static boolean isCookieValid(String cookiePath) { |
| 171 | return Files.exists(Paths.get(cookiePath)); |
no test coverage detected