Featured
-
No Featured Found!
Tags
How to accept Use current location permission popup in Appium?
There are some applications that requires user location when they are launched for the first time. The application requests to accept or reject the location. A popup appears and it should either be accepted or rejected. Its very difficult to loca...
How to handle alert popup in Selenium
Alerts are handled in selenium through the method of alert class.
WebDriver driver = new FirefoxDriver();
driver.navigate().to("http://www.rediff.com/");
driver.findElement(By.xpath("//*[@id='signin_info']/a[1]")).click();
driver.findElemen...