How to use CountryEnvLink class of org.cerberus.crud.entity package

Best Cerberus-source code snippet using org.cerberus.crud.entity.CountryEnvLink

Source:CountryEnvLinkService.java Github

copy

Full Screen

...19 */20package org.cerberus.crud.service.impl;21import java.util.ArrayList;22import java.util.List;23import org.cerberus.crud.dao.ICountryEnvLinkDAO;24import org.cerberus.crud.entity.CountryEnvLink;25import org.cerberus.engine.entity.MessageEvent;26import org.cerberus.engine.entity.MessageGeneral;27import org.cerberus.exception.CerberusException;28import org.cerberus.crud.service.ICountryEnvLinkService;29import org.cerberus.enums.MessageEventEnum;30import org.cerberus.enums.MessageGeneralEnum;31import org.cerberus.util.answer.Answer;32import org.cerberus.util.answer.AnswerItem;33import org.cerberus.util.answer.AnswerList;34import org.cerberus.util.answer.AnswerUtil;35import org.springframework.beans.factory.annotation.Autowired;36import org.springframework.stereotype.Service;37/**38 *39 * @author bcivel40 */41@Service42public class CountryEnvLinkService implements ICountryEnvLinkService {43 @Autowired44 ICountryEnvLinkDAO countryEnvLinkDao;45 private final String OBJECT_NAME = "CountryEnvLink";46 private static final org.apache.logging.log4j.Logger LOG = org.apache.logging.log4j.LogManager.getLogger(CountryEnvLinkService.class);47 @Override48 public AnswerList readByVarious(String system, String country, String environment) {49 return countryEnvLinkDao.readByVariousByCriteria(system, country, environment, 0, 0, null, null, null, null);50 }51 @Override52 public AnswerList readByVariousByCriteria(String system, String country, String environment, int start, int amount, String column, String dir, String searchTerm, String individualSearch) {53 return countryEnvLinkDao.readByVariousByCriteria(system, country, environment, start, amount, column, dir, searchTerm, individualSearch);54 }55 @Override56 public Answer create(CountryEnvLink object) {57 return countryEnvLinkDao.create(object);58 }59 @Override60 public Answer delete(CountryEnvLink object) {61 return countryEnvLinkDao.delete(object);62 }63 @Override64 public Answer update(CountryEnvLink object) {65 return countryEnvLinkDao.update(object);66 }67 @Override68 public Answer createList(List<CountryEnvLink> objectList) {69 Answer ans = new Answer(null);70 for (CountryEnvLink objectToCreate : objectList) {71 ans = countryEnvLinkDao.create(objectToCreate);72 }73 return ans;74 }75 @Override76 public Answer deleteList(List<CountryEnvLink> objectList) {77 Answer ans = new Answer(null);78 for (CountryEnvLink objectToCreate : objectList) {79 ans = countryEnvLinkDao.delete(objectToCreate);80 }81 return ans;82 }83 @Override84 public Answer compareListAndUpdateInsertDeleteElements(String system, String country, String environement, List<CountryEnvLink> newList) {85 Answer ans = new Answer(null);86 MessageEvent msg1 = new MessageEvent(MessageEventEnum.GENERIC_OK);87 Answer finalAnswer = new Answer(msg1);88 List<CountryEnvLink> oldList = new ArrayList();89 try {90 oldList = this.convert(this.readByVarious(system, country, environement));91 } catch (CerberusException ex) {92 LOG.error(ex);93 }94 /**95 * Iterate on (TestCaseStep From Page - TestCaseStep From Database) If96 * TestCaseStep in Database has same key : Update and remove from the97 * list. If TestCaseStep in database does ot exist : Insert it.98 */99 List<CountryEnvLink> listToUpdateOrInsert = new ArrayList(newList);100 listToUpdateOrInsert.removeAll(oldList);101 List<CountryEnvLink> listToUpdateOrInsertToIterate = new ArrayList(listToUpdateOrInsert);102 for (CountryEnvLink objectDifference : listToUpdateOrInsertToIterate) {103 for (CountryEnvLink objectInDatabase : oldList) {104 if (objectDifference.hasSameKey(objectInDatabase)) {105 ans = this.update(objectDifference);106 finalAnswer = AnswerUtil.agregateAnswer(finalAnswer, (Answer) ans);107 listToUpdateOrInsert.remove(objectDifference);108 }109 }110 }111 /**112 * Iterate on (TestCaseStep From Database - TestCaseStep From Page). If113 * TestCaseStep in Page has same key : remove from the list. Then delete114 * the list of TestCaseStep115 */116 List<CountryEnvLink> listToDelete = new ArrayList(oldList);117 listToDelete.removeAll(newList);118 List<CountryEnvLink> listToDeleteToIterate = new ArrayList(listToDelete);119 for (CountryEnvLink tcsDifference : listToDeleteToIterate) {120 for (CountryEnvLink tcsInPage : newList) {121 if (tcsDifference.hasSameKey(tcsInPage)) {122 listToDelete.remove(tcsDifference);123 }124 }125 }126 if (!listToDelete.isEmpty()) {127 ans = this.deleteList(listToDelete);128 finalAnswer = AnswerUtil.agregateAnswer(finalAnswer, (Answer) ans);129 }130 // We insert only at the end (after deletion of all potencial enreg - linked with #1281)131 if (!listToUpdateOrInsert.isEmpty()) {132 ans = this.createList(listToUpdateOrInsert);133 finalAnswer = AnswerUtil.agregateAnswer(finalAnswer, (Answer) ans);134 }135 return finalAnswer;136 }137 @Override138 public CountryEnvLink convert(AnswerItem answerItem) throws CerberusException {139 if (answerItem.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {140 //if the service returns an OK message then we can get the item141 return (CountryEnvLink) answerItem.getItem();142 }143 throw new CerberusException(new MessageGeneral(MessageGeneralEnum.DATA_OPERATION_ERROR));144 }145 @Override146 public List<CountryEnvLink> convert(AnswerList answerList) throws CerberusException {147 if (answerList.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {148 //if the service returns an OK message then we can get the item149 return (List<CountryEnvLink>) answerList.getDataList();150 }151 throw new CerberusException(new MessageGeneral(MessageGeneralEnum.DATA_OPERATION_ERROR));152 }153 @Override154 public void convert(Answer answer) throws CerberusException {155 if (answer.isCodeEquals(MessageEventEnum.DATA_OPERATION_OK.getCode())) {156 //if the service returns an OK message then we can get the item157 return;158 }159 throw new CerberusException(new MessageGeneral(MessageGeneralEnum.DATA_OPERATION_ERROR));160 }161}...

Full Screen

Full Screen

Source:ICountryEnvLinkDAO.java Github

copy

Full Screen

...20package org.cerberus.crud.dao;21import java.sql.ResultSet;22import java.sql.SQLException;23import org.cerberus.crud.entity.Application;24import org.cerberus.crud.entity.CountryEnvLink;25import org.cerberus.util.answer.Answer;26import org.cerberus.util.answer.AnswerList;27/**28 * @author bcivel29 */30public interface ICountryEnvLinkDAO {31 /**32 *33 * @param system34 * @param country35 * @param environment36 * @param startPosition37 * @param length38 * @param columnName39 * @param sort40 * @param searchParameter41 * @param string42 * @return43 */44 AnswerList readByVariousByCriteria(String system, String country, String environment, int startPosition, int length, String columnName, String sort, String searchParameter, String string);45 /**46 *47 * @param object48 * @return49 */50 Answer create(CountryEnvLink object);51 /**52 *53 * @param object54 * @return55 */56 Answer delete(CountryEnvLink object);57 /**58 *59 * @param object60 * @return61 */62 Answer update(CountryEnvLink object);63 /**64 * Uses data of ResultSet to create object {@link Application}65 *66 * @param rs ResultSet relative to select from table countryenvlink67 * @return object {@link CountryEnvLink}68 * @throws SQLException when trying to get value from69 * {@link java.sql.ResultSet#getString(String)}70 * @see FactoryCountryEnvLink71 */72 CountryEnvLink loadFromResultSet(ResultSet rs) throws SQLException;73}...

Full Screen

Full Screen

Source:FactoryCountryEnvLink.java Github

copy

Full Screen

...17 * You should have received a copy of the GNU General Public License18 * along with Cerberus. If not, see <http://www.gnu.org/licenses/>.19 */20package org.cerberus.crud.factory.impl;21import org.cerberus.crud.entity.CountryEnvLink;22import org.cerberus.crud.factory.IFactoryCountryEnvLink;23import org.springframework.stereotype.Service;24/**25 *26 * @author bcivel27 */28@Service29public class FactoryCountryEnvLink implements IFactoryCountryEnvLink {30 CountryEnvLink countryEnvLink;31 32 @Override33 public CountryEnvLink create(String system, String country, String environment, String systemLink, String countryLink, String environmentLink) {34 countryEnvLink = new CountryEnvLink();35 countryEnvLink.setSystem(system);36 countryEnvLink.setCountry(country);37 countryEnvLink.setEnvironment(environment);38 countryEnvLink.setSystemLink(systemLink);39 countryEnvLink.setCountryLink(countryLink);40 countryEnvLink.setEnvironmentLink(environmentLink);41 42 return countryEnvLink;43 }44 45}...

Full Screen

Full Screen

CountryEnvLink

Using AI Code Generation

copy

Full Screen

1import org.cerberus.crud.entity.CountryEnvLink;2import org.cerberus.crud.service.ICountryEnvLinkService;3import org.springframework.context.ApplicationContext;4import org.springframework.context.support.ClassPathXmlApplicationContext;5public class CountryEnvLinkMain {6 public static void main(String[] args) {7 ApplicationContext context = new ClassPathXmlApplicationContext("spring.xml");8 ICountryEnvLinkService countryEnvLinkService = (ICountryEnvLinkService) context.getBean("CountryEnvLinkService");9 CountryEnvLink countryEnvLink = new CountryEnvLink();10 countryEnvLink.setSystem("system");11 countryEnvLink.setCountry("country");12 countryEnvLink.setEnvironment("environment");13 countryEnvLink.setActive("active");14 countryEnvLink.setIp("ip");15 countryEnvLink.setUrl("url");16 countryEnvLink.setSshlogin("sshlogin");17 countryEnvLink.setSshkey("sshkey");18 countryEnvLink.setSshport("sshport");19 countryEnvLink.setSshpass("sshpass");20 countryEnvLink.setSshpassphrase("sshpassphrase");21 countryEnvLink.setSshkeypath("sshkeypath");22 countryEnvLink.setSshkeypassphrase("sshkeypassphrase");23 countryEnvLink.setSshproxy("sshproxy");24 countryEnvLink.setSshproxyhost("sshproxyhost");25 countryEnvLink.setSshproxyport("sshproxyport");26 countryEnvLink.setSshproxypassphrase("sshproxypassphrase");27 countryEnvLink.setSshproxylogin("sshproxylogin");28 countryEnvLink.setSshproxypass("sshproxypass");29 countryEnvLink.setSshproxykey("sshproxykey");

Full Screen

Full Screen

CountryEnvLink

Using AI Code Generation

copy

Full Screen

1import org.cerberus.crud.entity.CountryEnvLink;2import org.cerberus.crud.service.ICountryEnvLinkService;3import org.springframework.context.support.ApplicationContext;4import org.springframework.context.support.ClassPathXmlApplicationContext;5import java.util.List;6import java.util.Iterator;7public class 3 {8 public static void main(String[] args) {9 ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");10 ICountryEnvLinkService countryEnvLinkService = (ICountryEnvLinkService) context.getBean("CountryEnvLinkService");11 List<CountryEnvLink> countryEnvLinkList = countryEnvLinkService.findAll();12 Iterator<CountryEnvLink> iterator = countryEnvLinkList.iterator();13 while (iterator.hasNext()) {14 System.out.println(iterator.next());15 }16 }17}18CountryEnvLink{countryEnvLinkID=1, system='QA', country='FR', environment='QA', active='Y', dateCreated=null, dateModif=null, userCreated=null, userModif=null}19CountryEnvLink{countryEnvLinkID=2, system='QA', country='FR', environment='UAT', active='Y', dateCreated=null, dateModif=null, userCreated=null, userModif=null}20CountryEnvLink{countryEnvLinkID=3, system='QA', country='FR', environment='PROD', active='Y', dateCreated=null, dateModif=null, userCreated=null, userModif=null}21CountryEnvLink{countryEnvLinkID=4, system='QA', country='BE', environment='QA', active='Y', dateCreated=null, dateModif=null, userCreated=null, userModif=null}22CountryEnvLink{countryEnvLinkID=5, system='QA', country='BE', environment='UAT', active

Full Screen

Full Screen

CountryEnvLink

Using AI Code Generation

copy

Full Screen

1import org.cerberus.crud.entity.CountryEnvLink;2import org.cerberus.crud.entity.CountryEnvLink;3import org.cerberus.crud.entity.CountryEnvLink;4public class 3 {5 public static void main(String[] args) {6 CountryEnvLink obj = new CountryEnvLink();7 obj.setSystem("system");8 obj.setCountry("country");9 obj.setEnvironment("environment");10 obj.setActive("active");11 obj.setUsrCreated("usrCreated");12 obj.setDateCreated("dateCreated");13 obj.setUsrModif("usrModif");14 obj.setDateModif("dateModif");15 System.out.println(obj.getSystem());16 System.out.println(obj.getCountry());17 System.out.println(obj.getEnvironment());18 System.out.println(obj.getActive());19 System.out.println(obj.getUsrCreated());20 System.out.println(obj.getDateCreated());21 System.out.println(obj.getUsrModif());22 System.out.println(obj.getDateModif());23 }24}25import org.cerberus.crud.dao.CountryEnvLinkDAO;26import org.cerberus.crud.dao.CountryEnvLinkDAO;27import org.cerberus.crud.dao.CountryEnvLinkDAO;28public class 4 {29 public static void main(String[] args) {30 CountryEnvLinkDAO obj = new CountryEnvLinkDAO();31 obj.create("system", "country", "environment", "active", "usrCreated", "dateCreated", "usrModif", "dateModif");32 obj.delete("system", "country", "environment");33 obj.findAll();34 obj.findCountryEnvLinkByKey("system", "country", "environment");35 obj.update("system", "country", "environment", "active", "usrCreated", "dateCreated", "usrModif", "dateModif");36 }37}38import org.cerberus.crud.service.CountryEnvLinkService;39import org.cerberus.crud.service.CountryEnvLinkService;40import org.cerberus.crud.service.CountryEnvLinkService;41public class 5 {42 public static void main(String[] args) {

Full Screen

Full Screen

CountryEnvLink

Using AI Code Generation

copy

Full Screen

1import org.cerberus.crud.entity.CountryEnvLink;2import org.cerberus.crud.entity.CountryEnvLink;3public class 3 {4public static void main(String[] args) {5CountryEnvLink obj = new CountryEnvLink();6obj.setCountry("country");7obj.setEnvironment("environment");8obj.setActive(true);9obj.setChain("chain");10obj.setBuild("build");11obj.setRevision("revision");12obj.setSvnurl("svnurl");13obj.setDistribute("distribute");14obj.setDistributeurl("distributeurl");15obj.setDistributerepository("distributerepository");16obj.setDistributepassword("distributepassword");17obj.setDistributeprotocol("distributeprotocol");18obj.setDistributefolder("distributefolder");19obj.setDistributetag("distributetag");20obj.setDistributeonlyifsaved("distributeonlyifsaved");21obj.setDistributeonnewchain("distributeonnewchain");22obj.setDistributeonnewchainvalue("distributeonnewchainvalue");23obj.setDistributeonnewrevision("distributeonnewrevision");24obj.setDistributeonnewrevisionvalue("distributeonnewrevisionvalue");25obj.setDistributeonnewbuild("distributeonnewbuild");26obj.setDistributeonnewbuildvalue("distributeonnewbuildvalue");27obj.setDistributeonnewversion("distributeonnewversion");28obj.setDistributeonnewversionvalue("distributeonnewversionvalue");29obj.setDistributeonnewticket("distributeonnewticket");30obj.setDistributeonnewticketvalue("distributeonnewticketvalue");31obj.setDistributeonnewapplication("distributeonnewapplication");32obj.setDistributeonnewapplicationvalue("distributeonnewapplicationvalue");33obj.setDistributeonnewenvironment("distributeonnewenvironment");34obj.setDistributeonnewenvironmentvalue("distributeonnewenvironmentvalue");35obj.setDistributeonnewcountry("distributeonnewcountry");36obj.setDistributeonnewcountryvalue("distributeonnewcountryvalue");37obj.setDistributeonnewrobot("distributeonnewrobot");38obj.setDistributeonnewrobotvalue("distributeonnewrobotvalue");39obj.setDistributeonnewbrowser("distributeonnewbrowser");40obj.setDistributeonnewbrowservalue("distributeonnewbrowserv

Full Screen

Full Screen

CountryEnvLink

Using AI Code Generation

copy

Full Screen

1package org.cerberus.crud.entity;2public class CountryEnvLink {3 private String system;4 private String country;5 private String environment;6 private String description;7 private String type;8 private String database;9 private String ip;10 private String url;11 private String domain;12 private String dns;13 private String active;14 private String maintenanceact;15 private String maintenancestr;16 private String maintenanceend;17 private String maintenanceenforced;18 private String maintenanceusr;19 private String maintenanceip;20 private String maintenanceDate;21 private String maintenanceTime;22 private String maintenanceeDate;23 private String maintenanceeTime;24 private String maintenanceDuration;25 private String maintenanceRecurrence;26 private String maintenancePeriod;27 private String maintenanceHour;28 private String maintenanceDay;29 private String maintenanceMonth;30 private String maintenanceYear;31 private String maintenanceDayOfWeek;32 private String maintenanceDayOfMonth;33 private String maintenanceMonthOfYear;34 private String maintenanceWeekOfMonth;35 private String maintenanceWeekOfYear;36 private String maintenanceHourOfDay;37 private String maintenanceMinuteOfHour;38 private String maintenanceSecondOfMinute;39 private String maintenanceTimezone;40 private String maintenanceCronDefinition;41 private String maintenanceCronExpression;42 private String maintenanceId;43 private String maintenanceState;44 private String maintenanceAction;45 private String maintenanceMessage;46 private String maintenanceProgress;47 private String maintenanceProgressMessage;48 private String maintenanceProgressPercent;49 private String maintenanceProgressTotal;50 private String maintenanceProgressCurrent;51 private String maintenanceProgressAction;52 private String maintenanceProgressActionStatus;53 private String maintenanceProgressActionResultMessage;54 private String maintenanceProgressActionResultData;55 private String maintenanceProgressActionResultCode;56 private String maintenanceProgressActionResultDescription;57 private String maintenanceProgressActionResultProperty;58 private String maintenanceProgressActionResultPropertyMessage;59 private String maintenanceProgressActionResultPropertyProgress;60 private String maintenanceProgressActionResultPropertyProgressMessage;61 private String maintenanceProgressActionResultPropertyProgressPercent;62 private String maintenanceProgressActionResultPropertyProgressTotal;63 private String maintenanceProgressActionResultPropertyProgressCurrent;64 private String maintenanceProgressActionResultPropertyProgressAction;65 private String maintenanceProgressActionResultPropertyProgressActionStatus;66 private String maintenanceProgressActionResultPropertyProgressActionResultMessage;67 private String maintenanceProgressActionResultPropertyProgressActionResultData;

Full Screen

Full Screen

CountryEnvLink

Using AI Code Generation

copy

Full Screen

1import com.mycompany.myapp.domain.CountryEnvLink;2import com.mycompany.myapp.domain.CountryEnvLink;3import com.mycompany.myapp.domain.CountryEnvLink;4import com.mycompany.myapp.domain.CountryEnvLink;5import com.mycompany.myapp.domain.CountryEnvLink;6import com.mycompany.myapp.domain.CountryEnvLink;7import com.mycompany.myapp.domain.CountryEnvLink;

Full Screen

Full Screen

CountryEnvLink

Using AI Code Generation

copy

Full Screen

1package org.cerberus.crud.entity;2import org.cerberus.crud.entity.CountryEnvLink;3import java.util.List;4import java.util.ArrayList;5import java.util.Iterator;6import java.util.ListIterator;7import java.util.List;8import java.util.ArrayList;9import java.util.Iterator;10import java.util.ListIterator;11public class CountryEnvLink {12 private String system;13 private String country;14 private String environment;15 private String type;16 private String database;17 private String ip;18 private String domain;19 private String url;20 private String urlLogin;21 private String urlLogout;22 private String description;23 private String active;24 private int poolSize;25 private int retryNb;26 private int retryPeriod;27 private int timeout;28 private String maintenanceAct;29 private String maintenanceStr;30 private String maintenanceEnd;31 private String maintenanceIp;32 private String maintenanceUrl;33 private String maintenanceUser;34 private String maintenancePwd;35 private String maintenanceDatabase;36 private String maintenanceSystem;37 private String maintenanceCountry;38 private String maintenanceEnvironment;39 private String maintenanceActive;40 private String maintenanceDescription;41 private String maintenanceType;42 private String maintenanceDatabaseUrl;43 private String maintenanceDatabaseUser;44 private String maintenanceDatabasePwd;45 private String maintenanceDatabaseDriver;46 private String maintenanceDatabasePoolSize;47 private String maintenanceDatabaseTimeout;48 private String maintenanceDatabaseRetryNb;49 private String maintenanceDatabaseRetryPeriod;50 private String maintenanceDatabaseDistribList;51 private String maintenanceDatabaseDistribListFrequency;52 private String maintenanceDatabaseDistribListFormat;53 private String maintenanceDatabaseDistribListHeader;54 private String maintenanceDatabaseDistribListFooter;55 private String maintenanceDatabaseDistribListBody;56 private String maintenanceDatabaseDistribListBodySeparator;57 private String maintenanceDatabaseDistribListBodyColumnSeparator;58 private String maintenanceDatabaseDistribListBodyColumn1;59 private String maintenanceDatabaseDistribListBodyColumn2;60 private String maintenanceDatabaseDistribListBodyColumn3;61 private String maintenanceDatabaseDistribListBodyColumn4;62 private String maintenanceDatabaseDistribListBodyColumn5;63 private String maintenanceDatabaseDistribListBodyColumn6;64 private String maintenanceDatabaseDistribListBodyColumn7;65 private String maintenanceDatabaseDistribListBodyColumn8;66 private String maintenanceDatabaseDistribListBodyColumn9;

Full Screen

Full Screen

CountryEnvLink

Using AI Code Generation

copy

Full Screen

1import org.cerberus.crud.entity.CountryEnvLink;2import org.cerberus.crud.service.impl.CountryEnvLinkService;3CountryEnvLinkService countryEnvLinkService = new CountryEnvLinkService();4CountryEnvLink countryEnvLink = new CountryEnvLink();5countryEnvLink.setSystem("SYSTEM");6countryEnvLink.setCountry("COUNTRY");7countryEnvLink.setEnvironment("ENVIRONMENT");8countryEnvLink.setActive("Y");9countryEnvLinkService.createCountryEnvLink(countryEnvLink);10import org.cerberus.crud.entity.CountryEnvLink;11import org.cerberus.crud.service.impl.CountryEnvLinkService;12CountryEnvLinkService countryEnvLinkService = new CountryEnvLinkService();13CountryEnvLink countryEnvLink = new CountryEnvLink();14countryEnvLink.setSystem("SYSTEM");15countryEnvLink.setCountry("COUNTRY");16countryEnvLink.setEnvironment("ENVIRONMENT");17countryEnvLink.setActive("Y");18countryEnvLinkService.updateCountryEnvLink(countryEnvLink);19import org.cerberus.crud.entity.CountryEnvLink;20import org.cerberus.crud.service.impl.CountryEnvLinkService;21CountryEnvLinkService countryEnvLinkService = new CountryEnvLinkService();22CountryEnvLink countryEnvLink = new CountryEnvLink();

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Cerberus-source automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful