public static void checksPresenceElementsInMiniCardInBlocksOfTopProducts() {
$(byXpath("//*[
@class='title_list'] | //*[
@class='top-small-products__title']")).scrollTo();
By sticker = (byCssSelector(".product-list__item__promotion"));
By oldPrice = (byCssSelector(".product-list__item__old-price"));
By image = (byCssSelector(".ovVisLi_image"));
By productName = (byCssSelector(".product-list__item__title"));
By articleNumber = (byCssSelector(".product-list__item__nummer"));
By price = (byCssSelector(".product-list__item__price"));
By infoVatAndDelivery = (byCssSelector(".product-list__item__info"));
for (SelenideElement element : $$(byXpath("//*[contains(
@class,'product-list__item ')]")).filterBy(visible)) {
element.$(sticker).should(visible);
element.$(oldPrice).should(visible);
element.$(image).should(visible);
element.$(productName).should(visible);
element.$(articleNumber).should(visible);
element.$(price).should(visible);
element.$(infoVatAndDelivery).should(visible);
}