পোস্টগুলি

2021 থেকে পোস্টগুলি দেখানো হচ্ছে

Interview preparation for Software QA Automation Engineer

QA Automation Engineer Interview Questions  QA and Testing  related https://www.edureka.co/blog/interview-questions/software-testing-interview-questions/ https://www.techbeamers.com/qa-interview-questions-and-answers-top-20/ https://www.functionize.com/blog/the-best-qa-job-interview-questions-for-managers-to-ask/ https://theqalead.com/topics/qa-tester-jobs-guide-qa-tester-salary-description-how-to-find-jobs/ https://www.softwaretestingmaterial.com/100-software-testing-interview-questions/ https://artoftesting.com/test-scenario-examples https://artoftesting.com/manual-testing-interview-questions Java https://artoftesting.com/core-java-interview-questions https://www.edureka.co/blog/interview-questions/java-interview-questions/ https://www.javatpoint.com/corejava-interview-questions https://hackr.io/blog/java-interview-questions Python https://www.edureka.co/blog/interview-questions/python-interview-questions/ https://www.mygreatlearning.com/blog/python-interview-questions/ https://data-

Finding elements in Web Page - Part I

ছবি
Finding elements using the id, name, class name, link text, partial link text and tag name. i. Finding elements using the ID attribute: To implement we will follow this url:  https://testpages.herokuapp.com/styled/find-by-playground-test.html  After loading this URL in your browser right click on the selected text and then click on Inspect as shown in the following screenshot: The structure of the element will be showing as highlighted. In our case the id for the selected text is "p1". In Java the syntax for selecting the "p1" id will be following: driver.findElement(By.id(<element ID>)) ii. Find elements using the name attribute Right click on the selected text and click Inspect then we can find the name attribute for the selected text as shown in following screenshot: Here the name attribute to located the selected element is "pName2".  In Java the syntax for selecting the " pName2 " id will be following: driver.findElement(By.name(<e

Getting Started with Selenium: Set up Selenium-Maven-Java Project in Eclipse

ছবি
 Step by step set up process of test development environment. Step -1: Download and install Eclipse IDE. Eclipse can be downloaded from here  https://www.eclipse.org/downloads/ Step - 2: Then open the Eclipse IDE Step -3. Create a new project by selecting File >> New >> Project Step - 4. Then on the new dialog, select Maven >> Maven Project and click Next Step - 5. Then the new dialog will be displayed. Select the following checkbox as in the screenshot for Create a simple project and you can also select the checkbox for Use default Workspace location . Then click on Next Step - 6. On the new dialog box, insert the Group Id and Artifact Id as in following screenshot and click Finish button Step - 7. Your project will be created similar as following screenshot: Step -8. Select pom.xml from Package Explorer. Step -9. Add the JUnit, TestNG and Selenium WebDriver dependencies as maven entry in pom.xml file inside the <project></project> tag.