diff --git a/pom.xml b/pom.xml
index e968e45e..958b8a3a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -48,12 +48,13 @@
- qafqaf-coreqaf-testngqaf-wsqaf-seleniumqaf-playwright
+ qaf-tools
+ qaf
diff --git a/qaf-playwright/src/main/java/com/qmetry/qaf/automation/ui/playwright/PlaywrightDriverFactory.java b/qaf-playwright/src/main/java/com/qmetry/qaf/automation/ui/playwright/PlaywrightDriverFactory.java
index 79b27dec..76384713 100644
--- a/qaf-playwright/src/main/java/com/qmetry/qaf/automation/ui/playwright/PlaywrightDriverFactory.java
+++ b/qaf-playwright/src/main/java/com/qmetry/qaf/automation/ui/playwright/PlaywrightDriverFactory.java
@@ -269,7 +269,8 @@ private static Collection getDriverListeners() {
@Override
public void loadDriverResouces(String name) {
- // TODO Auto-generated method stub
+ Browsers browser = Browsers.getBrowser(name);
+ loadDriverResouces(browser);
}
diff --git a/qaf-selenium/pom.xml b/qaf-selenium/pom.xml
index 23389865..7d9f5629 100644
--- a/qaf-selenium/pom.xml
+++ b/qaf-selenium/pom.xml
@@ -8,6 +8,7 @@
qaf-seleniumplugin
+ false
diff --git a/qaf-selenium/src/it/config/testrun_config.xml b/qaf-selenium/src/it/config/testrun_config.xml
new file mode 100644
index 00000000..c3c7251c
--- /dev/null
+++ b/qaf-selenium/src/it/config/testrun_config.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/element/ElementTest.java b/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/element/ElementTest.java
new file mode 100644
index 00000000..890e4497
--- /dev/null
+++ b/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/element/ElementTest.java
@@ -0,0 +1,96 @@
+/*******************************************************************************
+ * Copyright (c) 2019 Infostretch Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ ******************************************************************************/
+package com.qmetry.qaf.automation.ui.element;
+
+import org.hamcrest.Matchers;
+import org.openqa.selenium.By;
+import org.testng.annotations.Test;
+
+import static com.qmetry.qaf.automation.core.ConfigurationManager.getBundle;
+import com.qmetry.qaf.automation.ui.WebDriverTestBase;
+import com.qmetry.qaf.automation.ui.webdriver.ElementFactory;
+import com.qmetry.qaf.automation.ui.webdriver.QAFExtendedWebElement;
+import com.qmetry.qaf.automation.ui.webdriver.QAFWebElement;
+import com.qmetry.qaf.automation.util.Validator;
+
+/**
+ *
+ * @author chirag jayswal
+ *
+ */
+public class ElementTest{
+
+ @Test(groups="ui-driver")
+ public void defaultElemetnTest() {
+ getBundle().setProperty("default.element.impl", UiElement.class.getCanonicalName());
+ getBundle().setProperty("system.webdriver.gecko.driver", "C:/Users/chirag/Downloads/geckodriver-v0.18.0-win64/geckodriver.exe");
+ getBundle().setProperty("system.webdriver.chrome.driver", "C:/Users/chirag/Downloads/chromedriver_win32/chromedriver.exe");
+
+ getBundle().setProperty("driver.name", "chromeDriver");
+
+ System.out.println(UiElement.class.getCanonicalName());
+
+ new WebDriverTestBase().getDriver().get("http://www.google.com");
+ QAFExtendedWebElement ele = new WebDriverTestBase().getDriver().findElement(By.name("q"));
+ ele.verifyPresent();
+
+ SearchPage spPage = new SearchPage();
+ System.out.println(spPage.isPageActive(null));
+
+ spPage.waitForPageToLoad();
+ Validator.verifyThat(ele, Matchers.instanceOf(UiElement.class));
+ System.out.println("element is implementation of" + ele.getClass());
+
+ QAFExtendedWebElement eleFromList = (QAFExtendedWebElement) new WebDriverTestBase().getDriver().findElements(By.name("q")).get(0);
+ eleFromList.verifyPresent();
+ Validator.verifyThat(eleFromList, Matchers.instanceOf(UiElement.class));
+
+ System.out.println("element From List is implementation of" + eleFromList.getClass());
+
+ QAFExtendedWebElement childEleFromList = (QAFExtendedWebElement) new WebDriverTestBase().getDriver().findElement("tagName=body").findElements(By.name("q")).get(0);
+ childEleFromList.verifyPresent();
+ Validator.verifyThat(childEleFromList, Matchers.instanceOf(UiElement.class));
+ childEleFromList.verifyVisible();
+
+
+ System.out.println("child element From List is implementation of" + childEleFromList.getClass());
+ QAFWebElement ele1 = ElementFactory.$("name=q");
+ Validator.verifyThat(ele1, Matchers.instanceOf(UiElement.class));
+
+ System.out.println("element is implementation of " + ele1.getClass());
+ ele1.verifyPresent();
+ new WebDriverTestBase().getDriver().waitForAnyElementVisible(childEleFromList,ele,ele1);
+
+ new WebDriverTestBase().getDriver().waitForAllElementVisible(childEleFromList,ele,ele1);
+
+ SearchPage searchPage = new SearchPage();
+ System.out.println("element is implementation of " + searchPage.getSearchInput().getClass());
+ Validator.verifyThat(searchPage.getSearchInput(), Matchers.instanceOf(UiElement.class));
+
+ searchPage.getSearchInput().verifyPresent();
+
+ System.out.println("element From page List is implementation of " + searchPage.getSearchInputList().get(0).getClass());
+ Validator.verifyThat(searchPage.getSearchInputList(), Matchers.instanceOf(UiElement.class));
+
+ }
+
+}
diff --git a/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/element/SearchPage.java b/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/element/SearchPage.java
new file mode 100644
index 00000000..40953ace
--- /dev/null
+++ b/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/element/SearchPage.java
@@ -0,0 +1,68 @@
+/*******************************************************************************
+ * Copyright (c) 2019 Infostretch Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ ******************************************************************************/
+package com.qmetry.qaf.automation.ui.element;
+
+import java.util.List;
+
+import com.qmetry.qaf.automation.ui.WebDriverBaseTestPage;
+import com.qmetry.qaf.automation.ui.annotations.FindBy;
+import com.qmetry.qaf.automation.ui.annotations.PageIdentifier;
+import com.qmetry.qaf.automation.ui.api.PageLocator;
+import com.qmetry.qaf.automation.ui.api.WebDriverTestPage;
+import com.qmetry.qaf.automation.ui.webdriver.QAFWebElement;
+
+/**
+ * @author chirag
+ *
+ */
+public class SearchPage extends WebDriverBaseTestPage{
+
+ @PageIdentifier
+ @FindBy(locator="name=q")
+ private QAFWebElement searchInput;
+
+ @PageIdentifier//will not considered as page identifier as it is list.
+ @FindBy(locator="name=q")
+ private List searchInputList;
+
+ @PageIdentifier//will not considered as page identifier as it is list.
+ @FindBy(locator="name=btnG")
+ private QAFWebElement searchBtn;
+
+ public QAFWebElement getSearchInput() {
+ return searchInput;
+ }
+
+ public List getSearchInputList() {
+ return searchInputList;
+ }
+
+
+
+ @Override
+ protected void openPage(PageLocator locator, Object... args) {
+ // TODO Auto-generated method stub
+ }
+
+
+
+}
diff --git a/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/element/UiElement.java b/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/element/UiElement.java
new file mode 100644
index 00000000..56b13d4e
--- /dev/null
+++ b/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/element/UiElement.java
@@ -0,0 +1,44 @@
+/*******************************************************************************
+ * Copyright (c) 2019 Infostretch Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ ******************************************************************************/
+package com.qmetry.qaf.automation.ui.element;
+
+import com.qmetry.qaf.automation.ui.webdriver.QAFExtendedWebDriver;
+import com.qmetry.qaf.automation.ui.webdriver.QAFExtendedWebElement;
+import com.qmetry.qaf.automation.ui.webdriver.QAFWebComponent;
+
+/**
+ * @author chirag jayswal
+ *
+ */
+public class UiElement extends QAFWebComponent {
+
+ UiElement(QAFExtendedWebDriver driver) {
+ super(driver);
+ }
+ public UiElement(String locator) {
+ super(locator);
+ }
+ public UiElement(QAFExtendedWebElement parent, String locator) {
+ super(parent, locator);
+ }
+
+}
diff --git a/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/locator/DescriptiveLocatorsTest.java b/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/locator/DescriptiveLocatorsTest.java
new file mode 100644
index 00000000..b8ba3c30
--- /dev/null
+++ b/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/locator/DescriptiveLocatorsTest.java
@@ -0,0 +1,99 @@
+/*******************************************************************************
+ * Copyright (c) 2019 Infostretch Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ ******************************************************************************/
+package com.qmetry.qaf.automation.ui.locator;
+
+import org.testng.annotations.BeforeClass;
+import org.testng.annotations.Test;
+
+import com.qmetry.qaf.automation.ui.WebDriverTestBase;
+import com.qmetry.qaf.automation.ui.webdriver.QAFExtendedWebDriver;
+import com.qmetry.qaf.automation.ui.webdriver.QAFExtendedWebElement;
+import com.qmetry.qaf.automation.ui.webdriver.QAFWebElement;
+
+@Test(groups="UI")
+public class DescriptiveLocatorsTest {
+
+ String searchbox = "{'locator' : 'css=#q'; 'desc' : 'search box'}";
+ String servicesTab = "{'locator' : 'css=#services'; 'desc' : 'services tab'}";
+ String productsTab = "{'locator' : 'css=#products'; 'desc' : 'products tab'}";
+
+ QAFWebElement services = new QAFExtendedWebElement(servicesTab);
+ QAFWebElement searchBox = new QAFExtendedWebElement(searchbox);
+ QAFWebElement products = new QAFExtendedWebElement(productsTab);
+
+ String searchboxN = "{'locator' : 'css=#qa'; 'desc' : 'search box'}";
+ String servicesTabN = "{'locator' : 'css=#servicesa'; 'desc' : 'services tab'}";
+ String productsTabN = "{'locator' : 'css=#productsa'; 'desc' : 'products tab'}";
+
+ QAFWebElement servicesN = new QAFExtendedWebElement(servicesTabN);
+ QAFWebElement searchBoxN = new QAFExtendedWebElement(searchboxN);
+ QAFWebElement productsN = new QAFExtendedWebElement(productsTabN);
+
+ @BeforeClass
+ // @BeforeMethod(groups = {"waitservice", "assertions",
+ // "descriptiveLocators",
+ // "verifications"})
+ public void start() {
+ // getDriver().get("/");
+ getDriver().get("http://www.infostretch.com");
+
+ }
+
+ @Test(description = "test descriptive locators", groups = {"descriptiveLocators",""})
+ public void DescLocators() {
+ getDriver().get("http://www.infostretch.com");
+
+ searchBox.verifyPresent();
+ services.verifyPresent();
+ products.verifyPresent();
+ }
+
+ @Test(description = "test descriptive locators", groups = "descriptiveLocators")
+ public void DescLocatorsNegative() {
+ servicesN.verifyNotPresent();
+ searchBoxN.verifyNotPresent();
+ productsN.verifyNotPresent();
+ }
+
+ @Test(description = "test assertions", groups = "assertions")
+ public void AssertionsTC() {
+ services.assertPresent();
+ searchBox.assertPresent();
+ products.assertPresent();
+ }
+
+ @Test(description = "test verifications", groups = "verifications")
+ public void VerificationsTC() {
+ searchBox.verifyPresent();
+ services.verifyPresent();
+ products.verifyPresent();
+ }
+
+ @Test(description = "test verifications", groups = "waitservice")
+ public void WaitServiceTC() {
+ services.waitForPresent();
+ }
+
+ private QAFExtendedWebDriver getDriver() {
+ return new WebDriverTestBase().getDriver();
+ }
+}
diff --git a/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/locator/LocatorUtilTest.java b/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/locator/LocatorUtilTest.java
new file mode 100644
index 00000000..75e5ef36
--- /dev/null
+++ b/qaf-selenium/src/it/java/com/qmetry/qaf/automation/ui/locator/LocatorUtilTest.java
@@ -0,0 +1,139 @@
+/*******************************************************************************
+ * Copyright (c) 2019 Infostretch Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ ******************************************************************************/
+package com.qmetry.qaf.automation.ui.locator;
+
+import static com.qmetry.qaf.automation.core.ConfigurationManager.getBundle;
+import static com.qmetry.qaf.automation.util.Validator.assertThat;
+import static org.hamcrest.Matchers.instanceOf;
+
+import java.util.ArrayList;
+import java.util.Iterator;
+
+import org.hamcrest.Matchers;
+import org.openqa.selenium.By.ByCssSelector;
+import org.openqa.selenium.By.ById;
+import org.openqa.selenium.By.ByLinkText;
+import org.openqa.selenium.By.ByName;
+import org.openqa.selenium.By.ByPartialLinkText;
+import org.openqa.selenium.By.ByTagName;
+import org.openqa.selenium.By.ByXPath;
+import org.testng.annotations.DataProvider;
+import org.testng.annotations.Test;
+
+import com.qmetry.qaf.automation.keys.ApplicationProperties;
+import com.qmetry.qaf.automation.ui.webdriver.ByAny;
+import com.qmetry.qaf.automation.ui.webdriver.QAFExtendedWebElement;
+import com.qmetry.qaf.automation.util.LocatorUtil;
+
+/*******************************************************************************
+ * QMetry Automation Framework provides a powerful and versatile platform to
+ * author
+ * Automated Test Cases in Behavior Driven, Keyword Driven or Code Driven
+ * approach
+ * Copyright 2016 Infostretch Corporation
+ * This program is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License as published by the Free Software
+ * Foundation, either version 3 of the License, or any later version.
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+ * DAMAGES OR
+ * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT
+ * OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE
+ * You should have received a copy of the GNU General Public License along with
+ * this program in the name of LICENSE.txt in the root folder of the
+ * distribution. If not, see https://opensource.org/licenses/gpl-3.0.html
+ * See the NOTICE.TXT file in root folder of this source files distribution
+ * for additional information regarding copyright ownership and licenses
+ * of other open source software / files used by QMetry Automation Framework.
+ * For any inquiry or need additional information, please contact
+ * support-qaf@infostretch.com
+ *******************************************************************************/
+/**
+ * .LocatorUtilTest.java
+ *
+ * @author chirag
+ */
+public class LocatorUtilTest {
+
+ @Test(dataProvider = "locatorDP")
+ public void testLocator(String loc, Class> cls) {
+ assertThat(LocatorUtil.getBy(loc), instanceOf(cls));
+ }
+
+ @Test
+ public void testLocator() {
+ getBundle().setProperty("test.loc",
+ "{'locator':'css=a','desc':' Trip type check box'}");
+ assertThat(LocatorUtil.getBy("test.loc"), instanceOf(ByCssSelector.class));
+ }
+
+ //@Test(groups = "UI")
+ public void testLocatorKey() {
+ getBundle().setProperty("test.loc",
+ "{'locator':'css=a','desc':'Trip type check box'}");
+ // System.out.println(ConfigurationManager.getBundle().getString("test.loc"));
+ getBundle().setProperty(ApplicationProperties.DRIVER_NAME.key, "firefoxDriver");
+ // getBundle().setProperty(ApplicationProperties.SELENIUM_BASE_URL.key,
+ // "http://www.google.com");
+ // new WebDriverTestBase().getDriver().get("/");
+ QAFExtendedWebElement ele = new QAFExtendedWebElement("test.loc");
+
+ assertThat(ele.getDescription(),
+ Matchers.equalToIgnoringCase("Trip type check box"));
+ }
+
+ @DataProvider(name = "locatorDP")
+ public static Iterator
+
+ com.qmetry
+ qaf-tools
+ ${project.version}
+
\ No newline at end of file