Please enable JavaScript.
Coggle requires JavaScript to display documents.
SElenium (locators (CSSSELECTOR XPATH (only forward direction, can work…
SElenium
-
-
-
-
-
-
-
-
-
-
How to scroll down(up)
-
then j,executeScript("scroll(0,250);"); down
or j.executeScript("window.scrollBy(0,250)",""); down
up j.executeScript("window.scrollBy(0,-250)", "");
up j.executeScript("scroll(0,-250);");
ADV
-
-
spprts java, ruby, phyton, c#
many operationg system windows, mac,linux
DSV
cannot work graphics, captchas, barcoeds, shapes
only web based app, no window-based appl
-
-
-
-
-
-
-
-
-
-
WAIT
explicit
-
-
-
WebDriverWait w = new WebDriverWait(driver,5); w.until(ExpectedConditions.visiblityOf(element))
implicit
-
-
-
driver.manage().timeouts().implicitlyWait(5,TimeUnit.SECONDS);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
ASSERT VERIFY
-
bu eger asserttrue dogru degilse bile digerine gecer digerine gecer butun testi yapar en son sana hatalari report eder
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
finding text in an html
//tagname[contains(text(),’text’)]
-