Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions ticketmasterbot.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,15 @@ function deleteAllCookies() {
function SkipPopup()
{
var popupPresent = getElementByXpath('//button[@class = "modal-dialog__button landing-modal-footer__skip-button"]');
var pricingFluctuatePopupPresent = getElementByXpath('//button[@class = "modal-dialog modal-dialog--center edp__modal-dialog pricing-landing__dialog"]');
if(popupPresent)
{
try{ popupPresent.click();}catch(ex){}
}
if(pricingFluctuatePopupPresent)
{
try{ pricingFluctuatePopupPresent.click();}catch(ex){}
}
}

function CheckForFilterPanel(){
Expand Down