These operators check the shop location's country. You can use a two-letter country abbreviation or a full country name, entered in single or double ; for example:
ifQ() .countryIs("United States")
ifQ() .countryNot("US")
.countryIs
ifQ() .countryIs("Turkey") .disappear(Section(11));
// could also be used
// .countryIs("US")
// .countryIs("US","UK", …)
// .countryIs("United States", "UK", …)
.countryNot
ifQ() .countryNot("US") .disappear(Q(51));
// could also be used
// .countryNot("US")
// .countryNot("US","UK", …)
// .countryNot("United States", "UK", …)