Showing posts from 2018Show All
Selenium :Appium Architecture

Appium Architecture communication steps Step 1 :Appium client (C# or Java or Python ) connects with Appium Server (Appium app  are basically server, written in Node.js and expose the Rest Api)and communicate via JSON Wire…

      Different Way of Click in  Selenium WebDriver

/*    Click on Element using Actions class's click method*/  public void actionClick(String xpathValue) throws NoSuchElementException, Exception  {   WebElement element = driver.findElement(By.xpath(xpathValue));  …

Load More That is All