automationhints.blogspot.com
Automation Hints: Capybara methods
http://automationhints.blogspot.com/2014/06/capybara-methods.html
Subscribe To Our E-Mail Newsletter. Friday, June 20, 2014. Click Here For Smileys :D. Subscribe to: Post Comments (Atom). This blog mainly focus on Test Automation and Framework Design. Find child elements : Selenium Web driver. When same object is getting duplicated for N number of parent, then user can refer parent and child relationship to identify the object i. How to Identify popup window in Selenium Webdriver? How to Clear cookies from internet Explorer by selenium webdriver? Verification points a...
automationhints.blogspot.com
Automation Hints: Selenium and Webdriver waits
http://automationhints.blogspot.com/2015/05/selenium-and-webdriver-waits.html
Subscribe To Our E-Mail Newsletter. Friday, May 8, 2015. Selenium and Webdriver waits. Here, I have listed all waits methods which is used in selenium web driver. It's helpful to eliminate the random failures from your test suites. Selenium execution will wait for a specified time period to load the DOM elements.After that it will check the presence of web elements in the DOM, if not then throw errors. Driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS). Wait = new WebDriverWait(driver, 20);.
automationhints.blogspot.com
Automation Hints: May 2015
http://automationhints.blogspot.com/2015_05_01_archive.html
Subscribe To Our E-Mail Newsletter. Wednesday, May 13, 2015. Code searching tools: ag. Is a code-searching tool, similar to awk and grep and its mainly used to searching large trees of source code. it requires perl to run and portable with any platform. Https:/ github.com/ggreer/the silver searcher. Other tools : https:/ github.com/petdance/ack2. Friday, May 8, 2015. Selenium and Webdriver waits. Driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS). Wait = new WebDriverWait(driver, 20);. If yo...
automationhints.blogspot.com
Automation Hints: How to Clear cookies from internet Explorer by selenium webdriver?:
http://automationhints.blogspot.com/2012/08/how-to-clear-cookies-from-internet.html
Subscribe To Our E-Mail Newsletter. Thursday, August 2, 2012. How to Clear cookies from internet Explorer by selenium webdriver? User can enable Ie capabilities then clear cookies. DesiredCapabilities caps = DesiredCapabilities.internetExplorer(); caps.setCapability(CapabilityType.ForSeleniumServer.ENSURING CLEAN SESSION, true); WebDriver driver = new InternetExplorerDriver(caps);. If above one is not woking then U can go for Windows command level clearnace:. Click Here For Smileys :D. User can enable Ie...
automationhints.blogspot.com
Automation Hints: Verification Point RFT
http://automationhints.blogspot.com/2011/02/verification-point-rft.html
Subscribe To Our E-Mail Newsletter. Wednesday, February 9, 2011. Verification points are used to compare the data or object properties verified dynamically or manually with the application. 1 User can insert the verification point object under the "Verification Points.". 2 Add the test object corresponding that object . 3 Add the following lines of code to verify the verification point dynamic. VpDynamic("DynamicVP 01", TestObjectHere() .performTest();. VpDynamic("DynamicVP 01").performTest();. The first...
automationhints.blogspot.com
Automation Hints: How to Identify popup window in Selenium Webdriver ?
http://automationhints.blogspot.com/2012/05/how-to-identify-popup-window-in.html
Subscribe To Our E-Mail Newsletter. Wednesday, May 23, 2012. How to Identify popup window in Selenium Webdriver? 1 First Check whether its popup window or IFrame window by using IE Developer or Find bug tools. 2 If its popup window then use following code :. Driver.findElement(By.xpath(" ) .click();. Set s=driver.getWindowHandles();. This method will help to handle of opened windows other than parent. Iterator ite=s.iterator();. String popupHandle=ite.next().toString();. WebDriver popup = null;. String p...
automationhints.blogspot.com
Automation Hints: Test Coverage
http://automationhints.blogspot.com/2014/12/test-coverage.html
Subscribe To Our E-Mail Newsletter. Saturday, December 6, 2014. Test Coverage Symphony :. In my three years of experience in symphony , we have tracked automation coverage by comparing automated test cases against manual test cases. Whenever my manager asks the report, features based automated test count shared with him. The manager always informs us, Test coverage should be more than 80% percentage. Test Coverage Huawei :. Test coverage perspective , we need to keep track of Integration tests should be ...
automationhints.blogspot.com
Automation Hints: How to identify better automation tool for your project ?
http://automationhints.blogspot.com/2014/12/how-to-identify-better-automation-tool.html
Subscribe To Our E-Mail Newsletter. Tuesday, December 2, 2014. How to identify better automation tool for your project? In-general ,before identifying any automation tool,first ensure the requirements or automation scope of project. Which will helpful to identify right tool in shorter period of time. I have listed ,what are general parameters which need to be consider to identify tool. To check the browser support (IE, Mozilla , chrome). Version of browser is important during selection of tool. 4 How can...
automationhints.blogspot.com
Automation Hints: Bug free Application
http://automationhints.blogspot.com/2014/12/bug-free-application.html
Subscribe To Our E-Mail Newsletter. Tuesday, December 2, 2014. A lot of time I had asked the same questions to me, I couldn’t find the right answers. I have collected metrics from my current projects ,what they are thinking in terms of bug free software application. Since we had done two RCA on production defects in the current year and listed the outcomes. There is no check in micro service for negative stock. Missed scenario during development and testing. Data pull job is not tested. Subscribe to: Pos...
automationhints.blogspot.com
Automation Hints: March 2015
http://automationhints.blogspot.com/2015_03_01_archive.html
Subscribe To Our E-Mail Newsletter. Saturday, March 7, 2015. Challenges in Webdriver Selenium. Web driver is a library which will allow the user to interact with the browser. Tester always thinks, it's a tool will qualify to automate entire component of web applications. In general,web driver doesn’t have any libraries to automate all components of web applications. Common problems in test automation:. Windows objects like save,download,import,export dialog boxes. Triggering event after setting values.