cheange
This commit is contained in:
parent
022472b1f5
commit
89e355701f
@ -20,12 +20,19 @@ public class DownloadDoc {
|
||||
private final static String APP_URL = "https://1c.ru/";
|
||||
|
||||
private static Context context;
|
||||
private String tmpPath;
|
||||
private int menuItemNumber;
|
||||
private int imgNumber;
|
||||
private static String tmpPath;
|
||||
|
||||
|
||||
|
||||
@BeforeAll
|
||||
public static void setup() {
|
||||
context = new ChromeContext();
|
||||
context.start();
|
||||
context.getDriver().manage().window().setSize(new Dimension(1600, 900));
|
||||
context.getDriver().get(APP_URL);
|
||||
tmpPath = context.getTmpPath();
|
||||
}
|
||||
|
||||
@AfterAll
|
||||
@ -33,37 +40,45 @@ public class DownloadDoc {
|
||||
context.close();
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testDownloandZip() throws InterruptedException {
|
||||
context.getDriver().get(APP_URL);
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickFooterMenuItem(4);
|
||||
menuItemNumber = 4;
|
||||
page.clickFooterMenuItem(menuItemNumber);
|
||||
PagePriceList pagePriceList = PageFactory.initElements(context.getDriver(), PagePriceList.class);
|
||||
String fileName = pagePriceList.getFileName();
|
||||
pagePriceList.clickBtn();
|
||||
|
||||
Assertions.assertTrue(pagePriceList.isFileDownloaded(fileName));
|
||||
|
||||
checkDownload(fileName,100,100);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDownloandOpenChrome() throws InterruptedException {
|
||||
context.getDriver().get(APP_URL);
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickFooterMenuItem(3);
|
||||
menuItemNumber = 3;
|
||||
page.clickFooterMenuItem(menuItemNumber);
|
||||
PageProgrammProduct pageProgrammProduct = PageFactory.initElements(context.getDriver(), PageProgrammProduct.class);
|
||||
pageProgrammProduct.clickLeftMenu(5);
|
||||
PageGosCertification pageGosCertification = PageFactory.initElements(context.getDriver(),PageGosCertification.class);
|
||||
String fileName = pageGosCertification.getFileNameImg(2);
|
||||
pageGosCertification.clickiImg(2);
|
||||
|
||||
|
||||
|
||||
|
||||
menuItemNumber = 5;
|
||||
pageProgrammProduct.clickLeftMenu(menuItemNumber);
|
||||
PageGosCertification pageGosCertification = PageFactory.initElements(context.getDriver(), PageGosCertification.class);
|
||||
imgNumber = 2;
|
||||
String fileName = pageGosCertification.getFileNameImg(imgNumber);
|
||||
pageGosCertification.clickiImg(imgNumber);
|
||||
Assertions.assertTrue(pageGosCertification.checkOpenImg(fileName));
|
||||
|
||||
}
|
||||
|
||||
|
||||
private void checkDownload(String fileName,int timeout, int period) throws InterruptedException {
|
||||
File f = new File(tmpPath +fileName);
|
||||
int time=0;
|
||||
while(!f.exists()&&time<timeout){
|
||||
Thread.sleep(period);
|
||||
time++;
|
||||
}
|
||||
Assertions.assertTrue(f.exists());
|
||||
if(f.exists()) {
|
||||
f.delete();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -14,6 +14,10 @@ public class FilterTest {
|
||||
private final static String APP_URL = "https://1c.ru/";
|
||||
|
||||
private static Context context;
|
||||
private int menuItemNumber;
|
||||
private int itemListCountry;
|
||||
private int dateNumberListFirst;
|
||||
private int dateNumberListLast;
|
||||
|
||||
@BeforeAll
|
||||
public static void setup() {
|
||||
@ -27,106 +31,93 @@ public class FilterTest {
|
||||
context.close();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSiteSearchEnter() {
|
||||
@Test
|
||||
public void testSiteSearchEnter() {
|
||||
context.getDriver().get(APP_URL);
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
pageMain.clickButtomNews();
|
||||
PageNews pageNews = PageFactory.initElements(context.getDriver(), PageNews.class);
|
||||
String queryString = "Предприятие";
|
||||
pageNews.insertSearchText(queryString);
|
||||
pageNews.submitSearch();
|
||||
Assertions.assertTrue(pageNews.checkSearch());
|
||||
}
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickButtomNews();
|
||||
PageNews pageNews = PageFactory.initElements(context.getDriver(),PageNews.class);
|
||||
String queryString = "Предприятие";
|
||||
pageNews.insertSearchText(queryString);
|
||||
|
||||
pageNews.submitSearch();
|
||||
|
||||
Assertions.assertTrue(pageNews.checkSearch());
|
||||
}
|
||||
@Test
|
||||
public void testSiteSearchBtn() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickButtomNews();
|
||||
PageNews pageNews = PageFactory.initElements(context.getDriver(),PageNews.class);
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
pageMain.clickButtomNews();
|
||||
PageNews pageNews = PageFactory.initElements(context.getDriver(), PageNews.class);
|
||||
String queryString = "Предприятие";
|
||||
pageNews.insertSearchText(queryString);
|
||||
pageNews.clickBtmSearch();
|
||||
|
||||
Assertions.assertTrue(pageNews.checkSearch());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testFilterParametrs() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickTopMenuItem(0);
|
||||
|
||||
PageSearch page1 = PageFactory.initElements(context.getDriver(), PageSearch.class);
|
||||
page1.clickTopMenu();
|
||||
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
menuItemNumber = 0;
|
||||
pageMain.clickTopMenuItem(menuItemNumber);
|
||||
PageSearch pageSearch = PageFactory.initElements(context.getDriver(), PageSearch.class);
|
||||
pageSearch.clickTopMenu();
|
||||
PageFirm1C pageFirm1C = PageFactory.initElements(context.getDriver(), PageFirm1C.class);
|
||||
pageFirm1C.clickLeftMenu(18);
|
||||
|
||||
menuItemNumber = 18;
|
||||
pageFirm1C.clickLeftMenu(menuItemNumber);
|
||||
PageUserCertification pageUserCertification = PageFactory.initElements(context.getDriver(), PageUserCertification.class);
|
||||
|
||||
pageUserCertification.clickFilterCountry(1);
|
||||
itemListCountry = 1;
|
||||
pageUserCertification.clickFilterCountry(itemListCountry);
|
||||
pageUserCertification.clickFilterCity();
|
||||
|
||||
Assertions.assertTrue(pageUserCertification.checkFilterCity());
|
||||
Assertions.assertTrue(pageUserCertification.checkSortByFilterCity());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSortCity() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickTopMenuItem(0);
|
||||
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
menuItemNumber = 0;
|
||||
pageMain.clickTopMenuItem(menuItemNumber);
|
||||
PageSearch pageSearch = PageFactory.initElements(context.getDriver(), PageSearch.class);
|
||||
pageSearch.clickTopMenu();
|
||||
|
||||
PageFirm1C pageFirm1C = PageFactory.initElements(context.getDriver(), PageFirm1C.class);
|
||||
pageFirm1C.clickSystemManagment();
|
||||
|
||||
PageSystemManagment page3 = PageFactory.initElements(context.getDriver(), PageSystemManagment.class);
|
||||
page3.clickLinkText();
|
||||
PageListFirm pageListFirm = PageFactory.initElements(context.getDriver(), PageListFirm.class);
|
||||
pageListFirm.clickCity();
|
||||
Assertions.assertTrue(pageListFirm.checkSortCity());
|
||||
Assertions.assertTrue(pageListFirm.checkSortCity());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSearchByDate() throws ParseException {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickButtomNews();
|
||||
PageNews pageNews = PageFactory.initElements(context.getDriver(),PageNews.class);
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
pageMain.clickButtomNews();
|
||||
PageNews pageNews = PageFactory.initElements(context.getDriver(), PageNews.class);
|
||||
String queryString = "Предприятие";
|
||||
pageNews.insertSearchText(queryString);
|
||||
|
||||
pageNews.clickSelectionDate(7);
|
||||
pageNews.clickSelectionDateL(26);
|
||||
|
||||
|
||||
dateNumberListFirst = 7;
|
||||
pageNews.clickSelectionDate(dateNumberListFirst);
|
||||
dateNumberListLast = 26;
|
||||
pageNews.clickSelectionDateL(dateNumberListLast);
|
||||
pageNews.clickBtmSearch();
|
||||
|
||||
Assertions.assertTrue(pageNews.checkSearchParametrsFirstLastDay());
|
||||
Assertions.assertTrue(pageNews.checkSearchParametrsFirstLastDay());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSearchByDateL() throws ParseException {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickButtomNews();
|
||||
PageNews pageNews = PageFactory.initElements(context.getDriver(),PageNews.class);
|
||||
PageNews pageNews = PageFactory.initElements(context.getDriver(), PageNews.class);
|
||||
String queryString = "1с";
|
||||
pageNews.insertSearchText(queryString);
|
||||
|
||||
pageNews.clickSelectionDateL(26);
|
||||
|
||||
dateNumberListLast = 26;
|
||||
pageNews.clickSelectionDateL(dateNumberListLast);
|
||||
pageNews.clickBtmSearch();
|
||||
Assertions.assertTrue(pageNews.checkSearchParametrsLastDay());
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -26,22 +26,27 @@ public class FormMakeRequest {
|
||||
public static void quit() {
|
||||
context.close();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testMakeRequest(){
|
||||
public void testMakeRequest() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
|
||||
PagePartnersFirm pagePartnersFirm = PageFactory.initElements(context.getDriver(),PagePartnersFirm.class);
|
||||
PagePartnersFirm pagePartnersFirm = PageFactory.initElements(context.getDriver(), PagePartnersFirm.class);
|
||||
String fio = "Ekaterina";
|
||||
String email = "test@yandex.ru";
|
||||
String phone = "89756523322";
|
||||
String inn = "745844556856";
|
||||
pagePartnersFirm.insertSearchText(0,inn,3,phone,4,email,5,fio);
|
||||
|
||||
pagePartnersFirm.clickCheckBox(6,10,21,31,33);
|
||||
int numberFieldInn = 0;
|
||||
int numberFieldPhone = 3;
|
||||
int numberFieldEmail = 4;
|
||||
int numberFieldFio = 5;
|
||||
pagePartnersFirm.insertSearchText(numberFieldInn, inn, numberFieldPhone, phone, numberFieldEmail, email, numberFieldFio, fio);
|
||||
int numberCheckBox6 = 6;
|
||||
int numberCheckBox10 = 10;
|
||||
int numberCheckBox21 = 21;
|
||||
int numberCheckBox31 = 31;
|
||||
int numberCheckBox33 = 33;
|
||||
pagePartnersFirm.clickCheckBox(numberCheckBox6, numberCheckBox10, numberCheckBox21, numberCheckBox31, numberCheckBox33);
|
||||
pagePartnersFirm.clickBtnRequest();
|
||||
|
||||
//pagePartnersFirm.clickBtmSearch();
|
||||
Assertions.assertTrue(pagePartnersFirm.displayForm());
|
||||
}
|
||||
}
|
||||
|
@ -27,15 +27,14 @@ public class FormSubscribeTest {
|
||||
public static void quit() {
|
||||
context.close();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testFormSubscribe() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
Random random = new Random();
|
||||
BrowserWindow browserWindow= PageFactory.initElements(context.getDriver(), BrowserWindow.class);
|
||||
String queryString = "name"+random.nextInt(100)+"@yandex.ru";
|
||||
BrowserWindow browserWindow = PageFactory.initElements(context.getDriver(), BrowserWindow.class);
|
||||
String queryString = "name" + random.nextInt(100) + "@yandex.ru";
|
||||
browserWindow.insertText(queryString);
|
||||
|
||||
browserWindow.clickSubscribe();
|
||||
Assertions.assertTrue(browserWindow.subscribeTrue());
|
||||
}
|
||||
|
@ -12,6 +12,7 @@ public class MenuNavigation {
|
||||
private final static String APP_URL = "https://1c.ru/";
|
||||
|
||||
private static Context context;
|
||||
private int menuItemNumber;
|
||||
|
||||
@BeforeAll
|
||||
public static void setup() {
|
||||
@ -28,142 +29,122 @@ public class MenuNavigation {
|
||||
@Test
|
||||
public void testTopMenuDropDownList() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
|
||||
page.clickHeadMenuList();
|
||||
Assertions.assertTrue(page.menuList());
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
pageMain.clickHeadMenuList();
|
||||
Assertions.assertTrue(pageMain.menuList());
|
||||
}
|
||||
@Test
|
||||
|
||||
@Test
|
||||
public void testTopMenuOutLink() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickMenuLink();
|
||||
|
||||
Assertions.assertTrue(page.menuOutLink());
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
pageMain.clickMenuLink();
|
||||
Assertions.assertTrue(pageMain.menuOutLink());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testFooterMenu() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickFooterMenuItem(0);
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
menuItemNumber = 0;
|
||||
pageMain.clickFooterMenuItem(menuItemNumber);
|
||||
PageFirm1C pageFirm1C = PageFactory.initElements(context.getDriver(), PageFirm1C.class);
|
||||
|
||||
Assertions.assertTrue(pageFirm1C.footerMenuList());
|
||||
Assertions.assertTrue(pageFirm1C.footerMenuList());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testLeftMenuOutLink() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickTopMenuItem(0);
|
||||
|
||||
PageSearch page1 = PageFactory.initElements(context.getDriver(), PageSearch.class);
|
||||
page1.clickLeftMenu(0);
|
||||
|
||||
Assertions.assertTrue(page1.searchPage());
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
menuItemNumber = 0;
|
||||
pageMain.clickTopMenuItem(menuItemNumber);
|
||||
PageSearch pageSearch = PageFactory.initElements(context.getDriver(), PageSearch.class);
|
||||
pageSearch.clickLeftMenu(menuItemNumber);
|
||||
Assertions.assertTrue(pageSearch.searchPage());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testPagination() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickTopMenuItem(0);
|
||||
|
||||
PageSearch page1 = PageFactory.initElements(context.getDriver(), PageSearch.class);
|
||||
page1.clickTopMenu();
|
||||
|
||||
PageFirm1C page2 = PageFactory.initElements(context.getDriver(), PageFirm1C.class);
|
||||
page2.clickSystemManagment();
|
||||
|
||||
PageSystemManagment page3 = PageFactory.initElements(context.getDriver(), PageSystemManagment.class);
|
||||
page3.clickLeftMenuListPagination();
|
||||
page3.clickPaginationElement();
|
||||
Assertions.assertTrue(page3.paginationCheck());
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
menuItemNumber = 0;
|
||||
pageMain.clickTopMenuItem(menuItemNumber);
|
||||
PageSearch pageSearch = PageFactory.initElements(context.getDriver(), PageSearch.class);
|
||||
pageSearch.clickTopMenu();
|
||||
PageFirm1C pageFirm1C = PageFactory.initElements(context.getDriver(), PageFirm1C.class);
|
||||
pageFirm1C.clickSystemManagment();
|
||||
PageSystemManagment pageSystemManagment = PageFactory.initElements(context.getDriver(), PageSystemManagment.class);
|
||||
pageSystemManagment.clickLeftMenuListPagination();
|
||||
pageSystemManagment.clickPaginationElement();
|
||||
Assertions.assertTrue(pageSystemManagment.paginationCheck());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testButtomNews() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickButtomNews();
|
||||
|
||||
PageNews pageNews = PageFactory.initElements(context.getDriver(),PageNews.class);
|
||||
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
pageMain.clickButtomNews();
|
||||
PageNews pageNews = PageFactory.initElements(context.getDriver(), PageNews.class);
|
||||
Assertions.assertTrue(pageNews.disposeBlockNews());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testLinkNews() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
String str = page.getTextTitleNews();
|
||||
page.clickLinkNews();
|
||||
|
||||
|
||||
PageInformationRelease pageInf = PageFactory.initElements(context.getDriver(),PageInformationRelease.class);
|
||||
|
||||
Assertions.assertTrue(pageInf.displayNewsInformationTrue(str));
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
String str = pageMain.getTextTitleNews();
|
||||
pageMain.clickLinkNews();
|
||||
PageInformationRelease pageInf = PageFactory.initElements(context.getDriver(), PageInformationRelease.class);
|
||||
Assertions.assertTrue(pageInf.displayNewsInformationTrue(str));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDropDownListVacancy() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickTopMenuItem(0);
|
||||
|
||||
PageSearch page1 = PageFactory.initElements(context.getDriver(), PageSearch.class);
|
||||
page1.clickTopMenu();
|
||||
|
||||
PageFirm1C page2 = PageFactory.initElements(context.getDriver(), PageFirm1C.class);
|
||||
page2.clickVacancy();
|
||||
page2.clickVacancyLink();
|
||||
Assertions.assertTrue(page2.disposalVacancyList());
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
menuItemNumber = 0;
|
||||
pageMain.clickTopMenuItem(menuItemNumber);
|
||||
PageSearch pageSearch = PageFactory.initElements(context.getDriver(), PageSearch.class);
|
||||
pageSearch.clickTopMenu();
|
||||
PageFirm1C pageFirm1C = PageFactory.initElements(context.getDriver(), PageFirm1C.class);
|
||||
pageFirm1C.clickVacancy();
|
||||
pageFirm1C.clickVacancyLink();
|
||||
Assertions.assertTrue(pageFirm1C.disposalVacancyList());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testBtmBackNews() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickLinkNews5();
|
||||
|
||||
PageInformationRelease pageInf = PageFactory.initElements(context.getDriver(),PageInformationRelease.class);
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
pageMain.clickLinkNews5();
|
||||
PageInformationRelease pageInf = PageFactory.initElements(context.getDriver(), PageInformationRelease.class);
|
||||
pageInf.clickBtmBack();
|
||||
|
||||
Assertions.assertTrue(pageInf.disposeMainInformation());
|
||||
Assertions.assertTrue(pageInf.disposeMainInformation());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testBtmNextNews() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickLinkNews5();
|
||||
|
||||
PageInformationRelease pageInf = PageFactory.initElements(context.getDriver(),PageInformationRelease.class);
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
pageMain.clickLinkNews5();
|
||||
PageInformationRelease pageInf = PageFactory.initElements(context.getDriver(), PageInformationRelease.class);
|
||||
pageInf.clickBtmNext();
|
||||
|
||||
Assertions.assertTrue(pageInf.disposeMainInformation());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testPopUpWindow() {
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
PageMain page = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
page.clickTopMenuItem(0);
|
||||
|
||||
PageSearch page1 = PageFactory.initElements(context.getDriver(), PageSearch.class);
|
||||
page1.clickTopMenu();
|
||||
|
||||
PageFirm1C page2 = PageFactory.initElements(context.getDriver(), PageFirm1C.class);
|
||||
page2.clickSystemManagment();
|
||||
|
||||
PageSystemManagment page3 = PageFactory.initElements(context.getDriver(), PageSystemManagment.class);
|
||||
page3.clickLeftMenuListWindiw();
|
||||
page3.clickPopUpWindowElement();
|
||||
Assertions.assertTrue(page3.popUpWindowCheck());
|
||||
PageMain pageMain = PageFactory.initElements(context.getDriver(), PageMain.class);
|
||||
menuItemNumber = 0;
|
||||
pageMain.clickTopMenuItem(menuItemNumber);
|
||||
PageSearch pageSearch = PageFactory.initElements(context.getDriver(), PageSearch.class);
|
||||
pageSearch.clickTopMenu();
|
||||
PageFirm1C pageFirm1C = PageFactory.initElements(context.getDriver(), PageFirm1C.class);
|
||||
pageFirm1C.clickSystemManagment();
|
||||
PageSystemManagment pageSystemManagment = PageFactory.initElements(context.getDriver(), PageSystemManagment.class);
|
||||
pageSystemManagment.clickLeftMenuListWindiw();
|
||||
pageSystemManagment.clickPopUpWindowElement();
|
||||
Assertions.assertTrue(pageSystemManagment.popUpWindowCheck());
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,10 @@
|
||||
package context;
|
||||
|
||||
import org.openqa.selenium.chrome.ChromeDriver;
|
||||
import org.openqa.selenium.chrome.ChromeOptions;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
public class ChromeContext extends Context {
|
||||
private final static String WINDOWS_DRIVER = "chromedriver.exe";
|
||||
@ -9,6 +13,10 @@ public class ChromeContext extends Context {
|
||||
|
||||
@Override
|
||||
protected void createDriver() {
|
||||
ChromeOptions options = new ChromeOptions();
|
||||
Map<String,Object> prefs = new HashMap<String, Object>();
|
||||
tmpPath = System.getProperty("user.dir") + "/src/main/resources/downloads/";
|
||||
prefs.put("download.default_directory",tmpPath);
|
||||
driver = new ChromeDriver();
|
||||
}
|
||||
|
||||
|
@ -7,7 +7,7 @@ import java.util.concurrent.TimeUnit;
|
||||
public abstract class Context {
|
||||
private final static String DRIVER_LOCATION = "drivers/%s";
|
||||
protected WebDriver driver;
|
||||
|
||||
protected String tmpPath;
|
||||
public WebDriver getDriver() {
|
||||
if (driver != null) {
|
||||
return driver;
|
||||
@ -36,6 +36,9 @@ public abstract class Context {
|
||||
return Context.class.getClassLoader().getResource(
|
||||
String.format(DRIVER_LOCATION, getDriverExecutable(isWindows()))).getFile();
|
||||
}
|
||||
public String getTmpPath(){
|
||||
return tmpPath;
|
||||
}
|
||||
|
||||
private boolean isWindows() {
|
||||
return System.getProperty("os.name").toLowerCase().contains("windows");
|
||||
|
@ -1,35 +1,39 @@
|
||||
package page;
|
||||
|
||||
import org.openqa.selenium.WebDriver;
|
||||
import org.openqa.selenium.WebElement;
|
||||
import org.openqa.selenium.support.FindBy;
|
||||
import org.openqa.selenium.WebDriver;
|
||||
import org.openqa.selenium.WebElement;
|
||||
import org.openqa.selenium.support.FindBy;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.List;
|
||||
|
||||
public class BrowserWindow {
|
||||
WebDriver driver;
|
||||
@FindBy(xpath= "//*[@id=\"email\"]")
|
||||
@FindBy(xpath = "//*[@id=\"email\"]")
|
||||
private WebElement textFieldEmail;
|
||||
@FindBy(className = "btn")
|
||||
private WebElement btnSubscribe;
|
||||
@FindBy(css = ".widebox h3")
|
||||
private List<WebElement> text;
|
||||
|
||||
public BrowserWindow(WebDriver driver) {
|
||||
this.driver = driver;
|
||||
}
|
||||
public void insertText(String text){
|
||||
|
||||
public void insertText(String text) {
|
||||
|
||||
textFieldEmail.sendKeys(text);
|
||||
}
|
||||
public void clickSubscribe(){
|
||||
|
||||
public void clickSubscribe() {
|
||||
|
||||
btnSubscribe.click();
|
||||
}
|
||||
public boolean subscribeTrue(){
|
||||
if(text.get(1).getText().contains("Ваши данные приняты")){
|
||||
|
||||
public boolean subscribeTrue() {
|
||||
if (text.get(1).getText().contains("Ваши данные приняты")) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
return false;
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -1,42 +0,0 @@
|
||||
package page;
|
||||
|
||||
import context.ChromeContext;
|
||||
import context.Context;
|
||||
import org.junit.jupiter.api.AfterAll;
|
||||
import org.junit.jupiter.api.Assertions;
|
||||
import org.junit.jupiter.api.BeforeAll;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.openqa.selenium.Dimension;
|
||||
import org.openqa.selenium.support.PageFactory;
|
||||
|
||||
public class InformersTest {
|
||||
// http://1c.ru/news/informer.htm
|
||||
private final static String APP_URL = "http://1c.ru/news/informer.htm";
|
||||
|
||||
private static Context context;
|
||||
|
||||
@BeforeAll
|
||||
public static void setup() {
|
||||
context = new ChromeContext();
|
||||
context.start();
|
||||
context.getDriver().manage().window().setSize(new Dimension(1600, 900));
|
||||
}
|
||||
|
||||
@AfterAll
|
||||
public static void quit() {
|
||||
context.close();
|
||||
}
|
||||
@Test
|
||||
public void testInformer(){
|
||||
context.getDriver().get(APP_URL);
|
||||
|
||||
|
||||
PageInformers pageInformers = PageFactory.initElements(context.getDriver(),PageInformers.class);
|
||||
String count = "5";
|
||||
pageInformers.insertText(count);
|
||||
|
||||
pageInformers.clickBtn();
|
||||
|
||||
Assertions.assertTrue(pageInformers.checkInformer());
|
||||
}
|
||||
}
|
@ -14,26 +14,28 @@ public class PageFirm1C {
|
||||
@FindBy(css = ".sidebar-menu li")
|
||||
private List<WebElement> itemMenu;
|
||||
|
||||
@FindBy(xpath= "//*[@id=\"main_field\"]/h4[1]/a")
|
||||
@FindBy(xpath = "//*[@id=\"main_field\"]/h4[1]/a")
|
||||
private WebElement linlVacancy;
|
||||
|
||||
|
||||
private static int systemManagmentMenuElementNumber = 5;
|
||||
public PageFirm1C (WebDriver driver) {
|
||||
|
||||
public PageFirm1C(WebDriver driver) {
|
||||
this.driver = driver;
|
||||
}
|
||||
|
||||
public void clickSystemManagment(){
|
||||
itemMenu.get(systemManagmentMenuElementNumber).click();
|
||||
public void clickSystemManagment() {
|
||||
itemMenu.get(systemManagmentMenuElementNumber).click();
|
||||
}
|
||||
|
||||
public void clickLeftMenu(int number){
|
||||
public void clickLeftMenu(int number) {
|
||||
itemMenu.get(number).click();
|
||||
}
|
||||
public void clickVacancy(){
|
||||
|
||||
public void clickVacancy() {
|
||||
itemMenu.get(4).click();
|
||||
}
|
||||
public void clickVacancyLink(){
|
||||
|
||||
public void clickVacancyLink() {
|
||||
linlVacancy.click();
|
||||
try {
|
||||
Thread.sleep(5000);
|
||||
@ -42,13 +44,12 @@ public class PageFirm1C {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public boolean disposalVacancyList(){
|
||||
public boolean disposalVacancyList() {
|
||||
return driver.findElement(By.cssSelector("#dept6")).isDisplayed();
|
||||
}
|
||||
public boolean footerMenuList(){
|
||||
|
||||
public boolean footerMenuList() {
|
||||
return driver.findElement(By.cssSelector(".widebox")).isDisplayed();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -14,31 +14,27 @@ public class PageGosCertification {
|
||||
@FindBy(css = ".widebox a")
|
||||
private List<WebElement> elementImg;
|
||||
|
||||
|
||||
public PageGosCertification(WebDriver driver) {
|
||||
this.driver = driver;
|
||||
}
|
||||
public void clickiImg(int number){
|
||||
|
||||
public void clickiImg(int number) {
|
||||
elementImg.get(number).click();
|
||||
|
||||
}
|
||||
public String getFileNameImg(int elementNumber){
|
||||
|
||||
public String getFileNameImg(int elementNumber) {
|
||||
String fileName = elementImg.get(elementNumber).getAttribute("href");
|
||||
fileName = fileName.substring(fileName.lastIndexOf("/")+1);
|
||||
fileName = fileName.substring(fileName.lastIndexOf("/") + 1);
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public boolean checkOpenImg(String str) {
|
||||
public boolean checkOpenImg(String str) {
|
||||
boolean check = false;
|
||||
File f = new File (str);
|
||||
File f = new File(str);
|
||||
String s = driver.getCurrentUrl();
|
||||
if(s.contains(str))
|
||||
if (s.contains(str))
|
||||
check = true;
|
||||
return check;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
@ -9,34 +9,35 @@ import org.openqa.selenium.support.PageFactory;
|
||||
public class PageInformationRelease {
|
||||
WebDriver driver;
|
||||
|
||||
@FindBy(className= "previous")
|
||||
@FindBy(className = "previous")
|
||||
private WebElement elementBackBtmNews;
|
||||
|
||||
@FindBy(className= "next")
|
||||
@FindBy(className = "next")
|
||||
private WebElement elementNextBtmNews;
|
||||
|
||||
@FindBy(id= "pagecontentforsolr")
|
||||
@FindBy(id = "pagecontentforsolr")
|
||||
private WebElement content;
|
||||
|
||||
@FindBy(xpath= "//*[@id=\"pagecontentforsolr\"]/div[4]")
|
||||
@FindBy(xpath = "//*[@id=\"pagecontentforsolr\"]/div[4]")
|
||||
private WebElement title;
|
||||
|
||||
public PageInformationRelease(WebDriver driver) {
|
||||
this.driver = driver;
|
||||
}
|
||||
|
||||
public void clickBtmBack(){
|
||||
public void clickBtmBack() {
|
||||
elementBackBtmNews.click();
|
||||
}
|
||||
public void clickBtmNext(){
|
||||
elementBackBtmNews.click();
|
||||
}
|
||||
public boolean disposeMainInformation() {
|
||||
|
||||
public void clickBtmNext() {
|
||||
elementBackBtmNews.click();
|
||||
}
|
||||
|
||||
public boolean disposeMainInformation() {
|
||||
return content.isDisplayed();
|
||||
}
|
||||
public boolean displayNewsInformationTrue(String str){
|
||||
|
||||
|
||||
public boolean displayNewsInformationTrue(String str) {
|
||||
return title.getText().contains(str);
|
||||
}
|
||||
}
|
||||
|
@ -13,42 +13,34 @@ public class PageInformers {
|
||||
@FindBy(xpath = "//*[@id=\"pagecontentforsolr\"]/table[1]/tbody/tr/td[2]/form/textarea")
|
||||
private WebElement elementCode;
|
||||
|
||||
|
||||
@FindBy(name = "limit")
|
||||
private WebElement textField;
|
||||
|
||||
@FindBy(xpath = "//*[@id=\"pagecontentforsolr\"]/table[1]/tbody/tr/td[2]/form/table/tbody/tr[4]/td/input")
|
||||
private WebElement formBtn;
|
||||
|
||||
|
||||
|
||||
|
||||
public PageInformers(WebDriver driver) {
|
||||
this.driver = driver;
|
||||
}
|
||||
public void insertText(String text){
|
||||
|
||||
public void insertText(String text) {
|
||||
textField.clear();
|
||||
textField.sendKeys(text);
|
||||
}
|
||||
|
||||
private String strCode;
|
||||
private int countItem;
|
||||
public void clickBtn() {
|
||||
|
||||
public void clickBtn() {
|
||||
formBtn.click();
|
||||
strCode = elementCode.getAttribute("value");
|
||||
}
|
||||
|
||||
|
||||
|
||||
public boolean checkInformer(){
|
||||
|
||||
boolean check = false;
|
||||
String strTexyField = textField.getAttribute("value");
|
||||
String strCode1 = strCode;
|
||||
|
||||
if(strCode1.contains(strTexyField))
|
||||
check=true;
|
||||
return check;
|
||||
public boolean checkWorkInformer() {
|
||||
boolean check = false;
|
||||
String strTexyField = textField.getAttribute("value");
|
||||
String strCode1 = strCode;
|
||||
if (strCode1.contains(strTexyField))
|
||||
check = true;
|
||||
return check;
|
||||
}
|
||||
}
|
||||
|
@ -8,32 +8,34 @@ import java.util.List;
|
||||
|
||||
public class PageListFirm {
|
||||
WebDriver driver;
|
||||
|
||||
@FindBy(css = ".content select")
|
||||
private WebElement selectListCity;
|
||||
|
||||
@FindBy(xpath = "//*[@id=\"pagecontentforsolr\"]/table/tbody/tr[1]/th[2]/select/option[17]")
|
||||
private WebElement itemListCity;
|
||||
@FindBy(css="tr")
|
||||
|
||||
@FindBy(css = "tr")
|
||||
private List<WebElement> tr;
|
||||
|
||||
public PageListFirm(WebDriver driver) {
|
||||
this.driver = driver;
|
||||
}
|
||||
public void clickCity(){
|
||||
|
||||
public void clickCity() {
|
||||
selectListCity.click();
|
||||
itemListCity.click();
|
||||
|
||||
try {
|
||||
Thread.sleep(5000);
|
||||
} catch (InterruptedException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
public boolean checkSortCity(){
|
||||
|
||||
public boolean checkSortCity() {
|
||||
boolean checkSearch = false;
|
||||
int count = tr.size();
|
||||
for(int i = 0; i<count;i++){
|
||||
if(tr.get(i).getText().contains(itemListCity.getText()))
|
||||
for (int i = 0; i < count; i++) {
|
||||
if (tr.get(i).getText().contains(itemListCity.getText()))
|
||||
checkSearch = true;
|
||||
}
|
||||
return checkSearch;
|
||||
|
@ -31,6 +31,7 @@ public class PageMain {
|
||||
public PageMain(WebDriver driver) {
|
||||
this.driver = driver;
|
||||
}
|
||||
|
||||
public void clickHeadMenuList() {
|
||||
driver.findElement(By.className("droppable")).findElement(By.tagName("span")).click();
|
||||
try {
|
||||
@ -39,6 +40,7 @@ public class PageMain {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
public void clickMenuLink() {
|
||||
menuElementsList.click();
|
||||
try {
|
||||
@ -47,24 +49,26 @@ public class PageMain {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
public void clickTopMenuItem(int number){
|
||||
|
||||
public void clickTopMenuItem(int number) {
|
||||
|
||||
menuElements.get(number).click();
|
||||
}
|
||||
public void clickFooterMenuItem(int number){
|
||||
footerMenuElements.get(number).click();
|
||||
|
||||
public void clickFooterMenuItem(int number) {
|
||||
footerMenuElements.get(number).click();
|
||||
}
|
||||
public void clickButtomNews(){
|
||||
|
||||
public void clickButtomNews() {
|
||||
|
||||
buttomNewsElements.click();
|
||||
}
|
||||
public void clickLinkNews(){
|
||||
|
||||
public void clickLinkNews() {
|
||||
linkElement.get(3).click();
|
||||
|
||||
}
|
||||
public void clickLinkNews5(){
|
||||
|
||||
public void clickLinkNews5() {
|
||||
linkElement.get(5).click();
|
||||
try {
|
||||
Thread.sleep(5000);
|
||||
@ -72,19 +76,17 @@ public class PageMain {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
public String getTextTitleNews(){
|
||||
|
||||
public String getTextTitleNews() {
|
||||
String str = linkElement.get(3).getText();
|
||||
return str;
|
||||
}
|
||||
|
||||
public boolean menuList(){
|
||||
public boolean menuList() {
|
||||
return !(driver.findElement(By.xpath("/html/body/div[1]/div[1]/div/div[2]/div[2]/ul/div/li[1]/a")).isDisplayed());
|
||||
|
||||
}
|
||||
|
||||
public boolean menuOutLink() {
|
||||
return driver.findElement(By.cssSelector(".left-content")).isDisplayed();
|
||||
return driver.findElement(By.cssSelector(".left-content")).isDisplayed();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -15,43 +15,46 @@ import java.util.Locale;
|
||||
public class PageNews {
|
||||
WebDriver driver;
|
||||
|
||||
@FindBy(name= "query")
|
||||
@FindBy(name = "query")
|
||||
private WebElement elementEntryField;
|
||||
@FindBy(className= "btn")
|
||||
@FindBy(className = "btn")
|
||||
private WebElement elementBtnSearch;
|
||||
@FindBy(className= "next")
|
||||
@FindBy(className = "next")
|
||||
private WebElement elementNextBtmNews;
|
||||
@FindBy(id= "date_from")
|
||||
@FindBy(id = "date_from")
|
||||
private WebElement elementDateFrom;
|
||||
@FindBy(css= " .table-condensed td")
|
||||
@FindBy(css = " .table-condensed td")
|
||||
private List<WebElement> elementDateNumber;
|
||||
@FindBy(id= "date_to")
|
||||
@FindBy(id = "date_to")
|
||||
private WebElement elementDateTo;
|
||||
@FindBy(css= ".widebox li")
|
||||
@FindBy(css = ".widebox li")
|
||||
private List<WebElement> elementListNews;
|
||||
@FindBy(className= "datepicker-switch")
|
||||
@FindBy(className = "datepicker-switch")
|
||||
private WebElement elementMonth;
|
||||
@FindBy(className= "prev")
|
||||
@FindBy(className = "prev")
|
||||
private WebElement elementBack;
|
||||
|
||||
public PageNews(WebDriver driver) {
|
||||
this.driver = driver;
|
||||
}
|
||||
|
||||
public void insertSearchText(String text){
|
||||
public void insertSearchText(String text) {
|
||||
|
||||
|
||||
elementEntryField.sendKeys(text);
|
||||
|
||||
}
|
||||
|
||||
private int strDayFirst;
|
||||
private int strDayLast;
|
||||
private String strMonthFirst;
|
||||
private String strMonthLast;
|
||||
public void clickBtmSearch(){
|
||||
|
||||
public void clickBtmSearch() {
|
||||
elementBtnSearch.click();
|
||||
}
|
||||
public void submitSearch(){
|
||||
|
||||
public void submitSearch() {
|
||||
elementEntryField.sendKeys(Keys.RETURN);
|
||||
try {
|
||||
Thread.sleep(5000);
|
||||
@ -59,7 +62,8 @@ public class PageNews {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
public void clickSelectionDate(int number1){
|
||||
|
||||
public void clickSelectionDate(int number1) {
|
||||
elementDateFrom.click();
|
||||
elementBack.click();
|
||||
elementDateNumber.get(number1).click();
|
||||
@ -67,14 +71,14 @@ public class PageNews {
|
||||
strMonthFirst = elementMonth.getText();
|
||||
|
||||
|
||||
|
||||
}
|
||||
public void clickSelectionDateL( int number2){
|
||||
|
||||
public void clickSelectionDateL(int number2) {
|
||||
|
||||
elementDateTo.click();
|
||||
elementDateNumber.get(number2).click();
|
||||
strDayLast = Integer.parseInt(elementDateNumber.get(number2).getText());
|
||||
strMonthLast =elementMonth.getText();
|
||||
strMonthLast = elementMonth.getText();
|
||||
driver.findElement(By.className("cats")).click();
|
||||
|
||||
|
||||
@ -85,13 +89,11 @@ public class PageNews {
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
public boolean checkSearchParametrsFirstLastDay() throws ParseException {
|
||||
boolean checkSearch = false;
|
||||
int count = elementListNews.size();
|
||||
String firstDayNewsList = elementListNews.get(0).getText().substring(0,elementListNews.get(0).getText().indexOf("\n"));
|
||||
String enDayNewsList = elementListNews.get(count-1).getText().substring(0,elementListNews.get(count-1).getText().indexOf("\n"));
|
||||
String firstDayNewsList = elementListNews.get(0).getText().substring(0, elementListNews.get(0).getText().indexOf("\n"));
|
||||
String enDayNewsList = elementListNews.get(count - 1).getText().substring(0, elementListNews.get(count - 1).getText().indexOf("\n"));
|
||||
String fDayNumber = elementDateFrom.getAttribute("value");
|
||||
String eDayNumber = elementDateTo.getAttribute("value");
|
||||
SimpleDateFormat newDateFormat = new SimpleDateFormat("dd.MM.yyyy", Locale.getDefault());
|
||||
@ -102,23 +104,19 @@ public class PageNews {
|
||||
Date dateFDay = newDateFormat.parse(fDayNumber);
|
||||
Date dateEDay = newDateFormat.parse(eDayNumber);
|
||||
|
||||
if(dateFirstList.before(dateEDay)|| dateFirstList.equals(dateEDay))
|
||||
{
|
||||
if(dateEndList.after(dateFDay) ||dateEndList.equals(dateFDay))
|
||||
checkSearch = true;
|
||||
if ((dateFirstList.before(dateEDay) || dateFirstList.equals(dateEDay)) && (dateEndList.after(dateFDay) || dateEndList.equals(dateFDay)) ) {
|
||||
checkSearch = true;
|
||||
}
|
||||
|
||||
|
||||
|
||||
return checkSearch;
|
||||
}
|
||||
|
||||
public boolean checkSearchParametrsLastDay() throws ParseException {
|
||||
boolean checkSearch = false;
|
||||
String firstDayNewsList = elementListNews.get(0).getText();
|
||||
String dateTo = elementDateTo.getAttribute("value");
|
||||
|
||||
String dateInString = firstDayNewsList.substring(0,firstDayNewsList.indexOf("\n"));//создаю строку по заданному формату
|
||||
String oldDateString = dateInString ;
|
||||
String dateInString = firstDayNewsList.substring(0, firstDayNewsList.indexOf("\n"));//создаю строку по заданному формату
|
||||
String oldDateString = dateInString;
|
||||
SimpleDateFormat newDateFormat = new SimpleDateFormat("dd.MM.yyyy", Locale.getDefault());
|
||||
SimpleDateFormat oldDateFormat = new SimpleDateFormat("dd MMMM yyyy", Locale.getDefault());
|
||||
|
||||
@ -127,19 +125,18 @@ public class PageNews {
|
||||
|
||||
Date date1 = newDateFormat.parse(dateTo);
|
||||
|
||||
if(date1.after(date) || date1.equals(date)){
|
||||
if (date1.after(date) || date1.equals(date)) {
|
||||
checkSearch = true;
|
||||
}
|
||||
|
||||
|
||||
return checkSearch;
|
||||
}
|
||||
public boolean checkSearch(){
|
||||
|
||||
public boolean checkSearch() {
|
||||
boolean checkSearch = false;
|
||||
int count = elementListNews.size();
|
||||
String strSearch = elementEntryField.getAttribute("value");
|
||||
for(int i=0; i<count-1;i++){
|
||||
if(elementListNews.get(i).getText().contains(strSearch))
|
||||
for (int i = 0; i < count - 1; i++) {
|
||||
if (elementListNews.get(i).getText().contains(strSearch))
|
||||
checkSearch = true;
|
||||
}
|
||||
return checkSearch;
|
||||
|
@ -27,7 +27,7 @@ public class PagePartnersFirm {
|
||||
public void insertSearchText(int i, String Inn,
|
||||
int i1, String email,
|
||||
int i2, String phone,
|
||||
int i3, String name){
|
||||
int i3, String name) {
|
||||
|
||||
elementInput.get(i).sendKeys(Inn);
|
||||
|
||||
@ -41,9 +41,8 @@ public class PagePartnersFirm {
|
||||
} catch (InterruptedException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
public void clickCheckBox(int cBox,
|
||||
int cBox1,
|
||||
int cBox2,
|
||||
@ -73,24 +72,20 @@ public class PagePartnersFirm {
|
||||
} catch (InterruptedException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
elementInput.get(cBox4).click();
|
||||
|
||||
|
||||
elementInput.get(cBox4).click();
|
||||
}
|
||||
|
||||
|
||||
public void clickBtnRequest(){
|
||||
|
||||
public void clickBtnRequest() {
|
||||
elementBtn.click();
|
||||
}
|
||||
public void submitRequest(){
|
||||
|
||||
public void submitRequest() {
|
||||
elementBtn.sendKeys(Keys.RETURN);
|
||||
|
||||
}
|
||||
public boolean displayForm(){
|
||||
|
||||
return elementSpan.getText().contains("Благодрим вас за отправленную анкету");
|
||||
|
||||
public boolean displayForm() {
|
||||
return elementSpan.getText().contains("Благодрим вас за отправленную анкету");
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -14,20 +14,17 @@ public class PagePriceList {
|
||||
@FindBy(className = "btn")
|
||||
private WebElement elementBtn;
|
||||
|
||||
private String tmpPath = "C://Users/tab35/Downloads/";
|
||||
|
||||
public PagePriceList(WebDriver driver) {
|
||||
this.driver = driver;
|
||||
}
|
||||
|
||||
public String getFileName(){
|
||||
public String getFileName() {
|
||||
String fileName = elementBtn.getAttribute("href");
|
||||
fileName = fileName.substring(fileName.lastIndexOf("/")+1);
|
||||
fileName = fileName.substring(fileName.lastIndexOf("/") + 1);
|
||||
return fileName;
|
||||
}
|
||||
|
||||
public void clickBtn(){
|
||||
|
||||
public void clickBtn() {
|
||||
elementBtn.click();
|
||||
try {
|
||||
Thread.sleep(5000);
|
||||
@ -35,13 +32,5 @@ public class PagePriceList {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
public boolean isFileDownloaded(String filename){
|
||||
|
||||
boolean check = false;
|
||||
File file = new File(tmpPath+filename);
|
||||
if(file.exists()) {
|
||||
check = true;
|
||||
}
|
||||
return check;
|
||||
}
|
||||
}
|
||||
|
@ -12,11 +12,11 @@ public class PageProgrammProduct {
|
||||
@FindBy(css = ".dropdown a")
|
||||
private List<WebElement> elementMenu;
|
||||
|
||||
|
||||
public PageProgrammProduct(WebDriver driver) {
|
||||
this.driver = driver;
|
||||
}
|
||||
public void clickLeftMenu(int number){
|
||||
|
||||
public void clickLeftMenu(int number) {
|
||||
|
||||
elementMenu.get(number).click();
|
||||
|
||||
|
@ -23,20 +23,20 @@ public class PageSearch {
|
||||
private WebElement searchBtn;
|
||||
|
||||
private static int topMenuElementNumber = 1;
|
||||
|
||||
public PageSearch(WebDriver driver) {
|
||||
this.driver = driver;
|
||||
}
|
||||
|
||||
|
||||
public void clickLeftMenu(int number){
|
||||
public void clickLeftMenu(int number) {
|
||||
leftMenuElement.get(number).click();
|
||||
}
|
||||
|
||||
public void clickTopMenu(){
|
||||
public void clickTopMenu() {
|
||||
topMenuElement.get(topMenuElementNumber).click();
|
||||
}
|
||||
|
||||
public boolean searchPage(){
|
||||
public boolean searchPage() {
|
||||
return driver.findElement(By.cssSelector("#pagecontentforsolr")).isDisplayed();
|
||||
}
|
||||
}
|
||||
|
@ -18,41 +18,42 @@ public class PageSystemManagment {
|
||||
|
||||
@FindBy(className = "scope")
|
||||
private List<WebElement> elementPopUpWindow;
|
||||
|
||||
@FindBy(css = ".scope .from")
|
||||
private WebElement windowPopUp;
|
||||
|
||||
@FindBy(css = ".widebox a")
|
||||
private List<WebElement> elementtLinkText;
|
||||
public PageSystemManagment (WebDriver driver) {
|
||||
|
||||
public PageSystemManagment(WebDriver driver) {
|
||||
this.driver = driver;
|
||||
}
|
||||
|
||||
public void clickLeftMenuListPagination() {
|
||||
|
||||
itemLeftMenu.get(4).click();
|
||||
|
||||
}
|
||||
|
||||
public void clickLeftMenuListWindiw() {
|
||||
|
||||
itemLeftMenu.get(3).click();
|
||||
|
||||
}
|
||||
|
||||
public void clickPaginationElement() {
|
||||
|
||||
paginationElement.get(3).click();
|
||||
|
||||
}
|
||||
|
||||
public void clickPopUpWindowElement() {
|
||||
|
||||
elementPopUpWindow.get(0).click();
|
||||
|
||||
elementPopUpWindow.get(0).click();
|
||||
}
|
||||
public void clickLinkText(){
|
||||
|
||||
public void clickLinkText() {
|
||||
elementtLinkText.get(1).click();
|
||||
}
|
||||
public boolean paginationCheck(){
|
||||
|
||||
public boolean paginationCheck() {
|
||||
return driver.findElement(By.cssSelector(".ndate")).isDisplayed();
|
||||
}
|
||||
public boolean popUpWindowCheck(){
|
||||
|
||||
public boolean popUpWindowCheck() {
|
||||
return windowPopUp.isDisplayed();
|
||||
}
|
||||
|
||||
|
@ -12,32 +12,34 @@ public class PageUserCertification {
|
||||
@FindBy(className = "country-list-li")
|
||||
private List<WebElement> itemListCountry;
|
||||
|
||||
@FindBy(name="reg")
|
||||
@FindBy(name = "reg")
|
||||
private WebElement selectListCity;
|
||||
@FindBy(xpath="//*[@id=\"pagecontentforsolr\"]/form[2]/select/option[8]")
|
||||
|
||||
@FindBy(xpath = "//*[@id=\"pagecontentforsolr\"]/form[2]/select/option[8]")
|
||||
private WebElement itemListCity;
|
||||
|
||||
@FindBy(css="tr")
|
||||
@FindBy(css = "tr")
|
||||
private List<WebElement> tr;
|
||||
|
||||
public PageUserCertification(WebDriver driver) {
|
||||
this.driver = driver;
|
||||
}
|
||||
|
||||
|
||||
public void clickFilterCountry(int number){
|
||||
public void clickFilterCountry(int number) {
|
||||
itemListCountry.get(number).click();
|
||||
}
|
||||
public void clickFilterCity(){
|
||||
|
||||
public void clickFilterCity() {
|
||||
selectListCity.click();
|
||||
itemListCity.click();
|
||||
}
|
||||
|
||||
public boolean checkFilterCity(){
|
||||
public boolean checkSortByFilterCity() {
|
||||
boolean checkSearch = false;
|
||||
int count = tr.size();
|
||||
for(int i = 0; i<count;i++){
|
||||
if(tr.get(i).getText().contains(itemListCity.getText()))
|
||||
checkSearch = true;
|
||||
for (int i = 0; i < count; i++) {
|
||||
if (tr.get(i).getText().contains(itemListCity.getText()))
|
||||
checkSearch = true;
|
||||
}
|
||||
return checkSearch;
|
||||
}
|
||||
|
@ -23,7 +23,6 @@ public class SearchPage {
|
||||
inputField.sendKeys(text);
|
||||
return this;
|
||||
}
|
||||
|
||||
public void clickSubmitButton() {
|
||||
inputField.sendKeys(Keys.RETURN);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user