• It's recommended to check out the latest log via: the Stats page >> View log >> Tail

PROJECT (event_scrapers), SPIDER (silver_mine_art)

2026-08-05 01:21:28 [scrapy.utils.log] INFO: Scrapy 2.14.1 started (bot: event_scrapers)
2026-08-05 01:21:28 [scrapy.utils.log] INFO: Versions:
{'lxml': '6.0.2',
 'libxml2': '2.14.6',
 'cssselect': '1.3.0',
 'parsel': '1.10.0',
 'w3lib': '2.0.0',
 'Twisted': '25.5.0',
 'Python': '3.12.3 (main, Jun 19 2026, 12:46:00) [GCC 13.3.0]',
 'pyOpenSSL': '25.3.0 (OpenSSL 3.5.4 30 Sep 2025)',
 'cryptography': '46.0.3',
 'Platform': 'Linux-6.8.0-90-generic-x86_64-with-glibc2.39'}
2026-08-05 01:21:28 [scrapy.crawler] DEBUG: Using AsyncCrawlerProcess
2026-08-05 01:21:28 [asyncio] DEBUG: Using selector: EpollSelector
2026-08-05 01:21:28 [scrapy.addons] INFO: Enabled addons:
[]
2026-08-05 01:21:29 [scrapy.utils.log] DEBUG: Using reactor: twisted.internet.asyncioreactor.AsyncioSelectorReactor
2026-08-05 01:21:29 [scrapy.utils.log] DEBUG: Using asyncio event loop: asyncio.unix_events._UnixSelectorEventLoop
2026-08-05 01:21:29 [scrapy.extensions.telnet] INFO: Telnet Password: db154b61004736d0
2026-08-05 01:21:29 [scrapy.middleware] INFO: Enabled extensions:
['scrapy.extensions.corestats.CoreStats',
 'scrapy.extensions.logcount.LogCount',
 'scrapy.extensions.telnet.TelnetConsole',
 'scrapy.extensions.memusage.MemoryUsage',
 'scrapy.extensions.feedexport.FeedExporter',
 'scrapy.extensions.logstats.LogStats']
2026-08-05 01:21:29 [scrapy.crawler] INFO: Overridden settings:
{'BOT_NAME': 'event_scrapers',
 'FEED_EXPORT_ENCODING': 'utf-8',
 'FEED_URI_PARAMS': <function _feed_uri_params at 0x7a90101334c0>,
 'LOG_FILE': '/root/event-list-scraping/logs/event_scrapers/silver_mine_art/356f9639905b11f180d10050565fa5d9.log',
 'NEWSPIDER_MODULE': 'event_scrapers.spiders',
 'REQUEST_FINGERPRINTER_CLASS': 'scrapy_zyte_api.ScrapyZyteAPIRequestFingerprinter',
 'SPIDER_MODULES': ['event_scrapers.spiders']}
2026-08-05 01:21:29 [scrapy_zyte_api.handler] INFO: Using a Zyte API key starting with 'ff9baec'
2026-08-05 01:21:29 [scrapy_zyte_api.handler] INFO: Using a Zyte API key starting with 'ff9baec'
2026-08-05 01:21:29 [scrapy.middleware] INFO: Enabled downloader middlewares:
['scrapy.downloadermiddlewares.offsite.OffsiteMiddleware',
 'scrapy.downloadermiddlewares.httpauth.HttpAuthMiddleware',
 'scrapy.downloadermiddlewares.downloadtimeout.DownloadTimeoutMiddleware',
 'scrapy.downloadermiddlewares.defaultheaders.DefaultHeadersMiddleware',
 'scrapy.downloadermiddlewares.useragent.UserAgentMiddleware',
 'scrapy.downloadermiddlewares.retry.RetryMiddleware',
 'scrapy.downloadermiddlewares.redirect.MetaRefreshMiddleware',
 'scrapy.downloadermiddlewares.httpcompression.HttpCompressionMiddleware',
 'scrapy.downloadermiddlewares.redirect.RedirectMiddleware',
 'scrapy_zyte_api.ScrapyZyteAPIDownloaderMiddleware',
 'scrapy.downloadermiddlewares.cookies.CookiesMiddleware',
 'scrapy.downloadermiddlewares.httpproxy.HttpProxyMiddleware',
 'scrapy.downloadermiddlewares.stats.DownloaderStats']
2026-08-05 01:21:29 [scrapy.middleware] INFO: Enabled spider middlewares:
['scrapy.spidermiddlewares.start.StartSpiderMiddleware',
 'scrapy.spidermiddlewares.httperror.HttpErrorMiddleware',
 'scrapy_zyte_api.ScrapyZyteAPISpiderMiddleware',
 'scrapy.spidermiddlewares.referer.RefererMiddleware',
 'scrapy.spidermiddlewares.urllength.UrlLengthMiddleware',
 'scrapy.spidermiddlewares.depth.DepthMiddleware',
 'scrapy_zyte_api.ScrapyZyteAPIRefererSpiderMiddleware']
2026-08-05 01:21:29 [scrapy.middleware] INFO: Enabled item pipelines:
['event_scrapers.pipelines.EventScrapersPipeline']
2026-08-05 01:21:29 [py.warnings] WARNING: /root/.venv/lib/python3.12/site-packages/scrapy/pipelines/__init__.py:41: ScrapyDeprecationWarning: EventScrapersPipeline.open_spider() requires a spider argument, this is deprecated and the argument will not be passed in future Scrapy versions. If you need to access the spider instance you can save the crawler instance passed to from_crawler() and use its spider attribute.
  self._check_mw_method_spider_arg(pipe.open_spider)

2026-08-05 01:21:29 [py.warnings] WARNING: /root/.venv/lib/python3.12/site-packages/scrapy/pipelines/__init__.py:47: ScrapyDeprecationWarning: EventScrapersPipeline.process_item() requires a spider argument, this is deprecated and the argument will not be passed in future Scrapy versions. If you need to access the spider instance you can save the crawler instance passed to from_crawler() and use its spider attribute.
  self._check_mw_method_spider_arg(pipe.process_item)

2026-08-05 01:21:29 [scrapy.core.engine] INFO: Spider opened
2026-08-05 01:21:29 [py.warnings] WARNING: /root/.venv/lib/python3.12/site-packages/scrapy/core/spidermw.py:490: ScrapyDeprecationWarning: event_scrapers.spiders.silver_mine_art.ListingSpider defines the deprecated start_requests() method. start_requests() has been deprecated in favor of a new method, start(), to support asynchronous code execution. start_requests() will stop being called in a future version of Scrapy. If you use Scrapy 2.13 or higher only, replace start_requests() with start(); note that start() is a coroutine (async def). If you need to maintain compatibility with lower Scrapy versions, when overriding start_requests() in a spider class, override start() as well; you can use super() to reuse the inherited start() implementation without copy-pasting. See the release notes of Scrapy 2.13 for details: https://docs.scrapy.org/en/2.13/news.html
  warn(

2026-08-05 01:21:29 [silver_mine_art] INFO: Sending scraped events to prod API
2026-08-05 01:21:29 [scrapy.extensions.logstats] INFO: Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)
2026-08-05 01:21:29 [scrapy.extensions.telnet] INFO: Telnet console listening on 127.0.0.1:6023
2026-08-05 01:21:32 [scrapy.core.engine] DEBUG: Crawled (200) <GET https://silvermineart.asapconnected.com/#CourseIndex> (referer: None)
2026-08-05 01:21:32 [selenium.webdriver.common.selenium_manager] DEBUG: Selenium Manager binary found at: /root/.venv/lib/python3.12/site-packages/selenium/webdriver/common/linux/selenium-manager
2026-08-05 01:21:32 [selenium.webdriver.common.selenium_manager] DEBUG: Executing process: /root/.venv/lib/python3.12/site-packages/selenium/webdriver/common/linux/selenium-manager --browser chrome --language-binding python --output json
2026-08-05 01:21:40 [selenium.webdriver.common.selenium_manager] DEBUG: Driver path: /usr/bin/chromedriver
2026-08-05 01:21:40 [selenium.webdriver.common.selenium_manager] DEBUG: Browser path: /usr/bin/chromium-browser
2026-08-05 01:21:40 [selenium.webdriver.common.service] DEBUG: Started executable: `/usr/bin/chromedriver` in a child process with pid: 2333942 using 0 to output -3
2026-08-05 01:21:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session {'capabilities': {'firstMatch': [{}], 'alwaysMatch': {'browserName': 'chrome', 'pageLoadStrategy': <PageLoadStrategy.normal: 'normal'>, 'browserVersion': None, 'goog:chromeOptions': {'extensions': [], 'binary': '/usr/bin/chromium-browser', 'args': ['--headless=new', '--disable-gpu', '--no-sandbox', '--window-size=1920,1080']}}}}
2026-08-05 01:21:41 [urllib3.connectionpool] DEBUG: Starting new HTTP connection (1): localhost:46573
2026-08-05 01:21:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session HTTP/1.1" 200 0
2026-08-05 01:21:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"capabilities":{"acceptInsecureCerts":false,"browserName":"chrome","browserVersion":"150.0.7871.128","chrome":{"chromedriverVersion":"150.0.7871.128 (81891e5ca708047763816c778216799ef14c66cb-refs/branch-heads/7871_124@{#9})","userDataDir":"/tmp/org.chromium.Chromium.scoped_dir.jwR5Cp"},"fedcm:accounts":true,"goog:chromeOptions":{"debuggerAddress":"localhost:46341"},"goog:processID":2334013,"networkConnectionEnabled":false,"pageLoadStrategy":"normal","platformName":"linux","proxy":{},"setWindowRect":true,"strictFileInteractability":false,"timeouts":{"implicit":0,"pageLoad":300000,"script":30000},"unhandledPromptBehavior":"dismiss and notify","webauthn:extension:credBlob":true,"webauthn:extension:largeBlob":true,"webauthn:extension:minPinLength":true,"webauthn:extension:prf":true,"webauthn:virtualAuthenticators":true},"sessionId":"6da96bd5e711106170043987a6fdb485"}} | headers=HTTPHeaderDict({'Content-Length': '886', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseIndex'}
2026-08-05 01:21:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/elements {'using': 'css selector', 'value': 'a[courseid][href^="#CourseID="]'}
2026-08-05 01:21:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/elements HTTP/1.1" 200 0
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":[{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.242"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.243"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.244"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.245"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.246"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.247"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.248"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.249"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.250"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.251"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.252"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.253"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.254"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.255"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.256"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.257"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.258"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.259"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.260"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.261"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.262"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.263"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.264"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.265"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.266"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.267"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.268"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.269"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.270"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.236"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.237"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.271"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.272"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.273"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.274"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.275"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.276"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.277"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.278"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.279"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.280"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.281"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.282"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.283"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.284"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.285"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.286"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.287"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.288"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.289"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.290"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.291"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.292"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.293"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.294"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.295"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.296"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.297"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.298"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.299"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.300"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.301"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.302"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.303"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.304"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.305"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.306"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.307"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.308"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.309"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.310"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.311"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.312"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.313"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.314"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.315"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.316"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.317"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.318"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.319"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.320"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.321"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.322"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.323"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.324"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.325"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.326"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.327"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.328"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.329"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.330"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.331"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.332"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.333"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.334"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.335"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.336"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.337"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.338"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.238"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.339"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.340"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.341"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.342"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.343"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.344"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.345"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.346"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.347"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.348"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.349"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.350"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.351"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.352"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.353"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.354"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.355"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.356"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.357"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.358"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.359"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.360"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.361"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.362"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.363"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.364"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.365"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.366"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.367"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.368"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.369"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.370"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.371"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.372"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.373"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.374"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.375"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.376"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.377"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.378"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.379"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.380"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.381"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.382"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.383"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.384"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.385"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.386"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.387"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.239"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.388"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.389"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.390"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.391"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.392"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.393"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.394"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.395"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.396"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.397"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.398"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.399"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.400"},{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.401"}]} | headers=HTTPHeaderDict({'Content-Length': '19363', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': "\n                return Array.from(\n                    document.querySelectorAll('a[courseid][href^...", 'args': []}
2026-08-05 01:21:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":["319166","243611","286312","168511","260018","191690","321509","191532","316561","328453","321425","328454","322668","191505","166014","196359","280406","328455","168502","302318","326040","168503","321409","309086","197762","328747","294702","277878","328408","328456","321523","321525","328457","321690","191691","190816","328458","328461","280394","321422","328460","321641","328459","321413","302803","328462","328445","168501","316559","328443","322736","316596","308866","264889","328463","264800","253769","296149","328464","288858","308494","253630","190933","219014","316494","321527","166018","328446","316563","269915","328404","319170","328465","326084","308914","296090","308915","328466","292746","326044","321476","321477","326046","328467","191684","191866","322743","166009","209906","286345","254820","168499","328468","328469","220727","326048","319513","166024","321417","321501","253975","322620","328470","195838","242326","328471","166016","235057","328472","166008","253486","190843","326049","176918","321627","299865","166017","191681","328473","328474","328447","328448","196510","302827","328475","328483","321534","269900","283378","328476","190837","328477","302895","302897","328478","166028","321643","328479","248774","328480","294641","316545","190847","321612","328481","273940","215027","316465","316467","326055","176894","319354","283509","319357","308415","190840","328484","319313","209835","328485","328486","288987","328487","166010"]} | headers=HTTPHeaderDict({'Content-Length': '1487', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=319166'}
2026-08-05 01:21:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:21:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=319166"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:21:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:21:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:21:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:21:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.403"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:21:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.403"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.403/text {}
2026-08-05 01:21:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.403/text HTTP/1.1" 200 0
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"3D Felting: Sculpt Your Own Felted Creatures & Creations\nBring your imagination to life in this hands-on felting workshop! Learn how to build three-dimensional animals, characters, or decorative shapes using wool and felting tools. You’ll explore techniques for shaping, detailing, and adding personality to your creations—perfect for beginners and experienced makers alike.\nAdditional Information:\nList of Materials: S.Giuliano Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/21 – 8/22 Fr Sa 01:00 PM – 04:00 PM Giuliano, Samantha 0 & up $205.00 View 11\nREGISTER NOW\n11/13 – 11/14 Fr Sa 09:00 AM – 12:00 PM Giuliano, Samantha 18 & up $205.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '716', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:21:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.403"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.403'}, 'outerHTML']}
2026-08-05 01:21:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"319166\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"319166\" onclick=\"return false;\" href=\"#\">3D Felting: Sculpt Your Own Felted Creatures &amp; Creations\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/fa56da9b-7f05-444e-902f-73ccb970f700_GiulianoS_3DFeltingSculptFeltedCreaturesCreations.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Bring your imagination to life in this hands-on felting workshop! Learn how to build three-dimensional animals, characters, or decorative shapes using wool and felting tools. You’ll explore techniques for shaping, detailing, and adding personality to your creations—perfect for beginners and experienced makers alike.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/S.Giuliano 3D Felting Sculpt Your Own.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">S.Giuliano Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/21 – 8/22\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=137073\">Giuliano, Samantha\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">0 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$205.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3006464\" eventid=\"3006464\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$205.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3006464\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/13 – 11/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=137073\">Giuliano, Samantha\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$205.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066041\" eventid=\"3066041\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$205.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066041\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5564', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=243611'}
2026-08-05 01:21:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:21:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:57 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:21:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:21:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=243611"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:21:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:21:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:21:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:21:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:21:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:21:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.411"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:21:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.411"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.411/text {}
2026-08-05 01:21:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.411/text HTTP/1.1" 200 0
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"A Lunch Bunch Experience\nEnrollment in this program IS NOT automatic. You must call the office if you would like to enroll your child.\nA Lunch Bunch Experience is available free of charge to campers participating in a full-day of camp only. Students participating in a half-day camp may enroll in the lunch period for a fee of $125, if spots are remaining. Priority registration is given to full day campers.\nThe period will be held in an outdoor setting allowing campers to eat lunch in a safe and supervised environment. If there is bad weather, students will eat indoors. Children will be able to have lunch, engage in free draw, small art projects and board games during the hour. The campers will be escorted to and from their lunch period by a camp assistant. Campers should bring a nut-free lunch and something to drink. Silvermine Arts Center does not provide lunch or snacks.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/3 – 8/7 Mo Tu We Th Fr 12:00 PM – 01:00 PM , 3 - 18 $0.00 View 4\nREAD ONLY\n8/10 – 8/14 Mo Tu We Th Fr 12:00 PM – 01:00 PM , 3 - 18 $0.00 View 1\nREAD ONLY\n8/17 – 8/21 Mo Tu We Th Fr 12:00 PM – 01:00 PM , 3 - 18 $0.00 View 8\nREAD ONLY"} | headers=HTTPHeaderDict({'Content-Length': '1204', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:21:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.411"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:21:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.411'}, 'outerHTML']}
2026-08-05 01:21:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:21:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"243611\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"243611\" onclick=\"return false;\" href=\"#\">A Lunch Bunch Experience\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/167148535674517_youth camp (93).jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"text-align: left\">\u003Cstrong>\u003Cem>\u003Cspan style=\"text-decoration: underline; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Enrollment in this program IS NOT automatic. You must call the office if you would like to enroll your child.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp style=\"text-align: left\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">A Lunch Bunch Experience is available&nbsp;\u003C/span>\u003Cstrong>\u003Cem>\u003Cspan style=\"text-decoration: underline; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">free of charge to campers participating in a full-day of camp only\u003C/span>\u003C/em>\u003C/strong>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">. Students participating in a half-day camp may enroll in the lunch period for a fee of $125, if spots are remaining.&nbsp;\u003C/span>\u003Cstrong>\u003Cspan style=\"text-decoration: underline; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Priority registration is given to full day campers.\u003C/span>\u003C/strong>\u003C/p>\u003Cp style=\"text-align: left\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">The period will be held in an outdoor setting allowing campers to eat lunch in a safe and supervised environment. If there is bad weather, students will eat indoors.&nbsp;Children will be able to have lunch, engage in free draw, small art projects and board games during the hour. The campers will be escorted to and from their lunch period by a camp assistant. \u003C/span>\u003Cstrong>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Campers should bring a nut-free lunch and something to drink. \u003C/span>\u003Cu>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Silvermine Arts Center does not provide lunch or snacks.\u003C/span>\u003C/u>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/3 – 8/7\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12:00 PM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>, \u003C/td>\n    \n        \u003Ctd class=\"\">3 - 18\u003C/td>\n    \n        \u003Ctd class=\"\">$0.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2961770\" eventid=\"2961770\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">4\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Cspan isdetail=\"false\" class=\"button disabled-2 small full center noicon\">READ ONLY\u003C/span>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/10 – 8/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12:00 PM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>, \u003C/td>\n    \n        \u003Ctd class=\"\">3 - 18\u003C/td>\n    \n        \u003Ctd class=\"\">$0.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2961774\" eventid=\"2961774\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">1\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Cspan isdetail=\"false\" class=\"button disabled-2 small full center noicon\">READ ONLY\u003C/span>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/17 – 8/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12:00 PM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>, \u003C/td>\n    \n        \u003Ctd class=\"\">3 - 18\u003C/td>\n    \n        \u003Ctd class=\"\">$0.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2961776\" eventid=\"2961776\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Cspan isdetail=\"false\" class=\"button disabled-2 small full center noicon\">READ ONLY\u003C/span>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6789', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:21:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=286312'}
2026-08-05 01:22:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=286312"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.422"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.422"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.422/text {}
2026-08-05 01:22:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.422/text HTTP/1.1" 200 0
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Abstract Landscapes & Beyond\nAbstract landscapes are inspired by what exists in real life but are intentionally different, with a focus on basic forms rather than literal interpretations. The natural world has always been a source of wonder and abstract landscapes offer a new way to see it. The approaches to creating an abstract landscape can include simplifying, flattening, or distorting the shapes: reducing the elements, changing naturalistic color to non-literal or symbolic choices, etc. No prior experience required. Suitable for artists who never painted landscapes and for experienced landscape painters.\nAdditional Information:\nList of Materials: N.Karpinskaia Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/22 – 8/23 Sa Su 10:00 AM – 03:00 PM Karpinskaia, Natasha 18 - 99 $305.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '857', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.422"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.422'}, 'outerHTML']}
2026-08-05 01:22:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"286312\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"286312\" onclick=\"return false;\" href=\"#\">Abstract Landscapes &amp; Beyond\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/168313843820538_karpinskaianabstlandscp.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Abstract landscapes are inspired by what exists in real life but are intentionally different, with a focus on basic forms rather than literal interpretations. The natural world has always been a source of wonder and abstract landscapes offer a new way to see it. The approaches to creating an abstract landscape can include simplifying, flattening, or distorting the shapes: reducing the elements, changing naturalistic color to non-literal or symbolic choices, etc. No prior experience required. Suitable for artists who never painted landscapes and for experienced landscape painters.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"color: rgb(51, 51, 51); background-color: rgb(255, 255, 255); letter-spacing: 0.2px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer 2023 /N.Karpinskaia Abstract Landscape  Beyond.pdf\" target=\"_blank\">\u003Cspan style=\"color: rgb(51, 51, 51); background-color: rgb(255, 255, 255); letter-spacing: 0.2px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">N.Karpinskaia Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/22 – 8/23\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 03:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75698\">Karpinskaia, Natasha\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 - 99\u003C/td>\n    \n        \u003Ctd class=\"\">$305.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3006467\" eventid=\"3006467\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$305.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3006467\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4779', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=168511'}
2026-08-05 01:22:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:04 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=168511"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.429"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.429"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:06 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.429/text {}
2026-08-05 01:22:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.429/text HTTP/1.1" 200 0
2026-08-05 01:22:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Abstract Painting\nLEVEL: INTERMEDIATE - ADVANCED\nThis course will explore intellectual elements of abstraction, it is about ideas that are at the core of abstract imagery. It’s objective is to learn how to transfer experiences, concepts and perception of the real world into abstract images. We will experiment with color, shapes, lines, and texture. Some demos, exercises and discussions will also be included. The class is suitable for those who have taken introductory painting courses and have the desire to explore abstraction.\nAdditional Information:\nList of Materials: N.Karpinskaia Supply List.pdf\n*Class will not meet 11/6, 11/27*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/18 – 12/4 Fr 09:30 AM – 12:30 PM Karpinskaia, Natasha 18 & up $555.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '809', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.429"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.429'}, 'outerHTML']}
2026-08-05 01:22:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"168511\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"168511\" onclick=\"return false;\" href=\"#\">Abstract Painting\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/177013530937881_karpinskiain_abstractpainting.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv class=\"page\" style=\"color: rgb(0, 0, 0); font-family: -webkit-standard; letter-spacing: normal\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp style=\"color: rgb(0, 0, 0); font-family: -webkit-standard\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: INTERMEDIATE - ADVANCED\u003C/span>\u003C/p>\u003Cdiv>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This course will explore intellectual elements of abstraction, it is about ideas that are at the core of abstract imagery. It’s objective is to learn how to transfer experiences, concepts and perception of the real world into abstract images. We will experiment with color, shapes, lines, and texture. Some demos, exercises and discussions will also be included. The class is suitable for those who have taken introductory painting courses and have the desire to explore abstraction.\u003C/span>\u003Cbr>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/N.Karpinskaia Abstract Painting.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">N.Karpinskaia Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 11/6, 11/27*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/18 – 12/4\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75698\">Karpinskaia, Natasha\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$555.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065949\" eventid=\"3065949\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$555.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065949\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5233', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=260018'}
2026-08-05 01:22:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=260018"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.438"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.438"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.438/text {}
2026-08-05 01:22:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.438/text HTTP/1.1" 200 0
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Abstract Painting: Dynamics of Symbols and Color in Composition\nLEVEL: ALL LEVELS\nDevelop your own unique personal vision as an abstract painter and explore new ideas via the art of the creative process. Focus will be on the abstracted from the representative  - figure, landscape or floral in applying one’s personal perception, temperament and aesthetical beauty for more expressive freedom in chosen subject. There will be presentations of color and compositional theory, in addition to playful exercises in working large. Students at all levels are welcome to work in any medium of their choice. Bring an Artist Journal and any supplies you are already working in.\nAdditional Information:\nList of Materials: D.Wright Supply List.pdf\n*Class will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/16 – 12/2 We 09:00 AM – 12:00 PM Wright, Dmitri 18 & up $605.00 View 12\nREGISTER NOW\n9/16 – 12/2 We 01:00 PM – 04:00 PM Wright, Dmitri 18 & up $605.00 View 9\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1020', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.438"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.438'}, 'outerHTML']}
2026-08-05 01:22:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"260018\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"260018\" onclick=\"return false;\" href=\"#\">Abstract Painting: Dynamics of Symbols and Color in Composition\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/d33f1749-7e2c-4dfc-bd4b-336438aa0a54_6.9.2023(2).jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Develop your own unique personal vision as an abstract painter and explore new ideas via the art of the creative process. Focus will be on the abstracted from the representative &nbsp;- figure, landscape or floral in applying one’s personal perception, temperament and aesthetical beauty for more expressive freedom in chosen subject. There will be presentations of color and compositional theory, in addition to playful exercises in working large.&nbsp;\u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">S\u003C/span>\u003Ci>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">tudents at all levels are welcome to work in any medium of their choice. Bring an Artist Journal and any supplies you are already working in.\u003C/span>\u003C/i>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: rgb(0, 0, 0)\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/D.Wright Courses.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: rgb(0, 0, 0)\">D.Wright Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: rgb(0, 0, 0)\">*Class will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75734\">Wright, Dmitri\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$605.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065915\" eventid=\"3065915\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$605.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065915\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75734\">Wright, Dmitri\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$605.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065922\" eventid=\"3065922\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">9\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$605.00\" openslots=\"9\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065922\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6416', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=191690'}
2026-08-05 01:22:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:11 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=191690"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.449"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.449"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.449/text {}
2026-08-05 01:22:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.449/text HTTP/1.1" 200 0
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Acrylic Abstract Painting\nLEVEL: INTERMEDIATE - ADVANCED\nStudents will develop a working knowledge of abstract painting that challenges them to see and interpret in new ways. Using acrylics students will learn color, line, texture, movement, and form, through individual instruction. Creating a new painting is a challenging and unique experience, involving constant experimentation with intuition and automatism, taking you on a multidimensional journey of self-discovery.\nAdditional Information:\nList of Materials: A.Razin Supply List.pdf\n*Class will not meet 11/26*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/17 – 12/3 Th 01:00 PM – 04:00 PM Razin, Aleksandr 18 & up $605.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '732', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.449"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.449'}, 'outerHTML']}
2026-08-05 01:22:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"191690\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"191690\" onclick=\"return false;\" href=\"#\">Acrylic Abstract Painting\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/164391884478245_01_aleksandr_razin_abstractpainting.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv class=\"page\" style=\"color: rgb(0, 0, 0); letter-spacing: normal\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp style=\"font-family: -webkit-standard\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: INTERMEDIATE - ADVANCED\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students will develop a working knowledge of abstract painting that challenges them to see and interpret in new ways. Using acrylics students will learn color, line, texture, movement, and form, through individual instruction. \u003C/span>\u003Cspan style=\"background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Creating a new painting is a challenging&nbsp;and unique experience, involving constant experimentation with intuition and automatism, taking you on a multidimensional journey of self-discovery.\u003C/span>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv class=\"page\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cdiv>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/A.Razin Acrylic Abstract Painting.pdf\" target=\"_blank\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">A.Razin Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">*Class will not meet 11/26*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75720\">Razin, Aleksandr\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$605.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065940\" eventid=\"3065940\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$605.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065940\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5363', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321509'}
2026-08-05 01:22:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321509"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.457"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.457"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.457/text {}
2026-08-05 01:22:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.457/text HTTP/1.1" 200 0
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Acrylic Painting: Still Life (Ages: 12-14)\nBeginner to intermediate acrylic painting class going over the basics of acrylic paint, how to start and manipulate this medium. Create a composition from life observation, a classic painting study. Students use brushes, palette knives, analyze color, and mix paint to create their own image. The course encourages group critique and discussion, and provides one on one instructor feedback.\nAdditional Information:\nPlease pack a water bottle as well as a peanut free snack\nStudio Attire: Acrylic paint can stain clothing, please wear clothing you do not mind painting in or wear an apron. Additionally, please wear closed toed shoes.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/3 – 8/7 Mo Tu We Th Fr 01:00 PM – 04:00 PM Harvey, Evelyn 12 - 15 $465.00 View 6\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1001', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.457"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.457'}, 'outerHTML']}
2026-08-05 01:22:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321509\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321509\" onclick=\"return false;\" href=\"#\">Acrylic Painting: Still Life (Ages: 12-14)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/5a4038ea-0768-45b1-91d4-8620fc5a60e0_E.Harvey4.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Beginner to intermediate acrylic painting class going over the basics of acrylic paint, how to start and manipulate this medium. Create a composition from life observation, a classic painting study. Students use brushes, palette knives, analyze color, and mix paint to create their own image. The course encourages group critique and discussion, and provides one on one instructor feedback.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Please pack a water bottle as well as a peanut free snack\u003C/span>\u003C/p>\u003Cp style=\"line-height: normal\" class=\"MsoNormal\">\u003Cspan style=\"letter-spacing: .15pt; background: white; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Studio Attire: Acrylic paint can stain clothing, please wear clothing you do not mind painting in or wear an apron. Additionally, please wear closed toed shoes.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/3 – 8/7\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=125261\">Harvey, Evelyn\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">12 - 15\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2957942\" eventid=\"2957942\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">6\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"6\" registertype=\"register\" onclick=\"return false;\" eventid=\"2957942\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6136', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=191532'}
2026-08-05 01:22:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:18 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=191532"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.466"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.466"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.466/text {}
2026-08-05 01:22:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.466/text HTTP/1.1" 200 0
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"All Levels: Metal Sculpture\nLEVEL: ALL LEVELS\nAll levels will learn the methods and techniques to create traditional, contemporary and functional three-dimensional pieces of art. There will be demonstrations of various pieces of equipment, including oxy-acetylene and electric arc welding. Among many other lessons, forging, will introduce students to the concept of annealing and hardening of metal. Students should wear work boots, long sleeved cotton clothing, and bring work gloves. Long hair must be tied back. Materials will be discussed at the first class. \nAdditional Information:\nList of Materials: Materials for a first-day guided project are included. For subsequent projects, students will supply their own metals, with a vendor list provided by the instructor to support purchasing appropriate materials for personalized projects.\n*Monday's classes will not meet 9/21, Wednesday's classes will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/14 – 11/30 Mo 01:00 PM – 04:00 PM Perucci, Robert 18 & up $660.00 View 3\nREGISTER NOW\n9/14 – 11/30 Mo 06:00 PM – 09:00 PM Perucci, Robert 18 & up $660.00 View 5\nREGISTER NOW\n9/16 – 12/2 We 09:30 AM – 12:30 PM Perucci, Robert 18 & up $660.00 View 2\nREGISTER NOW\n9/16 – 12/2 We 01:00 PM – 04:00 PM Perucci, Robert 18 & up $660.00 View 2\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1365', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.466"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.466'}, 'outerHTML']}
2026-08-05 01:22:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"191532\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"191532\" onclick=\"return false;\" href=\"#\">All Levels: Metal Sculpture\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/634a1628-ff71-4456-a3bc-13f45d431fa7_Artwork.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv class=\"page\" style=\"color: rgb(0, 0, 0); font-family: -webkit-standard; letter-spacing: normal\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp>\u003Cspan style=\"letter-spacing: normal; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"letter-spacing: normal; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">All levels will learn the methods and techniques to create traditional, contemporary and functional three-dimensional pieces of art. There will be demonstrations of various pieces of equipment, including oxy-acetylene and electric arc welding. Among many other lessons, forging, will introduce students to the concept of annealing and hardening of metal. Students should wear work boots, long sleeved cotton clothing, and bring work gloves. Long hair must be tied back. Materials will be discussed at the first class.&nbsp;\u003C/span>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: Materials for a first-day guided project are included. For subsequent projects, students will supply their own metals, with a vendor list provided by the instructor to support purchasing appropriate materials for personalized projects.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Monday's classes will not meet 9/21, Wednesday's classes will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/14 – 11/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=138340\">Perucci, Robert\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$660.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066085\" eventid=\"3066085\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">3\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$660.00\" openslots=\"3\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066085\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/14 – 11/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">06:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=138340\">Perucci, Robert\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$660.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065896\" eventid=\"3065896\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">5\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$660.00\" openslots=\"5\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065896\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=138340\">Perucci, Robert\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$660.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065916\" eventid=\"3065916\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">2\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$660.00\" openslots=\"2\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065916\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=138340\">Perucci, Robert\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$660.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065923\" eventid=\"3065923\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">2\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$660.00\" openslots=\"2\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065923\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '8453', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=316561'}
2026-08-05 01:22:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:21 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=316561"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.481"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.481"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:23 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.481/text {}
2026-08-05 01:22:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.481/text HTTP/1.1" 200 0
2026-08-05 01:22:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Art Explorers: Mixed Media Adventures (Ages: 6-9)\nYoung artists will dive into a world of creativity in this playful and engaging mixed media course. Using materials like paint, pencil, pastels, fabric, and clay, students will explore painting, drawing, collage, and sculpture while learning about different themes and art styles. Each project encourages imagination and self-expression, while gently building technical skills in a fun, supportive studio environment. Perfect for curious minds who love to make, mix, and create!\nAdditional Information:\nList of Materials: All materials are provided for this offering.\n*Class will not meet 11/26*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/17 – 12/3 Th 04:30 PM – 06:30 PM Waters, Nell 6 - 10 $530.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '803', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.481"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.481'}, 'outerHTML']}
2026-08-05 01:22:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"316561\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"316561\" onclick=\"return false;\" href=\"#\">Art Explorers: Mixed Media Adventures (Ages: 6-9)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/175553014338856_watersn_explorersmixedmedia.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Young artists will dive into a world of creativity in this playful and engaging mixed media course. Using materials like paint, pencil, pastels, fabric, and clay, students will explore painting, drawing, collage, and sculpture while learning about different themes and art styles. Each project encourages imagination and self-expression, while gently building technical skills in a fun, supportive studio environment. Perfect for curious minds who love to make, mix, and create!\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 11/26*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">04:30 PM – 06:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=132562\">Waters, Nell\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">6 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$530.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065944\" eventid=\"3065944\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$530.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065944\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4462', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328453'}
2026-08-05 01:22:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328453"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.490"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.490"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.490/text {}
2026-08-05 01:22:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.490/text HTTP/1.1" 200 0
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Art Mashup Mondays (Ages: 8-11)\nGet ready to mix it up and get creative! Art Mashup Mondays is a fun, hands-on art class where young artists explore a different medium and project each week. From painting and drawing to sculpture, collage, mixed media, and more, every class offers a new creative adventure. Students will learn about a variety of artists, art styles, and cultural art forms, drawing inspiration from everything under the sun! Students will experiment with a variety of materials and techniques while developing artistic skills, self-expression, problem-solving, and confidence. Projects are designed to be engaging, age-appropriate, and open-ended, allowing each child to bring their own unique ideas to life. Whether your child loves to paint, build, draw, or simply create, Art Mashup Mondays provides a supportive environment where imagination can thrive and every week brings something new to discover.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nList of Materials: All materials are provided for this offering.\n*Class will not meet 10/12, 10/19*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/28 – 11/30 Mo 04:30 PM – 06:30 PM Waters, Nell 8 - 12 $420.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1273', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.490"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.490'}, 'outerHTML']}
2026-08-05 01:22:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328453\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328453\" onclick=\"return false;\" href=\"#\">Art Mashup Mondays (Ages: 8-11)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: none;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"\" alt=\"{imageAltText}\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\" style=\"display: none;\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Get ready to mix it up and get creative! Art Mashup Mondays is a fun, hands-on art class where young artists explore a different medium and project each week. From painting and drawing to sculpture, collage, mixed media, and more, every class offers a new creative adventure. Students will learn about a variety of artists, art styles, and cultural art forms, drawing inspiration from everything under the sun! Students will experiment with a variety of materials and techniques while developing artistic skills, self-expression, problem-solving, and confidence. Projects are designed to be engaging, age-appropriate, and open-ended, allowing each child to bring their own unique ideas to life. Whether your child loves to paint, build, draw, or simply create, Art Mashup Mondays provides a supportive environment where imagination can thrive and every week brings something new to discover.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 10/12, 10/19*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/28 – 11/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">04:30 PM – 06:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=132562\">Waters, Nell\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">8 - 12\u003C/td>\n    \n        \u003Ctd class=\"\">$420.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065981\" eventid=\"3065981\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$420.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065981\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5070', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321425'}
2026-08-05 01:22:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:29 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321425"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.493"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.493"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.493/text {}
2026-08-05 01:22:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.493/text HTTP/1.1" 200 0
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"August Light in Landscape Painting: Mixed Media Painting on Canvas, Drawing, Clay (Ages: 5-10)\nWhere painting and clay sculpting are included every week, mARTa's Summer Art Studio encourages open ended experimentation, creative expression, exploration, and appreciation, of art. While building friendships and learning about the properties of art materials, children are guided to engage with imagination, and to contribute meaning to artwork. They will be introduced to a variety of techniques while exploring play in art, and they will develop their creative abilities to self-express and see and experience the world in new ways. Each day will include a variety of materials, surprises, outdoor recess with games and stories about well-known artists. Art materials may include watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, things that shine, beads, paint markers, more. Gentle discussions about the artwork in progress and art history will be introduced.\nThroughout the week children may work in the art studio, explore the lush Silvermine outdoor environment, and visit the Silvermine galleries & exhibitions. mARTa's sensory rich studio environment is designed to make one's learning more complex while supporting imagination and play in a caring environment. It's a place where children will develop meaningful connections to self and their ever-changing surrounding environment. All materials will be supplied.\nAdditional Information:\nPlease pack a peanut free snack and drink. Please bring a sturdy container or box, labeled with student’s first & last name to transport clay objects home.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/17 – 8/21 Mo Tu We Th Fr 01:00 PM – 04:00 PM Kot, Marta Violette 5 - 11 $465.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1952', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.493"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.493'}, 'outerHTML']}
2026-08-05 01:22:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321425\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321425\" onclick=\"return false;\" href=\"#\">August Light in Landscape Painting: Mixed Media Painting on Canvas, Drawing, Clay (Ages: 5-10)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/b8d279e1-e490-4730-bd7d-479b8672b7b9_KotM_AugustLightLandscapePainting Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Where painting and clay sculpting are included every week, mARTa's Summer Art Studio encourages open ended experimentation, creative expression, exploration, and appreciation, of art. While building friendships and learning about the properties of art materials, children are guided to engage with imagination, and to contribute meaning to artwork. They will be introduced to a variety of techniques while exploring play in art, and they will develop their creative abilities to self-express and see and experience the world in new ways. Each day will include a variety of materials, surprises, outdoor recess with games and stories about well-known artists. Art materials may include watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, things that shine, beads, paint markers, more. Gentle discussions about the artwork in progress and art history will be introduced.\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Throughout the week children may work in the art studio, explore the lush Silvermine outdoor environment, and visit the Silvermine galleries &amp; exhibitions. mARTa's sensory rich studio environment is designed to make one's learning more complex while supporting imagination and play in a caring environment. It's a place where children will develop meaningful connections to self and their ever-changing surrounding environment. All materials will be supplied.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Please pack a peanut free snack and drink. Please bring a sturdy container or box, labeled with student’s first &amp; last name to transport clay objects home.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/17 – 8/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2957236\" eventid=\"2957236\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"0\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2957236\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '7222', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328454'}
2026-08-05 01:22:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:32 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328454"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.500"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.500"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.500/text {}
2026-08-05 01:22:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.500/text HTTP/1.1" 200 0
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Autumn Flowers: Mixed Media Painting (Ages: 5-10)\nPractice sketching and drawing and create a beautiful painting using a variety of materials. Seasonal flowers will be taken apart with personal meaning and imagination.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: All materials are provided for this offering. Please bring a peanut free-snack.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/17 – 10/17 Sa 09:00 AM – 12:30 PM Kot, Marta Violette 5 - 11 $175.00 View 15\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '576', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.500"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.500'}, 'outerHTML']}
2026-08-05 01:22:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328454\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328454\" onclick=\"return false;\" href=\"#\">Autumn Flowers: Mixed Media Painting (Ages: 5-10)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/8fba0117-3c1b-4ab1-b271-98e94682a047_KotM_AutumnFlowersMixedMedia Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Practice sketching and drawing and create a beautiful painting using a variety of materials. Seasonal flowers will be taken apart with personal meaning and imagination.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering. Please bring a peanut free-snack.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/17 – 10/17\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$175.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066005\" eventid=\"3066005\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">15\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$175.00\" openslots=\"15\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066005\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4245', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=322668'}
2026-08-05 01:22:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:36 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=322668"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.506"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.506"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.506/text {}
2026-08-05 01:22:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.506/text HTTP/1.1" 200 0
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Bas Relief Casting from Nature\nDuring this one day workshop students will be introduced to bas (low) relief casting using clay, plaster and actual plant materials. The form and texture of the plant emerges from a smooth background creating a subtle impression. Each student will create one 5\" x 7\" relief - display and finishing will also be covered.\nAdditional Information:\nStudents should bring:\nSmall vegetable oil or Vaseline\nPlant materials\nFace masks\nNice to have: tweezers, hammer\nTape\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/15 – 8/15 Sa 10:00 AM – 03:00 PM Hyon, Nash 18 & up $300.00 View 9\nREGISTER NOW\n10/3 – 10/3 Sa 10:00 AM – 03:00 PM Hyon, Nash 18 & up $300.00 View 9\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '742', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.506"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.506'}, 'outerHTML']}
2026-08-05 01:22:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"322668\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"322668\" onclick=\"return false;\" href=\"#\">Bas Relief Casting from Nature\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/8393a2e5-2ce4-4560-bdf0-ed5465ff6eb2_HyonN_BasReliefCasting.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 14px\">During this one day workshop students will be introduced to bas (low) relief casting using clay, plaster and actual plant materials. The form and texture of the plant emerges from a smooth background creating a subtle impression. Each student will create one 5\" x 7\" relief - display and finishing will also be covered.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">Students should bring:\u003C/span>\u003C/p>\u003Cul>\u003Cli>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">Small vegetable oil or Vaseline\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">Plant materials\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">Face masks\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">Nice to have: \u003C/span>\u003Cspan style=\"line-height: 107%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">tweezers, hammer\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">Tape\u003C/span>\u003C/p>\u003C/li>\u003C/ul>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/15 – 8/15\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 03:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$300.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3006460\" eventid=\"3006460\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">9\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$300.00\" openslots=\"9\" registertype=\"register\" onclick=\"return false;\" eventid=\"3006460\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/3 – 10/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 03:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$300.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065988\" eventid=\"3065988\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">9\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$300.00\" openslots=\"9\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065988\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6239', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=191505'}
2026-08-05 01:22:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:39 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=191505"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.516"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.516"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.516/text {}
2026-08-05 01:22:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.516/text HTTP/1.1" 200 0
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Basic Drawing & Painting\nLEVEL: BEGINNER\nThis course is for the beginner or returning student to learn the fundamentals of drawing and painting. We begin with basic sketching techniques enabling students to accurately record what they see, and the second half of the course will introduce painting, color mixing, paint application, glazing, texture, and aerial and linear perspective. These sessions will be aimed at creating a still life and landscape.\nAdditional Information:\nList of Materials: C.Guerin Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/24 – 10/29 Th 01:00 PM – 04:00 PM Guerin, C.J. 18 & up $365.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '681', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.516"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.516'}, 'outerHTML']}
2026-08-05 01:22:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"191505\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"191505\" onclick=\"return false;\" href=\"#\">Basic Drawing &amp; Painting\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/4bdfd9b2-4d2a-425c-ae7f-4b01770bc5e8_Guerin.C.J_BasicDrawingPainting.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">LEVEL: BEGINNER\u003C/span>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">This course is for the beginner or returning student to learn the fundamentals of drawing and painting. We begin with basic sketching techniques enabling students to accurately record what they see, and the second half of the course will introduce painting, color mixing, paint application, glazing, texture, and aerial and linear perspective. These sessions will be aimed at creating a still life and landscape.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"text-decoration: underline blue !important\" href=\"files/read?file=files/C.Guerin Basic Painting  Drawing.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">C.Guerin Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/24 – 10/29\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75691\">Guerin, C.J.\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$365.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065973\" eventid=\"3065973\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$365.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065973\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4837', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=166014'}
2026-08-05 01:22:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:43 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=166014"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.522"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.522"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.522/text {}
2026-08-05 01:22:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.522/text HTTP/1.1" 200 0
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Basic Jewelry & Silversmithing\nLEVEL: BEGINNER\nThis introductory class is perfect for anyone who wishes to explore the art of jewelry fabrication. Through demonstrations and hands-on experience, students will be taught basic metalsmithing and jewelry skills. The focus will be on learning these fundamentals – sawing, drilling, filing, riveting, soldering, basic bezel construction, and finishing. Sawing, one of the first tasks can be initially challenging - however, it is a critical element of metal fabrication. \nProjects are tailored to build proficiency with techniques and tools. The first is a cold connection, riveted design for acquiring basic competence with tools and processes, followed by bezel fabrication for a cabochon. No experience necessary. Students who already have some skills will be able to expand their craft with new and different projects.  \nAdditional Information:\nList of Materials: G.Bradshaw Supply List.pdf\nOpen Studio: Open Studio Spring 2026 - Jewelry.pdf\n*Monday's class will not meet 9/21, 10/12*\n*Thursday's class will not meet 11/26*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/14 – 11/30 Mo 10:00 AM – 01:00 PM Bradshaw, Gail 18 & up $575.00 View 5\nREGISTER NOW\n9/17 – 12/3 Th 10:00 AM – 01:00 PM Henriques, Maureen 18 & up $625.00 View 5\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1335', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.522"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.522'}, 'outerHTML']}
2026-08-05 01:22:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"166014\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"166014\" onclick=\"return false;\" href=\"#\">Basic Jewelry &amp; Silversmithing\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/164381336788002_capture.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"letter-spacing: 0.2px; white-space: pre-wrap; background-color: rgb(255, 255, 255); font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: BEGINNER\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"letter-spacing: 0.2px; white-space: pre-wrap; background-color: rgb(255, 255, 255); font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This introductory class is perfect for anyone who wishes to explore the art of jewelry fabrication. Through demonstrations and hands-on experience, students will be taught basic metalsmithing and jewelry skills. The focus will be on learning these fundamentals – sawing, drilling, filing, riveting, soldering, basic bezel construction, and finishing. Sawing, one of the first tasks can be initially challenging - however, it is a critical element of metal fabrication. \u003Cbr>Projects are tailored to build proficiency with techniques and tools. The first is a cold connection, riveted design for acquiring basic competence with tools and processes, followed by bezel fabrication for a cabochon. No experience necessary. Students who already have some skills will be able to expand their craft with new and different projects.  \u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/G.Bradshaw Basic Jewelry  Silversmithing.pdf\" target=\"_blank\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">G.Bradshaw Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003C/div>\u003Cp>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Jewelry_SP2026.pdf\" target=\"_blank\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio Spring 2026 - Jewelry.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">*Monday's class will not meet 9/21, 10/12*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">*Thursday's class will not meet 11/26*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/14 – 11/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75667\">Bradshaw, Gail\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$575.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066017\" eventid=\"3066017\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">5\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$575.00\" openslots=\"5\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066017\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=103494\">Henriques, Maureen\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$625.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065937\" eventid=\"3065937\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">5\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$625.00\" openslots=\"5\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065937\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '7389', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=196359'}
2026-08-05 01:22:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:46 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=196359"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.532"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.532"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.532/text {}
2026-08-05 01:22:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.532/text HTTP/1.1" 200 0
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Basic Techniques of Watercolors\nLEVEL: BEGINNER - INTERMEDIATE\nThis course is for beginners and experienced students who want to progress. Watercolor painting is about technical skills that can be learned. There will be a demonstration at the beginning of each class. How to relax and be comfortable while using watercolors is encouraged. In addition, inventive compositions for still life, figure and landscape will be encouraged.\nAdditional Information:\nList of Materials: A.McFarlane Supply List.pdf\n*Class will not meet 9/21*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/14 – 11/30 Mo 09:30 AM – 12:30 PM McFarlane, Alex 18 & up $605.00 View 10\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '693', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.532"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.532'}, 'outerHTML']}
2026-08-05 01:22:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"196359\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"196359\" onclick=\"return false;\" href=\"#\">Basic Techniques of Watercolors\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/92d1ed5c-0f2a-45ea-b492-90a1cc64aeb6_WC_Beach_View_Smaller for watercolor.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: BEGINNER - INTERMEDIATE\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This course is for beginners and experienced students who want to progress.&nbsp;Watercolor painting is about technical skills that can be learned.&nbsp;There will be a demonstration at the beginning of each class.&nbsp;How to relax and be comfortable while using watercolors is encouraged.&nbsp;In addition, inventive compositions for still life, figure and landscape will be encouraged.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/A.McFarlane%20%20Basic%20Techniques%20of%20Watercolors.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">A.McFarlane Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 9/21*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/14 – 11/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75707\">McFarlane, Alex\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$605.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066080\" eventid=\"3066080\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$605.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066080\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4901', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=280406'}
2026-08-05 01:22:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:50 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=280406"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.538"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.538"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.538/text {}
2026-08-05 01:22:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.538/text HTTP/1.1" 200 0
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Beginner Metalsmithing Camp (Ages: 10-14)\nLearn the basics of metalsmithing and jewelry making! We will explore techniques including sawing, filing, texturing, fusing, soldering, and finishing of metal pieces. You will also learn about cold connections, such as riveting and wire wrapping. Studio safety, setup, and guidelines for all techniques taught will be stressed throughout the week. Students are required to wear closed-toed shoes, and long hair must be tied back.\nRequired Attire:\nClose toed shoes (no sandals)\nTee shirts (no tank tops)\nPants (no shorts)\nLong hair must be tied back\nAdditional Information:\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/17 – 8/21 Mo Tu We Th Fr 09:00 AM – 12:00 PM Henriques, Maureen 10 - 15 $515.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '952', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.538"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.538'}, 'outerHTML']}
2026-08-05 01:22:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"280406\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"280406\" onclick=\"return false;\" href=\"#\">Beginner Metalsmithing Camp (Ages: 10-14)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/167180973397502_img_6491.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"letter-spacing: 0.2px; background-color: rgb(255, 255, 255); font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Learn the basics of metalsmithing and jewelry making! We will explore techniques including sawing, filing, texturing, fusing, soldering, and finishing of metal pieces. You will also learn about cold connections, such as riveting and wire wrapping. Studio safety, setup, and guidelines for all techniques taught will be stressed throughout the week.&nbsp;\u003C/span>\u003Cem>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students are required to wear closed-toed shoes, and long hair must be tied back.\u003C/span>\u003C/em>\u003C/p>\u003Cp>\u003Cem>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Required Attire:\u003C/span>\u003C/em>\u003C/p>\u003Cul>\u003Cli>\u003Cp>\u003Cem>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Close toed shoes (no sandals)\u003C/span>\u003C/em>\u003C/p>\u003C/li>\u003Cli>\u003Cp>\u003Cem>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Tee shirts (no tank tops)\u003C/span>\u003C/em>\u003C/p>\u003C/li>\u003Cli>\u003Cp>\u003Cem>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Pants (no shorts)\u003C/span>\u003C/em>\u003C/p>\u003C/li>\u003Cli>\u003Cp>\u003Cem>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Long hair must be tied back\u003C/span>\u003C/em>\u003C/p>\u003C/li>\u003C/ul>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/17 – 8/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=103494\">Henriques, Maureen\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">10 - 15\u003C/td>\n    \n        \u003Ctd class=\"\">$515.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2957007\" eventid=\"2957007\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$515.00\" openslots=\"-7\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2957007\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6844', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328455'}
2026-08-05 01:22:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:55 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328455"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.548"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.548"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:56 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.548/text {}
2026-08-05 01:22:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.548/text HTTP/1.1" 200 0
2026-08-05 01:22:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Beginner's Sketchbook\nLEVEL: BEGINNER\nFind a medium the speaks to you! In this 5 week course, explore the variety of drawing mediums and mark making tools with charcoal, pen, ink, and pencil. The course focuses on the expressive sensation of creating the line, as well as, reviewing technical skills of observational drawing. Each week focuses on a new medium and/or technique such as line quality, value, relative scale, and composition. One on one feedback is given, and group discussion is encouraged.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nList of Materials: E.Harvey Supply List.pdf\n*Class will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/16 – 10/14 We 01:00 PM – 04:00 PM Harvey, Evelyn 18 & up $325.00 View 10\nREGISTER NOW\n10/28 – 12/2 We 01:00 PM – 04:00 PM Harvey, Evelyn 18 & up $325.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '923', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:22:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.548"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.548'}, 'outerHTML']}
2026-08-05 01:22:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328455\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328455\" onclick=\"return false;\" href=\"#\">Beginner's Sketchbook\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/c03e2600-ff8f-4fc8-9d70-f0b132395aaa_HarveryE_BeginnersSketchbook.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: BEGINNER\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Find a medium the speaks to you! In this 5 week course, explore the variety of drawing mediums and mark making tools with charcoal, pen, ink, and pencil. The course focuses on the expressive sensation of creating the line, as well as, reviewing technical skills of observational drawing. Each week focuses on a new medium and/or technique such as line quality, value, relative scale, and composition. One on one feedback is given, and group discussion is encouraged.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/E.Harvey Beginners Sketchbook.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">E.Harvey Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 10/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=125261\">Harvey, Evelyn\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$325.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065924\" eventid=\"3065924\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$325.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065924\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/28 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=125261\">Harvey, Evelyn\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$325.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066023\" eventid=\"3066023\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$325.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066023\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6282', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=168502'}
2026-08-05 01:22:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:59 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:22:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:22:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=168502"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:22:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:22:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:22:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:22:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:22:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:22:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.565"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.565"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.565/text {}
2026-08-05 01:23:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.565/text HTTP/1.1" 200 0
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Beyond a Pretty Picture\nLEVEL: ALL LEVELS\nYou know you are good, but how do you get your painting to look like the vision in your head? This is tailored to the individual, from how you think about art to how you develop a personalized statement. Learn to analyze your vision and find a seamless balance between concept, composition and technique.\nAdditional Information:\nList of Materials: A.McFarlane Supply List.pdf\n*Class will not meet 11/26*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/17 – 12/3 Th 07:00 PM – 10:00 PM McFarlane, Alex 18 & up $605.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '608', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.565"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.565'}, 'outerHTML']}
2026-08-05 01:23:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"168502\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"168502\" onclick=\"return false;\" href=\"#\">Beyond a Pretty Picture\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/144900_electric_room.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv class=\"page\" style=\"color: rgb(0, 0, 0); font-family: -webkit-standard; letter-spacing: normal\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); letter-spacing: normal; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); letter-spacing: normal; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">You know you are good, but how do you get your painting to look like the vision in your head? This is tailored to the individual, from how you think about art to how you develop a personalized statement. Learn to analyze your vision and find a seamless balance between concept, composition and technique.\u003C/span>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: rgb(0, 0, 0)\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/A.McFarlane%20Beyond%20a%20Pretty%20Picture.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: rgb(0, 0, 0)\">A.McFarlane Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: rgb(0, 0, 0)\">*Class will not meet 11/26*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 10:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75707\">McFarlane, Alex\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$605.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065945\" eventid=\"3065945\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$605.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065945\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5006', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:03 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=302318'}
2026-08-05 01:23:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:03 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=302318"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:03 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:03 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.568"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.568"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.568/text {}
2026-08-05 01:23:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.568/text HTTP/1.1" 200 0
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Beyond Basics: Going Further in your Metalsmithing Journey\nLEVEL: BEGINNER-INTERMEDIATE\nWant to take your skills further, but not sure if you are ready to dive into full intermediate? Then the class is for you!\nThis class guides students as they transition from beginner level metalsmithing techniques, to a more advanced level of design and fabrication. Building upon foundational metalsmithing techniques, this class will elevate your existing skills and prepare you for intermediate jewelry projects. Students will work on more complex, instructor-guided projects, furthering their fabrication skills, craftsmanship and design sense. Projects will be more challenging, and may include mechanisms such as hinges, clasps, findings, and surface design techniques.\n We will move through assigned projects but there will be plenty of room for creativity and exploration of what is specifically interesting to you. Be prepared to learn tips and tricks that will help you span the gap between beginner and intermediate levels!\nAdditional Information:\nPlease note: Students MUST have completed at least two terms of Beginner Metalsmithing to take this class.\nList of Materials: M.Henriques Supply List.pdf\nOpen Studio: Open Studio Winter 2025 - Jewelry.pdf\n*Class will not meet 11/27*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/18 – 12/4 Fr 10:00 AM – 01:00 PM Henriques, Maureen 18 & up $610.00 View 4\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1448', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.568"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.568'}, 'outerHTML']}
2026-08-05 01:23:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"302318\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"302318\" onclick=\"return false;\" href=\"#\">Beyond Basics: Going Further in your Metalsmithing Journey\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/05aa9d55-5e8b-44ea-961b-25d6e19d0266_Henriques.M_BeyondBasics.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: BEGINNER-INTERMEDIATE\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Want to take your skills further, but not sure if you are ready to dive into full intermediate? Then the class is for you!\u003C/span>\u003C/p>\u003Cp class=\"p1\" style=\"margin: 0in; margin-bottom: .0001pt\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This class guides students as they transition from beginner level metalsmithing techniques, to a more advanced level of design and fabrication. Building upon foundational metalsmithing techniques, this class will elevate your existing skills and prepare you for intermediate jewelry projects. Students will work on more complex, instructor-guided projects, furthering their fabrication skills, craftsmanship and design sense. Projects will be more challenging, and may include mechanisms such as hinges, clasps, findings, and surface design techniques.\u003C/span>\u003C/p>\u003Cp class=\"p1\" style=\"margin: 0in; margin-bottom: .0001pt\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;\u003C/span>\u003C/p>\u003Cp class=\"p1\" style=\"margin: 0in; margin-bottom: .0001pt\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">We will move through assigned projects but there will be plenty of room for creativity and exploration of what is specifically interesting to you. Be prepared to learn tips and tricks that will help you span the gap between beginner and intermediate levels!\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cb>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Please note:\u003C/span>\u003C/b>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;Students MUST have completed at least two terms of Beginner Metalsmithing to take this class.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/G.Bradshaw Basic Jewelry  Silversmithing.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">M.Henriques Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Open Studio Winter 2025 - Jewelry.pdf\" target=\"_blank\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio Winter 2025 - Jewelry.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">*Class will not meet 11/27*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/18 – 12/4\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=103494\">Henriques, Maureen\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$610.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065950\" eventid=\"3065950\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">4\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$610.00\" openslots=\"4\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065950\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '7056', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=326040'}
2026-08-05 01:23:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:07 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=326040"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.576"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.576"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.576/text {}
2026-08-05 01:23:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.576/text HTTP/1.1" 200 0
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Big Ink!\nJoin me as we explore using different tools to create larger scale ink compositions in abstract formats! I will introduce you to new thoughts to assist you in broadening your horizons working in black on white paper!\nThis workshop is perfect for people wishing to expand (literally!) the sizes of their pen & ink drawing work in a way that is loose, intuitive and contemporary. Perfect for beginners or for those who have enjoyed my realism ink courses!\nAdditional Information:\nExplore our new programs at 15% off! Discount applied at checkout.\nList of Materials: N.McTague-Stock Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/20 – 8/20 Th 10:00 AM – 12:00 PM McTague-Stock, Nancy 18 & up $115.00 View 17\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '772', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.576"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.576'}, 'outerHTML']}
2026-08-05 01:23:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"326040\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"326040\" onclick=\"return false;\" href=\"#\">Big Ink!\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/820976e3-0979-40fb-b0db-5228e403dd82_McTagueStockN_BigInk.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"margin-top: 0in; margin-right: 0in; margin-bottom: .1pt; margin-left: 0in; line-height: 20.0pt\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Join me as we explore using different tools to create larger scale ink compositions in abstract formats! I will introduce you to new thoughts to assist you in broadening your horizons working in black on white paper!\u003C/span>\u003C/p>\u003Cp style=\"margin-top: 0in; margin-right: 0in; margin-bottom: .1pt; margin-left: 0in; line-height: 20.0pt\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This workshop is perfect for people wishing to expand (literally!) the sizes of their pen &amp; ink drawing work in a way that is loose, intuitive and contemporary. Perfect for beginners or for those who have enjoyed my realism ink courses!\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new programs at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/N.McTague-Stock Big Ink.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">N.McTague-Stock Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/20 – 8/20\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75708\">McTague-Stock, Nancy\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$115.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3006463\" eventid=\"3006463\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">17\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$115.00\" openslots=\"17\" registertype=\"register\" onclick=\"return false;\" eventid=\"3006463\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5082', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=168503'}
2026-08-05 01:23:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:10 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=168503"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.582"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.582"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.582/text {}
2026-08-05 01:23:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.582/text HTTP/1.1" 200 0
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Big Picture: Choose Your Theme Figure, Landscape, or Still Life\nLEVEL: ALL LEVELS\nThis course is ideal for someone who wants to start, execute and finish a major painting or drawing. For the still life artist, there will be an individual set-up tailored to meet his or her needs. The landscape artist will learn how to create compelling compositions while developing atmosphere and mood – summer, winter, day, night. The figural artist will be personally guided through the narrative process using photographic resources. There will be regular demonstrations throughout the course.\nAdditional Information:\nList of Materials: A.McFarlane Supply List.pdf\n*Class will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/16 – 12/2 We 01:00 PM – 04:00 PM McFarlane, Alex 18 & up $605.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '844', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.582"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.582'}, 'outerHTML']}
2026-08-05 01:23:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"168503\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"168503\" onclick=\"return false;\" href=\"#\">Big Picture: Choose Your Theme Figure, Landscape, or Still Life\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/145427_the_last_supper.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv class=\"page\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp>\u003Cspan style=\"font-size: 14px; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This course is ideal for someone who wants to start, execute and finish a major painting or drawing. For the still life artist, there will be an individual set-up tailored to meet his or her needs.&nbsp;The landscape artist will learn how to create compelling compositions while developing atmosphere and mood – summer, winter, day, night.&nbsp;The figural artist will be personally guided through the narrative process using photographic resources.&nbsp;There will be regular demonstrations throughout the course.\u003C/span>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: rgb(0, 0, 0)\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"text-decoration: underline blue !important\" href=\"files/read?file=files/A.McFarlane%20Big%20Picture.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">A.McFarlane Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75707\">McFarlane, Alex\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$605.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065925\" eventid=\"3065925\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$605.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065925\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4978', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321409'}
2026-08-05 01:23:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:14 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321409"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.591"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.591"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.591/text {}
2026-08-05 01:23:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.591/text HTTP/1.1" 200 0
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Blooming Fairy Gardens (Ages: 4-7)\nStep into an enchanted world where imagination blooms! Young dreamers are invited to explore a magical Fairy World as they spend the week designing, building, and nurturing their very own fairy gardens. Campers will create potions, craft whimsical treasures, and discover the magic hidden in nature. End the week with Slime Time Friday!\nAdditional Information:\nParents: Please pack a water bottle as well as a peanut free snack.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/3 – 8/7 Mo Tu We Th Fr 01:00 PM – 04:00 PM Bloom, Lori 4 - 8 $465.00 View 3\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '782', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.591"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.591'}, 'outerHTML']}
2026-08-05 01:23:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321409\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321409\" onclick=\"return false;\" href=\"#\">Blooming Fairy Gardens (Ages: 4-7)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/9d72b3a4-1262-408a-b19e-978b12006d90_BloomL_BloomingFairyGardens.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Step into an enchanted world where imagination blooms! Young dreamers are invited to explore a magical Fairy World as they spend the week designing, building, and nurturing their very own fairy gardens. Campers will create potions, craft whimsical treasures, and discover the magic hidden in nature. End the week with Slime Time Friday!\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Parents: Please pack a water bottle as well as a peanut free snack.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/3 – 8/7\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=113806\">Bloom, Lori\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">4 - 8\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2956962\" eventid=\"2956962\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">3\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"3\" registertype=\"register\" onclick=\"return false;\" eventid=\"2956962\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5692', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=309086'}
2026-08-05 01:23:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=309086"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.598"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.598"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.598/text {}
2026-08-05 01:23:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.598/text HTTP/1.1" 200 0
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Botanical Printing: An Exploration of Eco Printing\nLEVEL: ALL LEVELS\nPlant materials offer an abundant and inspiring source for artistic creation, with endless possibilities to incorporate the beauty of nature into creative projects. In this course, we will explore a variety of techniques to integrate botanical elements into art, focusing on methods that produce the most vibrant and successful prints. Through an in-depth study of Eco Printing, the classes will cover; creating natural plant dyes, bundle dyeing, and the processes of scouring and mordanting fabric to prepare it for bonding with plant materials. The result will be stunning, one-of-a-kind prints that celebrate the artistry of nature.\nAdditional Information:\nPlease view additional course details here.\nAll materials are provided and included in the class price for this offering.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 10/13 Tu 02:00 PM – 04:00 PM Pecquex, Bonnee 18 & up $385.00 View 12\nREGISTER NOW\n10/27 – 11/24 Tu 02:00 PM – 04:00 PM Pecquex, Bonnee 18 & up $385.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1110', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.598"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.598'}, 'outerHTML']}
2026-08-05 01:23:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"309086\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"309086\" onclick=\"return false;\" href=\"#\">Botanical Printing: An Exploration of Eco Printing\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/a8f02f03-10b4-43a5-a118-abb97bf1470e_Pecquex B._ Exploration of Eco Printing Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Plant materials offer an abundant and inspiring source for artistic creation, with endless possibilities to incorporate the beauty of nature into creative projects. In this course, we will explore a variety of techniques to integrate botanical elements into art, focusing on methods that produce the most vibrant and successful prints. Through an in-depth study of Eco Printing, the classes will cover; creating natural plant dyes, bundle dyeing, and the processes of scouring and mordanting fabric to prepare it for bonding with plant materials. The result will be stunning, one-of-a-kind prints that celebrate the artistry of nature.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Please view additional course details \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/B.Pecquex Botanical Printing Exploration of Eco-Printing Additional Info.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">All materials are provided and included in the class price for this offering.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 10/13\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">02:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=128327\">Pecquex, Bonnee\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$385.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065910\" eventid=\"3065910\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$385.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065910\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/27 – 11/24\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">02:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=128327\">Pecquex, Bonnee\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$385.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066021\" eventid=\"3066021\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$385.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066021\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6406', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=197762'}
2026-08-05 01:23:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=197762"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.610"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.610"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.610/text {}
2026-08-05 01:23:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.610/text HTTP/1.1" 200 0
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Broaden the View - Exploring Mediums\nLEVEL: ALL LEVELS\nThis class will move beyond the usual ways of image making in landscape and still life. We’ll expand our ways of “seeing” through drawing, painting, collage, and 3D giving new possibilities to our inner expression. There will be time, during the sessions, for students to pursue their own work with the teacher’s guidance . This class is an opportunity to overcome any artist block, and explore. All levels welcome in oil, or any water based mediums.\nAdditional Information:\nList of Materials: Your usual sketch tools and painting materials, including any photo images (printed out please) that you wish to explore. The teacher will supply any additionally needed materials.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/24 – 10/29 Th 09:30 AM – 12:30 PM Guerin, C.J. 18 & up $365.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '897', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.610"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.610'}, 'outerHTML']}
2026-08-05 01:23:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"197762\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"197762\" onclick=\"return false;\" href=\"#\">Broaden the View - Exploring Mediums\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/8c342b6e-19b1-4f11-a338-1ba1091ad4de_GuerinCJ_BroadentheViewExploringMediums.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); letter-spacing: normal; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This class will move beyond the usual ways of image making in landscape and still life. We’ll expand our ways of “seeing” through drawing, painting, collage, and 3D giving new possibilities to our inner expression. There will be time, during the sessions, for students to pursue their own work with the teacher’s guidance . This class is an opportunity to overcome any artist block, and explore. All levels welcome in oil, or any water based mediums.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials:&nbsp;Your usual sketch tools and painting materials, including any photo images (printed out please) that you wish to explore. The teacher will supply any additionally needed materials.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/24 – 10/29\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75691\">Guerin, C.J.\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$365.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065971\" eventid=\"3065971\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$365.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065971\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4580', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328747'}
2026-08-05 01:23:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328747"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.615"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.615"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.615/text {}
2026-08-05 01:23:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.615/text HTTP/1.1" 200 0
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Bronze Casting Class\nMaster the art of transforming wax into stunning bronze sculptures and functional pieces. Learn small scale mold-making, pouring techniques, finishing, and patina application. Perfect for artists, hobbyists, and makers looking to explore this timeless metalworking craft. Limited spots available.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nA bronze fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Fee is for all bronze including gating once your artwork is poured. Fee depends on weight and market value of the bronze. Additional fees must be paid at the end of the semester.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 12/1 Tu 01:00 PM – 04:00 PM Perucci, Robert 18 & up $1,105.00 View 3\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '945', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.615"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.615'}, 'outerHTML']}
2026-08-05 01:23:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328747\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328747\" onclick=\"return false;\" href=\"#\">Bronze Casting Class\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/df0e71f5-8c0f-4a6d-85b6-a80ba39cfcb5_PerucciR_BronzeCastingClass.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Master the art of transforming wax into stunning bronze sculptures and functional pieces. Learn small scale mold-making, pouring techniques, finishing, and patina application. Perfect for artists, hobbyists, and makers looking to explore this timeless metalworking craft. Limited spots available.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); font-family: Arial; font-size: 12px; letter-spacing: 0.2px; background-color: rgb(255, 255, 255)\">A bronze fee deposit\u003C/span>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> is \u003C/span>\u003Cspan style=\"color: rgb(0, 0, 0); font-family: Arial; font-size: 12px; letter-spacing: 0.2px; background-color: rgb(255, 255, 255)\">included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. \u003C/span>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Fee is for all bronze including gating once your artwork is poured. Fee depends on weight and market value of the bronze. Additional fees must be paid at the end of the semester.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=138340\">Perucci, Robert\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$1,105.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3072600\" eventid=\"3072600\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">3\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$1,105.00\" openslots=\"3\" registertype=\"register\" onclick=\"return false;\" eventid=\"3072600\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5030', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=294702'}
2026-08-05 01:23:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:28 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=294702"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.624"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.624"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.624/text {}
2026-08-05 01:23:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.624/text HTTP/1.1" 200 0
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Building a House of Hogwarts: Wood, Paint, & Clay (Ages: 5-10)\nWhere painting and clay sculpting are included every week, mARTa's Summer Art Studio encourages open ended experimentation, creative expression, exploration, and appreciation, of art. While building friendships and learning about the properties of art materials, children are guided to engage with imagination, and to contribute meaning to artwork. They will be introduced to a variety of techniques while exploring play in art, and they will develop their creative abilities to self-express and see and experience the world in new ways. Each day will include a variety of materials, surprises, outdoor recess with games and stories about well-known artists. Art materials may include watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, things that shine, beads, paint markers, more. Gentle discussions about the artwork in progress and art history will be introduced.\nThroughout the week children may work in the art studio, explore the lush Silvermine outdoor environment, and visit the Silvermine galleries & exhibitions. mARTa's sensory rich studio environment is designed to make one's learning more complex while supporting imagination and play in a caring environment. It's a place where children will develop meaningful connections to self and their ever-changing surrounding environment. All materials will be supplied.\nAdditional Information:\nPlease pack a peanut free snack and drink. Please bring a sturdy container or box, labeled with student’s first & last name to transport clay objects home.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/3 – 8/7 Mo Tu We Th Fr 09:00 AM – 12:00 PM Kot, Marta Violette 5 - 11 $465.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1918', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.624"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.624'}, 'outerHTML']}
2026-08-05 01:23:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"294702\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"294702\" onclick=\"return false;\" href=\"#\">Building a House of Hogwarts: Wood, Paint, &amp; Clay (Ages: 5-10)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/efabd37f-4cf2-477a-ae57-396a9b6edb79_KotM_BuilingHouseofHogwart.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Where painting and clay sculpting are included every week, mARTa's Summer Art Studio encourages open ended experimentation, creative expression, exploration, and appreciation, of art. While building friendships and learning about the properties of art materials, children are guided to engage with imagination, and to contribute meaning to artwork. They will be introduced to a variety of techniques while exploring play in art, and they will develop their creative abilities to self-express and see and experience the world in new ways. Each day will include a variety of materials, surprises, outdoor recess with games and stories about well-known artists. Art materials may include watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, things that shine, beads, paint markers, more. Gentle discussions about the artwork in progress and art history will be introduced.\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Throughout the week children may work in the art studio, explore the lush Silvermine outdoor environment, and visit the Silvermine galleries &amp; exhibitions. mARTa's sensory rich studio environment is designed to make one's learning more complex while supporting imagination and play in a caring environment. It's a place where children will develop meaningful connections to self and their ever-changing surrounding environment. All materials will be supplied.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Please pack a peanut free snack and drink. Please bring a sturdy container or box, labeled with student’s first &amp; last name to transport clay objects home.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/3 – 8/7\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2957252\" eventid=\"2957252\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"-4\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2957252\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '7178', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=277878'}
2026-08-05 01:23:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=277878"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.633"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.633"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.633/text {}
2026-08-05 01:23:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.633/text HTTP/1.1" 200 0
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Center Yourself! Clear your Mind and Create with Clay\nLEVEL: BEGINNER\nThis class is designed for both the beginner with a desire to learn the basics of working with clay, and any other students who may feel like they don't quite fit into an intermediate class just yet. We will explore the fundamentals of using the potter's wheel to create thrown forms and offer those with some experience a great space to hone and reinforce their skills. This class will also provide some guidance on basic hand building techniques that will allow students to create pieces without the potter's wheel. Thrown, pinched, coiled, or slab built. Clear your mind and create with clay!\nThis program is for students in the early stages of ceramic education. Those with two or more years of experience should consider other programs. Intermediate and advanced students should not enroll and may be removed from the roster if necessary\nAdditional Information:\nA firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\nList of Materials: Tool Kits & Clay are available for purchase in class\nOpen Studio: Open Studio Fall 2026 - Ceramics.pdf\n*Class will not meet 9/30, 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/16 – 12/2 We 04:00 PM – 07:00 PM Reynolds, Don 18 & up $690.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1534', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.633"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.633'}, 'outerHTML']}
2026-08-05 01:23:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"277878\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"277878\" onclick=\"return false;\" href=\"#\">Center Yourself! Clear your Mind and Create with Clay\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/166697733534562_dreypottery2.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: BEGINNER\u003C/span>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"color: rgb(32, 33, 36); letter-spacing: 0.15pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">This class is designed for both the beginner with a desire to learn the basics of working with clay, and any other students who may feel like they don't quite fit into an intermediate class just yet. We will explore the fundamentals of using the potter's wheel to create thrown forms and offer those with some experience a great space to hone and reinforce their skills. This class will also provide some guidance on basic hand building techniques that will allow students to create pieces without the potter's wheel. Thrown, pinched, coiled, or slab built. Clear your mind and create with clay!\u003C/span>\u003C/p>\u003Cp style=\"background: white\">\u003Cstrong>\u003Cspan style=\"color: rgb(32, 33, 36); letter-spacing: 0.15pt; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">This program is for students in the early stages of ceramic education. Those with two or more years of experience should consider other programs. \u003C/span>\u003Cspan style=\"text-decoration: underline; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">Intermediate and advanced students should not enroll and may be removed from the roster if necessary\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); font-family: Arial; font-size: 12px; letter-spacing: 0.2px; background-color: rgb(255, 255, 255)\">A firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\u003C/span>\u003C/p>\u003Cp style=\"background-color: rgb(255, 255, 255)\">\u003Cspan style=\"font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">List of Materials:&nbsp;\u003C/span>\u003Cspan style=\"line-height: 12.84px; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Tool Kits &amp; Clay are available for purchase in class\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf\" target=\"_blank\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio Fall 2026 - Ceramics.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">*Class will not meet 9/30, 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">04:00 PM – 07:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=113836\">Reynolds, Don\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$690.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065930\" eventid=\"3065930\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$690.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065930\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6728', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328408'}
2026-08-05 01:23:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:35 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328408"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.643"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.643"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.643/text {}
2026-08-05 01:23:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.643/text HTTP/1.1" 200 0
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Ceramics at Andrews Hall Studio Membership\nSilvermine Arts Center is pleased to introduce Ceramics at Andrews Hall, a shared studio membership for experienced ceramic artists seeking an independent, well-equipped studio environment. Andrews Hall offers an atmosphere to support serious creative work within a respectful and collaborative communal studio.\nThis membership is intended for ceramic artists who can work safely, follow studio policies, and contribute positively to the studio community. Members have access to a workspace that supports ongoing practice, experimentation, and artistic growth.\nArtists interested in becoming part of the Andrews Hall ceramics community are invited to complete an application for consideration. Space is limited. Applications reviewed on a rolling basis.\nAdditional Information:\nThis independent and communal ceramics studio is open to Members only, Tuesday - Sunday, with 24 hour access. Monthly Membership fees apply. Learn more Today!\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/1 – 12/31 Tu We Th Fr Sa Su 01:00 AM – 11:59 PM , 18 & up $0.00 View 10\nREAD ONLY"} | headers=HTTPHeaderDict({'Content-Length': '1138', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.643"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.643'}, 'outerHTML']}
2026-08-05 01:23:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328408\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328408\" onclick=\"return false;\" href=\"#\">Ceramics at Andrews Hall Studio Membership\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/178353686611021_img_7228.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(51, 51, 51); margin: 0px 0px 20px; border: 0px; font-size: 18px; background-color: rgb(255, 255, 255)\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Silvermine Arts Center is pleased to introduce Ceramics at Andrews Hall, a shared studio membership for experienced ceramic artists seeking an independent, well-equipped studio environment. Andrews Hall offers an atmosphere to support serious creative work within a respectful and collaborative communal studio.\u003C/span>\u003C/p>\u003Cp style=\"font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(51, 51, 51); margin: 0px 0px 20px; border: 0px; font-size: 18px; background-color: rgb(255, 255, 255)\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This membership is intended for ceramic artists who can work safely, follow studio policies, and contribute positively to the studio community. Members have access to a workspace that supports ongoing practice, experimentation, and artistic growth.\u003C/span>\u003C/p>\u003Cp style=\"font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(51, 51, 51); margin: 0px 0px 20px; border: 0px; font-size: 18px; background-color: rgb(255, 255, 255)\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Artists interested in becoming part of the Andrews Hall ceramics community are invited to \u003C/span>\u003Ca href=\"https://www.silvermineart.org/ceramics-at-andrews-hall/\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">complete an application for consideration\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">. Space is limited. Applications reviewed on a rolling basis.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This independent and communal ceramics studio is \u003C/span>\u003Cspan style=\"text-decoration: underline; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">open to Members only\u003C/span>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">, Tuesday - Sunday, with 24 hour access. Monthly Membership fees apply. \u003C/span>\u003Cstrong>\u003Cspan style=\"text-decoration: underline; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">L\u003C/span>\u003C/strong>\u003Ca href=\"https://www.silvermineart.org/ceramics-at-andrews-hall/\">\u003Cstrong>\u003Cspan style=\"text-decoration: underline; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">earn more Today!\u003C/span>\u003C/strong>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/1 – 12/31\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu We Th Fr Sa Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 AM – 11:59 PM\u003C/td>\n    \n        \u003Ctd>, \u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$0.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065050\" eventid=\"3065050\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Cspan isdetail=\"false\" class=\"button disabled-2 small full center noicon\">READ ONLY\u003C/span>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6169', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328456'}
2026-08-05 01:23:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:38 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328456"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.654"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.654"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:39 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.654/text {}
2026-08-05 01:23:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.654/text HTTP/1.1" 200 0
2026-08-05 01:23:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Clay Pumpkin Lanterns (Ages: 6-9)\nWishing your carved pumpkins could last forever? This workshop is for you! Students will use pinch-pot techniques to create their own ceramic pumpkin candle holders to liven up the spooky season. Students will have the opportunity to carve these creations with a classic Jack-O-Lantern face or their own imaginative design. Pieces will be kiln-fired after being finished with colorful underglaze and glaze.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: All materials are provided for this offering.\nPieces will be kiln-fired after being finished with colorful underglaze and glaze. All pieces will be available two to three weeks after the program has occurred and the School Office will contact participants via email with pick up instructions.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/10 – 10/10 Sa 09:00 AM – 12:00 PM Long, Charlotte 6 - 10 $165.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1008', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.654"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.654'}, 'outerHTML']}
2026-08-05 01:23:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328456\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328456\" onclick=\"return false;\" href=\"#\">Clay Pumpkin Lanterns (Ages: 6-9)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/4b5dc19d-2505-4969-a43b-e5885900cf7a_Long_Pumpkin_Lanterns.jpeg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Wishing your carved pumpkins could last forever? This workshop is for you! Students will use pinch-pot techniques to create their own ceramic pumpkin candle holders to liven up the spooky season. Students will have the opportunity to carve these creations with a classic Jack-O-Lantern face or their own imaginative design. Pieces will be kiln-fired after being finished with colorful underglaze and glaze.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Pieces will be kiln-fired after being finished with colorful underglaze and glaze. All pieces will be available two to three weeks after the program has occurred and the School Office will contact participants via email with pick up instructions.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/10 – 10/10\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>Long, Charlotte\u003C/td>\n    \n        \u003Ctd class=\"\">6 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$165.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065994\" eventid=\"3065994\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$165.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065994\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4786', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321523'}
2026-08-05 01:23:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321523"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.665"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.665"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.665/text {}
2026-08-05 01:23:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.665/text HTTP/1.1" 200 0
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Collage & Composition Studio (Ages: 10-13)\nWhere creativity meets composition—turning everyday materials into works of art. In this dynamic weeklong studio, young artists will explore collage as a powerful form of visual expression. Using paper, fabric, photos, and found materials, campers will experiment with layering, texture, and balance to create both abstract and narrative works of art. They’ll learn techniques for cutting, assembling, and combining materials while exploring themes like identity, nature, and storytelling. Lessons will include inspiration from modern and contemporary collage artists, as well as opportunities to mix drawing, painting, and printmaking into their pieces. By the end of the week, campers will have developed a strong sense of design and a personal collection of mixed-media artworks to share in a final showcase.\nHighlights:\nAdvanced collage and mixed-media techniques      \n      Lessons in composition, balance, and storytelling\n      Exploration of materials and found-object art  \n      Inspiration from modern and contemporary artists\n      End-of-week gallery-style exhibition\nAdditional Information:\nParents: Please pack a water bottle as well as a peanut free snack.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/10 – 8/14 Mo Tu We Th Fr 01:00 PM – 04:00 PM Waters, Nell 10 - 14 $465.00 View 7\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1550', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.665"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.665'}, 'outerHTML']}
2026-08-05 01:23:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321523\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321523\" onclick=\"return false;\" href=\"#\">Collage &amp; Composition Studio (Ages: 10-13)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/b1e490dc-7301-4a5c-84ae-f6a31ffd16ad_WatersN_CollageCompositionStudioAges10-13.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Where creativity meets composition—turning everyday materials into works of art. In this dynamic weeklong studio, young artists will explore collage as a powerful form of visual expression. Using paper, fabric, photos, and found materials, campers will experiment with layering, texture, and balance to create both abstract and narrative works of art. They’ll learn techniques for cutting, assembling, and combining materials while exploring themes like identity, nature, and storytelling. Lessons will include inspiration from modern and contemporary collage artists, as well as opportunities to mix drawing, painting, and printmaking into their pieces. By the end of the week, campers will have developed a strong sense of design and a personal collection of mixed-media artworks to share in a final showcase.\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Highlights:\u003C/span>\u003C/p>\u003Cul>\u003Cli>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Advanced collage and mixed-media techniques\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent: -.25in\">\u003Cspan style=\"font: 7.0pt &quot;Times New Roman&quot;; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\u003C/span>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Lessons in composition, balance, and storytelling\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent: -.25in\">\u003Cspan style=\"font: 7.0pt &quot;Times New Roman&quot;; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\u003C/span>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Exploration of materials and found-object art\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoListParagraphCxSpMiddle\" style=\"text-indent: -.25in\">\u003Cspan style=\"font: 7.0pt &quot;Times New Roman&quot;; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\u003C/span>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Inspiration from modern and contemporary artists\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoListParagraphCxSpLast\" style=\"text-indent: -.25in\">\u003Cspan style=\"font: 7.0pt &quot;Times New Roman&quot;; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\u003C/span>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">End-of-week gallery-style exhibition\u003C/span>\u003C/p>\u003C/li>\u003C/ul>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Parents: Please pack a water bottle as well as a peanut free snack.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/10 – 8/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=132562\">Waters, Nell\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">10 - 14\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2958030\" eventid=\"2958030\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">7\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"7\" registertype=\"register\" onclick=\"return false;\" eventid=\"2958030\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '9038', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321525'}
2026-08-05 01:23:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:45 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321525"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.675"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.675"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.675/text {}
2026-08-05 01:23:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.675/text HTTP/1.1" 200 0
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Collage Explorers (Ages: 6-9)\nCut, layer, and glue your way into a world of color, imagination and expression!  In this lively weeklong camp, young artists will dive into the playful world of collage—creating art with paper, fabric, textures, and found materials. Campers will learn how to build images and stories by layering shapes, colors, and patterns, exploring both abstract and representational styles.  Each day will bring new projects inspired by nature, imagination, and famous collage artists. Using scissors, glue, and a wide range of materials, campers will experiment with composition, texture, and mixed media while developing confidence and creativity.  By week’s end, they’ll have a vibrant collection of collages to share in a mini-gallery show for family and friends.\nActivities include:\nPaper, fabric, and mixed-media collages\nTexture and color exploration        \nCollaborative group mural    \nInspiration from artists like Henri Matisse and Romare Bearden\nEnd-of-week art show\nAdditional Information:\nParents: Please pack a water bottle as well as a peanut free snack.\n**NOTE** Any summer art studio programs taking place in Week 3: June 29 – July 2 will only be 4 days due to the Holiday.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/17 – 8/21 Mo Tu We Th Fr 01:00 PM – 04:00 PM Waters, Nell 6 - 10 $465.00 View 13\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1550', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.675"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.675'}, 'outerHTML']}
2026-08-05 01:23:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321525\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321525\" onclick=\"return false;\" href=\"#\">Collage Explorers (Ages: 6-9)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/ba3bc484-ba1d-4c5e-8118-f0948ca0e40f_WatersN_CollageExplorersAges6-9.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Cut, layer, and glue your way into a world of color, imagination and expression!\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">In this lively weeklong camp, young artists will dive into the playful world of collage—creating art with paper, fabric, textures, and found materials. Campers will learn how to build images and stories by layering shapes, colors, and patterns, exploring both abstract and representational styles.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Each day will bring new projects inspired by nature, imagination, and famous collage artists. Using scissors, glue, and a wide range of materials, campers will experiment with composition, texture, and mixed media while developing confidence and creativity.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">By week’s end, they’ll have a vibrant collection of collages to share in a mini-gallery show for family and friends.\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Activities include:\u003C/span>\u003C/p>\u003Cul>\u003Cli>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Paper, fabric, and mixed-media collages\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Texture and color exploration\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Collaborative group mural\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Inspiration from artists like Henri Matisse and Romare Bearden\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">End-of-week art show\u003C/span>\u003C/p>\u003C/li>\u003C/ul>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Parents: Please pack a water bottle as well as a peanut free snack.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cspan style=\"letter-spacing: 0.15pt; color: rgb(0, 0, 0); font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">**NOTE**&nbsp;Any summer art studio programs taking place in Week 3: June 29 – July 2 will only be 4 days&nbsp;due to the Holiday.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca href=\"https://www.silvermineart.org/summer-art-studios-important-information-and-required-forms/\" title=\"\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here \u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/17 – 8/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=132562\">Waters, Nell\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">6 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2958035\" eventid=\"2958035\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">13\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"13\" registertype=\"register\" onclick=\"return false;\" eventid=\"2958035\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '9046', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328457'}
2026-08-05 01:23:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:49 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328457"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.683"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.683"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:51 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.683/text {}
2026-08-05 01:23:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.683/text HTTP/1.1" 200 0
2026-08-05 01:23:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Comic Book Design Studio (Ages: 10-14)\nStudents will develop, draw, and complete their own original comic book over the course of 12 weeks. Through sequential storytelling, character design, panel composition, inking, and hand-lettering, each student leaves with a finished, bound comic they can call their own.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nStudents can either create their comic book digitally or physically and all artmaking materials will be provided. Students who wish to work digitally should bring their personal iPad.\n*Class will not meet 10/9, 11/6, 11/27*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/18 – 12/4 Fr 04:30 PM – 06:30 PM Wilson, Samuel 10 - 15 $385.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '787', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.683"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.683'}, 'outerHTML']}
2026-08-05 01:23:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328457\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328457\" onclick=\"return false;\" href=\"#\">Comic Book Design Studio (Ages: 10-14)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/43e3d3d3-536c-473c-a1c6-babcf1694073_WilsonS_ComicBookDesignStudio.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students will develop, draw, and complete their own original comic book over the course of 12 weeks. Through sequential storytelling, character design, panel composition, inking, and hand-lettering, each student leaves with a finished, bound comic they can call their own.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students can either create their comic book digitally or physically and all artmaking materials will be provided. \u003C/span>\u003Cb>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students who wish to work digitally should bring their personal iPad.\u003C/span>\u003C/b>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 10/9, 11/6, 11/27*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/18 – 12/4\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">04:30 PM – 06:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=138237\">Wilson, Samuel\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">10 - 15\u003C/td>\n    \n        \u003Ctd class=\"\">$385.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065955\" eventid=\"3065955\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$385.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065955\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4838', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321690'}
2026-08-05 01:23:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321690"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.691"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.691"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.691/text {}
2026-08-05 01:23:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.691/text HTTP/1.1" 200 0
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Comic Lab: Create Your Own Comic Book (Ages: 10-14)\nIn Comic Lab, young artists become comic creators! They will design original characters, develop engaging stories, and produce their own mini comic book from start to finish. Students will explore how pictures and words work together to tell exciting stories, and they will also learn to use digital tools like Photoshop. Those who have an iPad are encouraged to bring it for digital drawing.\nAdditional Information:\nStudents should pack a water bottle and peanut free snack.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/10 – 8/14 Mo Tu We Th Fr 09:00 AM – 12:00 PM Wilson, Samuel 10 - 15 $445.00 View 1\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '853', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.691"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.691'}, 'outerHTML']}
2026-08-05 01:23:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321690\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321690\" onclick=\"return false;\" href=\"#\">Comic Lab: Create Your Own Comic Book (Ages: 10-14)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/a4cd700d-7ba5-45aa-8d5a-5106498a7be7_WilsonS_ComicLabCreateYourOwnComicBook.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #060606\">In Comic Lab, young artists become comic creators! They will design original characters, develop engaging stories, and produce their own mini comic book from start to finish. Students will explore how pictures and words work together to tell exciting stories, and they will also learn to use digital tools like Photoshop. Those who have an iPad are encouraged to bring it for digital drawing.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"line-height: 115%; background: white; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">Students should pack a water bottle and peanut free snack.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/10 – 8/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=138237\">Wilson, Samuel\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">10 - 15\u003C/td>\n    \n        \u003Ctd class=\"\">$445.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2961649\" eventid=\"2961649\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">1\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$445.00\" openslots=\"1\" registertype=\"register\" onclick=\"return false;\" eventid=\"2961649\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5812', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=191691'}
2026-08-05 01:23:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:57 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:23:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:23:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=191691"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:23:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.700"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.700"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.700/text {}
2026-08-05 01:23:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.700/text HTTP/1.1" 200 0
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Contemporary Impressionism and Beyond: Experience to Expression\nLEVEL: ALL LEVELS\nDevelop our own unique style while discovering the philosophy and techniques used by the impressionist masters. Such methods used by the impressionists were taken from the classical and today used by the modernists are the tools you will learn from illustrative to the abstract. Students from all levels and interests, as well as those working in all materials and methods are welcomed from classical to abstract.\nAdditional Information:\nList of Materials: D.Wright Supply List.pdf\n*Class will not meet 11/6, 11/27*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/18 – 12/4 Fr 09:00 AM – 12:00 PM Wright, Dmitri 18 & up $555.00 View 10\nREGISTER NOW\n9/18 – 12/4 Fr 01:00 PM – 04:00 PM Wright, Dmitri 18 & up $555.00 View 17\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '852', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:23:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.700"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.700'}, 'outerHTML']}
2026-08-05 01:23:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"191691\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"191691\" onclick=\"return false;\" href=\"#\">Contemporary Impressionism and Beyond: Experience to Expression\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/48c99911-a3b0-4c7d-8d7a-9604fbe0e866_6.9.2023.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv class=\"page\" style=\"color: rgb(0, 0, 0); letter-spacing: normal\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp style=\"color: rgb(0, 0, 0); letter-spacing: normal\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp style=\"font-family: &quot;Times New Roman&quot;, serif; color: rgb(0, 0, 0); font-size: medium; letter-spacing: normal\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Develop our own unique style while discovering the philosophy and techniques used by the impressionist masters. Such methods used by the impressionists were taken from the classical and today used by the modernists are the tools you will learn from illustrative to the abstract. Students from all levels and interests, as well as those working in all materials and methods are welcomed from classical to abstract.\u003C/span>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials:\u003C/span>\u003Ca style=\"text-decoration: underline blue !important\" href=\"files/read?file=files/D.Wright%20Courses.pdf\" target=\"_blank\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">&nbsp;D.Wright Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">*Class will not meet 11/6, 11/27*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/18 – 12/4\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75734\">Wright, Dmitri\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$555.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065948\" eventid=\"3065948\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$555.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065948\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/18 – 12/4\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75734\">Wright, Dmitri\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$555.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065953\" eventid=\"3065953\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">17\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$555.00\" openslots=\"17\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065953\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6311', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:23:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=190816'}
2026-08-05 01:24:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:00 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=190816"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.712"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.712"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.712/text {}
2026-08-05 01:24:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.712/text HTTP/1.1" 200 0
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Copying from the Masters\nLEVEL: INTERMEDIATE - ADVANCED\nCopying old master works was a time-tested tradition throughout the ages. Students will work from high quality reproductions and be led through a step-by-step approach to thinking and working in the old master manner. Beginning with the drawing, then capturing and slowly building the layers of paint with glazes mixed with chalk and oil, students will learn the full process, which they can the introduce into their own methods of painting. Reproductions will be provided for the students. \nAdditional Information:\nList of Materials: J.Wiest Supply List.pdf\n*Class will not meet 9/21*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/14 – 11/30 Mo 09:30 AM – 12:30 PM Wiest, Justin 18 & up $605.00 View 6\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '802', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.712"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.712'}, 'outerHTML']}
2026-08-05 01:24:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"190816\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"190816\" onclick=\"return false;\" href=\"#\">Copying from the Masters\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/d29bd799-b79b-40c7-a599-6eeec2ba7b00_Wiest-Flaming-June-after-Leighton-1.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv class=\"page\" style=\"color: rgb(0, 0, 0); letter-spacing: normal\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: INTERMEDIATE - ADVANCED\u003C/span>\u003C/p>\u003Cp style=\"font-family: -webkit-standard\">\u003Cspan style=\"letter-spacing: normal; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Copying old master works was a time-tested tradition throughout the ages. Students will work from high quality reproductions and be led through a step-by-step approach to thinking and working in the old master manner. Beginning with the drawing, then capturing and slowly building the layers of paint with glazes mixed with chalk and oil, students will learn the full process, which they can the introduce into their own methods of painting. Reproductions will be provided for the students.&nbsp;\u003C/span>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"text-decoration: underline blue !important\" href=\"files/read?file=files/J.Wiest Copying from the Masters.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">J.Wiest Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 9/21*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/14 – 11/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75733\">Wiest, Justin\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$605.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066081\" eventid=\"3066081\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">6\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$605.00\" openslots=\"6\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066081\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5160', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328458'}
2026-08-05 01:24:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:04 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328458"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.719"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.719"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.719/text {}
2026-08-05 01:24:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.719/text HTTP/1.1" 200 0
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Cozy Forest Friends in Clay (Ages: 6-9)\nJoin us for this adorable fall clay workshop! As the weather gets chillier, students will imagine their favorite fall animals, such as foxes, owls, and squirrels in clay with seasonal details! Using handbuilding techniques, students will add texture to their critters, as well as dress them up in cozy clay scarves and hats. This workshop centers on playful skill building using imagination, nature, and fall fun. Students will add color using underglaze to their piece, which will be glazed and finished through kiln-firing.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: All materials are provided for this offering.\nAll artwork will be available two to three weeks after the program has occurred and the School Office will contact participants via email with pick up instructions.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n11/22 – 11/22 Su 01:00 PM – 04:00 PM Long, Charlotte 6 - 10 $165.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1051', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.719"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.719'}, 'outerHTML']}
2026-08-05 01:24:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328458\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328458\" onclick=\"return false;\" href=\"#\">Cozy Forest Friends in Clay (Ages: 6-9)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/daaf1b9c-9401-44c9-923e-b721979a8399_Long_Cozy_Forest_Friends.jpeg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Join us for this adorable fall clay workshop! As the weather gets chillier, students will imagine their favorite fall animals, such as foxes, owls, and squirrels in clay with seasonal details! Using handbuilding techniques, students will add texture to their critters, as well as dress them up in cozy clay scarves and hats. This workshop centers on playful skill building using imagination, nature, and fall fun. Students will add color using underglaze to their piece, which will be glazed and finished through kiln-firing.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">All artwork will be available two to three weeks after the program has occurred and the School Office will contact participants via email with pick up instructions.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/22 – 11/22\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>Long, Charlotte\u003C/td>\n    \n        \u003Ctd class=\"\">6 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$165.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066052\" eventid=\"3066052\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$165.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066052\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4832', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328461'}
2026-08-05 01:24:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328461"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.728"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.728"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.728/text {}
2026-08-05 01:24:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.728/text HTTP/1.1" 200 0
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Create a Magical Winter Forest - Mixed Media Painting on Canvas (Ages: 5-10)\nUse a variety of materials, glistening imagination and holiday inspiration and create a winter wonderland. See ways in which artists have painted snowy fields and animals in the natural world. Wrap your painting with personally decorated paper if you will bring your artwork home as a holiday gift.  All materials will be supplied. Please bring a peanut free snack.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nStudents should bring a peanut free hearty snack & water bottle.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n12/20 – 12/20 Su 11:00 AM – 03:30 PM Kot, Marta Violette 5 - 11 $205.00 View 15\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '766', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.728"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.728'}, 'outerHTML']}
2026-08-05 01:24:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328461\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328461\" onclick=\"return false;\" href=\"#\">Create a Magical Winter Forest - Mixed Media Painting on Canvas (Ages: 5-10)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/9fefda2e-faae-49cd-9dac-01fbb9b9876d_KotM_MagicalWinterForest Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Use a variety of materials, glistening imagination and holiday inspiration and create a winter wonderland. See ways in which artists have painted snowy fields and animals in the natural world. Wrap your painting with personally decorated paper if you will bring your artwork home as a holiday gift.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">All materials will be supplied. Please bring a peanut free snack.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students should bring a peanut free hearty snack &amp; water bottle.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/20 – 12/20\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11:00 AM – 03:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$205.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066070\" eventid=\"3066070\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">15\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$205.00\" openslots=\"15\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066070\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4731', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=280394'}
2026-08-05 01:24:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:11 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=280394"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.734"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.734"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.734/text {}
2026-08-05 01:24:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.734/text HTTP/1.1" 200 0
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Create in Clay (Ages: 7-9)\nDuring this week-long studio, your child will create multiple 3-D works of art from clay. Each day will involve making different objects from their imagination through various projects and guidelines. Slabs, pinch pots, coils, and additional techniques will be utilized and explored. The artworks created will have underglaze applied to add color and excitement to their finished creations.\nClay pieces take three to four weeks to be fired. The school office will notify parents when pieces are ready to be picked up. \nAdditional Information:\n**NOTE** Any summer art studio programs taking place in Week 3: June 29 – July 2 will only be 4 days due to the Holiday.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/3 – 8/7 Mo Tu We Th Fr 01:00 PM – 04:00 PM Dunn, Zach 7 - 10 $515.00 View 8\nREGISTER NOW\n8/10 – 8/14 Mo Tu We Th Fr 01:00 PM – 04:00 PM Dunn, Zach 7 - 10 $515.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1114', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.734"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.734'}, 'outerHTML']}
2026-08-05 01:24:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"280394\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"280394\" onclick=\"return false;\" href=\"#\">Create in Clay (Ages: 7-9)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/df762aa3-e9eb-47e1-8302-207c6785c9ae_Z.Dunn_CreateClay2.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp class=\"gmail-p1\" style=\"background-color: rgb(255, 255, 255)\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">During this week-long studio, your child will create multiple 3-D works of art from clay. Each day will involve making different objects from their imagination through various projects and guidelines. Slabs, pinch pots, coils, and additional techniques will be utilized and explored. The artworks created will have underglaze applied to add color and excitement to their finished creations.\u003C/span>\u003C/p>\u003Cp class=\"gmail-p1\" style=\"background-color: rgb(255, 255, 255)\">\u003Cem>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Clay pieces take three to four weeks to be fired. The school office will notify parents when pieces are ready to be picked up.&nbsp;\u003C/span>\u003C/em>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"letter-spacing: 0.15pt; color: rgb(0, 0, 0); font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">**NOTE**&nbsp;Any summer art studio programs taking place in Week 3: June 29 – July 2 will only be 4 days&nbsp;due to the Holiday.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca href=\"https://www.silvermineart.org/summer-art-studios-important-information-and-required-forms/\" title=\"\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/3 – 8/7\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=89463\">Dunn, Zach\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">7 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$515.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2954949\" eventid=\"2954949\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$515.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"2954949\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/10 – 8/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=89463\">Dunn, Zach\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">7 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$515.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2954955\" eventid=\"2954955\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$515.00\" openslots=\"-5\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2954955\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '7328', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321422'}
2026-08-05 01:24:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:15 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321422"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.745"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.745"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.745/text {}
2026-08-05 01:24:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.745/text HTTP/1.1" 200 0
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Creative Digital Photography and Digital Darkroom (Ages: 12-17)\nGet creative with new camera techniques. Explore nature, abstract and still-life photography. Use Adobe Photoshop to add creatively to your pictures.\nStudents provide a digital camera preferably a DSLR.\nAdditional Information:\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/3 – 8/7 Mo Tu We Th Fr 01:00 PM – 04:00 PM Dunbar, Bruce 12 - 18 $510.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '616', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.745"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.745'}, 'outerHTML']}
2026-08-05 01:24:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321422\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321422\" onclick=\"return false;\" href=\"#\">Creative Digital Photography and Digital Darkroom (Ages: 12-17)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/e2306882-0878-4b21-836f-489858a907b9_DunbarB_CreativeDigitalPhotoDigitalDarkroom.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Get creative with new camera techniques. Explore nature, abstract and still-life photography. Use Adobe Photoshop to add creatively to your pictures.\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\" style=\"line-height: normal\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students provide a digital camera preferably a DSLR.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/3 – 8/7\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=87648\">Dunbar, Bruce\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">12 - 18\u003C/td>\n    \n        \u003Ctd class=\"\">$510.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2957003\" eventid=\"2957003\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$510.00\" openslots=\"-4\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2957003\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5577', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328460'}
2026-08-05 01:24:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328460"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.751"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.751"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.751/text {}
2026-08-05 01:24:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.751/text HTTP/1.1" 200 0
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Creative Layers: Gel Plate Prints & Collage on Canvas\nLEVEL: BEGINNER\nNo experience needed! Explore making gel plate prints, collaging them onto canvas and adding paint, markers, stencils, etc. to create a finished painting. this method of working allows for a lot of fun, flexibility and change during the process to give you confidence in your creative decisions.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nList of Materials: N.Hyon Supply List.pdf\n*Class will not meet 11/26*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/15 – 11/19 Th 10:00 AM – 12:00 PM Hyon, Nash 18 - 99 $275.00 View 10\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '686', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.751"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.751'}, 'outerHTML']}
2026-08-05 01:24:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328460\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328460\" onclick=\"return false;\" href=\"#\">Creative Layers: Gel Plate Prints &amp; Collage on Canvas\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: none;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"\" alt=\"{imageAltText}\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\" style=\"display: none;\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: BEGINNER\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">No experience needed! Explore making gel plate prints, collaging them onto canvas and adding paint, markers, stencils, etc. to create a finished painting. this method of working allows for a lot of fun, flexibility and change during the process to give you confidence in your creative decisions.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/N.Hyon Creative Layers Gel Plate and Collage on Canvas.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">N.Hyon Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 11/26*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/15 – 11/19\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 - 99\u003C/td>\n    \n        \u003Ctd class=\"\">$275.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066001\" eventid=\"3066001\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$275.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066001\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4994', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321641'}
2026-08-05 01:24:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321641"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.754"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.754"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.754/text {}
2026-08-05 01:24:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.754/text HTTP/1.1" 200 0
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Creative Photography: Film and Darkroom (Ages: 12-17)\nExplore new ways of making prints from your film negatives. Embrace the magic of the darkroom to make creative pictures. We’ll try different processes to add imagination and innovation. Film cameras will be available for students to use during class sessions. Film and photographic paper will be supplied.\nAdditional Information:\nParents: Please pack a water bottle as well as a peanut free snack.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/10 – 8/14 Mo Tu We Th Fr 01:00 PM – 04:00 PM Dunbar, Bruce 12 - 18 $510.00 View 5\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '778', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.754"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.754'}, 'outerHTML']}
2026-08-05 01:24:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321641\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321641\" onclick=\"return false;\" href=\"#\">Creative Photography: Film and Darkroom (Ages: 12-17)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/8fa81a94-72da-4d2a-adc2-aee608c0e4b1_DunbarD_CreativePhotographyFilmDarkroom.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Explore new ways of making prints from your film negatives. Embrace the magic of the darkroom to make creative pictures. We’ll try different processes to add imagination and innovation. Film cameras will be available for students to use during class sessions. Film and photographic paper will be supplied.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Parents: Please pack a water bottle as well as a peanut free snack.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/10 – 8/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=87648\">Dunbar, Bruce\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">12 - 18\u003C/td>\n    \n        \u003Ctd class=\"\">$510.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2960229\" eventid=\"2960229\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">5\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$510.00\" openslots=\"5\" registertype=\"register\" onclick=\"return false;\" eventid=\"2960229\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5680', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328459'}
2026-08-05 01:24:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:26 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328459"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.760"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.760"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.760/text {}
2026-08-05 01:24:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.760/text HTTP/1.1" 200 0
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Creepy Clay Creatures (Ages: 8-10)\nCelebrate Halloween with clay! In this workshop, students will use clay to sculpt their own creepy Halloween creatures of choices, from silly ghosts and monsters to creepy bats and cats. With this project, basic hand-building techniques will be utilized to bring student’s imaginative creations to life. Pieces will be kiln-fired after being finished with colorful underglaze and glaze.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: All materials are provided for this offering.\nAll artwork will be available two to three weeks after the program has occurred and the School Office will contact participants via email with pick up instructions.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/24 – 10/24 Sa 09:00 AM – 12:00 PM Long, Charlotte 8 - 11 $165.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '909', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.760"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.760'}, 'outerHTML']}
2026-08-05 01:24:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328459\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328459\" onclick=\"return false;\" href=\"#\">Creepy Clay Creatures (Ages: 8-10)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/2b832441-8199-4eda-9347-a8d13d73ce94_Long_Creepy_Creatures.jpeg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Celebrate Halloween with clay! In this workshop, students will use clay to sculpt their own creepy Halloween creatures of choices, from silly ghosts and monsters to creepy bats and cats. With this project, basic hand-building techniques will be utilized to bring student’s imaginative creations to life. Pieces will be kiln-fired after being finished with colorful underglaze and glaze.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">All artwork will be available two to three weeks after the program has occurred and the School Office will contact participants via email with pick up instructions.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/24 – 10/24\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>Long, Charlotte\u003C/td>\n    \n        \u003Ctd class=\"\">8 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$165.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066014\" eventid=\"3066014\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$165.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066014\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4687', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321413'}
2026-08-05 01:24:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:29 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321413"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.768"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.768"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.768/text {}
2026-08-05 01:24:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.768/text HTTP/1.1" 200 0
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Cute & Crafty Critters (Ages: 4-7)\nCalling all animal lovers to dive into the adorable world of baby creatures! Students will create squishy animals, animal masks, and clay critters. Each afternoon, campers will explore how animals grow and play through hands-on activities and imaginative crafts. And to top it all off—Slime Time Friday!\nAdditional Information:\nParents: Please pack a water bottle as well as a peanut free snack.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/17 – 8/21 Mo Tu We Th Fr 01:00 PM – 04:00 PM Bloom, Lori 4 - 8 $465.00 View 5\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '753', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.768"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.768'}, 'outerHTML']}
2026-08-05 01:24:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321413\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321413\" onclick=\"return false;\" href=\"#\">Cute &amp; Crafty Critters (Ages: 4-7)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/2f0a4d52-91a0-4de7-b9c1-ec6916bc21d0_BloomL_CuteCraftyCritters.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Calling all animal lovers to dive into the adorable world of baby creatures! Students will create squishy animals, animal masks, and clay critters. Each afternoon, campers will explore how animals grow and play through hands-on activities and imaginative crafts. And to top it all off—Slime Time Friday!\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Parents: Please pack a water bottle as well as a peanut free snack.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/17 – 8/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=113806\">Bloom, Lori\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">4 - 8\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2956974\" eventid=\"2956974\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">5\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"5\" registertype=\"register\" onclick=\"return false;\" eventid=\"2956974\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5665', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=302803'}
2026-08-05 01:24:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:33 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=302803"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.775"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.775"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.775/text {}
2026-08-05 01:24:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.775/text HTTP/1.1" 200 0
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Darkroom Printing - Large!\nEver wonder what your negatives would look like printed extremely large? This class will investigate the darkroom print in 20 x 24” format using 35mm, 120mm or 4x5” film negatives. An overview of archival processing will be demonstrated. Bring your own negatives and we will make big exhibition quality prints. Limited to 5 students.\nAdditional Information:\nList of Materials: Students should bring Photographic Enlarging Paper 20”x24” largest size (Fiber or RC) and Negatives to Print (35mm – 4”x5”)\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n12/11 – 12/11 Fr 10:00 AM – 03:00 PM Dunbar, Bruce 18 & up $225.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '701', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.775"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.775'}, 'outerHTML']}
2026-08-05 01:24:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"302803\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"302803\" onclick=\"return false;\" href=\"#\">Darkroom Printing - Large!\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/a1ac11b3-5036-4ebc-acd4-f04360d95a7e_bdunbar_Large Printing_Fall24.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Ever wonder what your negatives would look like printed extremely large? This class will investigate the darkroom print in 20 x 24” format using 35mm, 120mm or 4x5” film negatives. An overview of archival processing will be demonstrated. Bring your own negatives and we will make big exhibition quality prints. Limited to 5 students.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: Students should bring Photographic Enlarging Paper 20”x24” largest size (Fiber or RC) and Negatives to Print (35mm – 4”x5”)\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/11 – 12/11\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 03:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=87648\">Dunbar, Bruce\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$225.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066064\" eventid=\"3066064\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$225.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066064\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4230', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328462'}
2026-08-05 01:24:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:36 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328462"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.782"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.782"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.782/text {}
2026-08-05 01:24:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.782/text HTTP/1.1" 200 0
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Design an Autumn Habitat for Fairies, Trolls, Critters - Mixed Media Clay (Ages: 5-10)\nCreate a special habitat with New England Autumn flair for miniature critters/fairies using clay, flowers, materials from nature, more.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nStudents should bring a hearty peanut free snack &  a 16\" x 16\" sturdy box to transfer their artwork home\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n11/21 – 11/21 Sa 09:00 AM – 01:00 PM Kot, Marta Violette 5 - 11 $195.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '589', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.782"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.782'}, 'outerHTML']}
2026-08-05 01:24:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328462\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328462\" onclick=\"return false;\" href=\"#\">Design an Autumn Habitat for Fairies, Trolls, Critters - Mixed Media Clay (Ages: 5-10)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/719a25a7-938c-439f-b110-46e0d4bc30d4_KotM_DesignAutumnHabitatFairiesTrollsCrittersMixedMedia Clay Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Create a special habitat with New England Autumn flair for miniature critters/fairies using clay, flowers, materials from nature, more.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students should bring a hearty peanut free snack &amp; \u003C/span>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;a 16\" x 16\" sturdy box to transfer their artwork home\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/21 – 11/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$195.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066049\" eventid=\"3066049\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$195.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066049\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4454', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328445'}
2026-08-05 01:24:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:40 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328445"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.788"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.788"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.788/text {}
2026-08-05 01:24:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.788/text HTTP/1.1" 200 0
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Digital Illustration Jump Start: Procreate on the iPad\nReady to start drawing digitally but not sure where to begin? This one-night workshop is designed as a practical introduction to creating artwork with **Procreate, the Apple Pencil, and the iPad**. Students will learn the essential tools, settings, brushes, layers, and shortcuts that make digital drawing feel intuitive and enjoyable. Through live demonstrations and guided exercises, we'll explore how Procreate can function as a complete portable sketchbook, painting studio, and illustration workspace. Perfect for beginners and traditional artists making the transition to digital media, this workshop focuses on building confidence rather than technical overwhelm. Students will learn how to sketch, ink, paint, and organize artwork using a simple professional workflow while discovering techniques that make the Apple Pencil feel natural and responsive. By the end of the evening, participants will have completed a finished digital illustration and gained the knowledge needed to continue creating artwork on their own.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: Students should bring in their personal iPad and will need an Apple Pencil.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n11/13 – 11/13 Fr 06:00 PM – 09:00 PM DeLoca, Jonathan 16 - 99 $145.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1433', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.788"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.788'}, 'outerHTML']}
2026-08-05 01:24:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328445\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328445\" onclick=\"return false;\" href=\"#\">Digital Illustration Jump Start: Procreate on the iPad\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/7db8c948-3ad8-4c3d-8624-0f4edb55e23d_DeLocaJ_DigitalIllustrationJumpStartProcreateiPad.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Ca>\u003Cspan style=\"line-height: 115%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Ready to start drawing digitally but not sure where to begin? This one-night workshop is designed as a practical introduction to creating artwork with \u003C/span>\u003Cb>\u003Cspan style=\"line-height: 115%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">**Procreate, the Apple Pencil, and the iPad**.\u003C/span>\u003C/b>\u003Cspan style=\"line-height: 115%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> Students will learn the essential tools, settings, brushes, layers, and shortcuts that make digital drawing feel intuitive and enjoyable. Through live demonstrations and guided exercises, we'll explore how Procreate can function as a complete portable sketchbook, painting studio, and illustration workspace. Perfect for beginners and traditional artists making the transition to digital media, this workshop focuses on building confidence rather than technical overwhelm. Students will learn how to sketch, ink, paint, and organize artwork using a simple professional workflow while discovering techniques that make the Apple Pencil feel natural and responsive. By the end of the evening, participants will have completed a finished digital illustration and gained the knowledge needed to continue creating artwork on their own\u003C/span>\u003C/a>\u003Cspan style=\"line-height: 115%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 12px\">List of Materials: Students should bring in their personal iPad and will need an Apple Pencil.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/13 – 11/13\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">06:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=135676\">DeLoca, Jonathan\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">16 - 99\u003C/td>\n    \n        \u003Ctd class=\"\">$145.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066042\" eventid=\"3066042\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$145.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066042\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5801', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=168501'}
2026-08-05 01:24:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:44 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=168501"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.797"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.797"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.797/text {}
2026-08-05 01:24:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.797/text HTTP/1.1" 200 0
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Drawing & Painting in Combination\nLEVEL: ALL LEVELS\nThis course is designed to instruct students in the fundamentals of drawing, composition and the basic techniques of painting. Mixing and applying paint will be demonstrated. Subjects such as still life, figure and landscape will be covered. Those who wish to draw exclusively are guided from a beginning thumbnail to a finished presentation. Likewise, the painters will learn their craft step-by-step.\nAdditional Information:\nList of Materials: A.McFarlane Supply List.pdf\n*Class will not meet 11/7*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/19 – 12/5 Sa 09:30 AM – 12:30 PM McFarlane, Alex 18 & up $605.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '715', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.797"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.797'}, 'outerHTML']}
2026-08-05 01:24:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"168501\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"168501\" onclick=\"return false;\" href=\"#\">Drawing &amp; Painting in Combination\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/158471687971258_chemical_pond.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">This course is designed to instruct students in the fundamentals of drawing, composition and the basic techniques of painting. Mixing and applying paint will be demonstrated. Subjects such as still life, figure and landscape will be covered. Those who wish to draw exclusively are guided from a beginning thumbnail to a finished presentation. Likewise, the painters will learn their craft step-by-step.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial; color: rgb(0, 0, 0)\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/A.McFarlane%20Drawing%20%20Painting%20in%20Combination.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial; color: rgb(0, 0, 0)\">A.McFarlane Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial; color: rgb(0, 0, 0)\">*Class will not meet 11/7*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/19 – 12/5\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75707\">McFarlane, Alex\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$605.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065958\" eventid=\"3065958\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$605.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065958\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4916', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=316559'}
2026-08-05 01:24:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=316559"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.806"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.806"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.806/text {}
2026-08-05 01:24:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.806/text HTTP/1.1" 200 0
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Drawing Basics: Composition and the Still Life\nA beginner drawing class designed to develop basic drawing skills to create a three dimensional illusion onto a flat surface using drawing tools and paper. The class explores line expression, line variation, scale and proportion, depth, composition, and value to render an image. Utilizing a still life to draw from and instructor demonstrations, student implement these drawing skills into their own work. The course encourages group critique and discussion, and provides one on one instructor feedback.\nAdditional Information:\nList of Materials: E.Harvey Supply List.pdf\n*Class will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/7 – 12/2 We 06:00 PM – 09:00 PM Harvey, Evelyn 18 & up $465.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '808', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.806"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.806'}, 'outerHTML']}
2026-08-05 01:24:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"316559\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"316559\" onclick=\"return false;\" href=\"#\">Drawing Basics: Composition and the Still Life\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/0b59520a-6122-4395-bb61-d64c730a8125_Harvey_drawingbasics.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">A beginner drawing class designed to develop basic drawing skills to create a three dimensional illusion onto a flat surface using drawing tools and paper. The class explores line expression, line variation, scale and proportion, depth, composition, and value to render an image. Utilizing a still life to draw from and instructor demonstrations, student implement these drawing skills into their own work. The course encourages group critique and discussion, and provides one on one instructor feedback.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/E.Harvey Drawing Basics Composition and the Still Life.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">E.Harvey Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/7 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">06:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=125261\">Harvey, Evelyn\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065993\" eventid=\"3065993\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065993\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4823', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328443'}
2026-08-05 01:24:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:50 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328443"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.813"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.813"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.813/text {}
2026-08-05 01:24:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.813/text HTTP/1.1" 200 0
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Drawing for Illustration\nLEVEL: ALL LEVELS\nIn this course we will work in the traditional method of many of the illustration greats. Using models we will stage a ‘scene’ for students to make direct observational drawings. We will work with live models for 2 sessions. In the following 2 sessions, students will use their drawings with the premise of combining elements to make fine personal compositions. We will then focus on bringing our drawings to a finish using students' preferred materials. (eg. acrylic, watercolor, pastels, markers, collage etc.) Our goal over an 8 week course is to create two finished pieces. Experimentation and creative expression is encouraged. This class is for anyone wanting to create finished pieces from their drawings, students and adults creating portfolio pieces and experienced artists looking to challenge themselves.\nAdditional Information:\nList of Materials: Drawing boards are recommended. Sketch pads and soft pencils for the first sessions and whatever mediums the students prefer going forward.\n*Class will not meet 9/22, 10/20*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 11/10 Tu 06:30 PM – 08:30 PM Cronin, Timothy 18 & up $410.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1243', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.813"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.813'}, 'outerHTML']}
2026-08-05 01:24:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328443\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328443\" onclick=\"return false;\" href=\"#\">Drawing for Illustration\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/604a02ac-2af4-4a43-a5b2-f6c460ea5221_CroninT_DrawingForIllustration.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 14px\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 14px\">In this course we will work in the traditional method of many of the illustration greats. Using models we will stage a ‘scene’ for students to make direct observational drawings. We will work with live models for 2 sessions. In the following 2 sessions, students will use their drawings with the premise of combining elements to make fine personal compositions. We will then focus on bringing our drawings to a finish using students' preferred materials. (eg. acrylic, watercolor, pastels, markers, collage etc.) Our goal over an 8 week course is to create two finished pieces. Experimentation and creative expression is encouraged. This class is for anyone wanting to create finished pieces from their drawings, students and adults creating portfolio pieces and experienced artists looking to challenge themselves.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: Drawing boards are recommended. Sketch pads and soft pencils for the first sessions and whatever mediums the students prefer going forward.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 9/22, 10/20*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 11/10\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">06:30 PM – 08:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=121566\">Cronin, Timothy\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$410.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065913\" eventid=\"3065913\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$410.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065913\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5100', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=322736'}
2026-08-05 01:24:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:54 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=322736"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.821"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.821"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.821/text {}
2026-08-05 01:24:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.821/text HTTP/1.1" 200 0
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Drawing Materials and Process: Portraiture\nTake your time and engage the model with measurements and construction lines. The likeness and spirit will begin to reveal themselves as your focus is rewarded. We will look at the underlying structure of the head as well as surface events. Graphite, red chalk, charcoal, and ink wash will be explored. Demonstrations at various points of the process will be given as well as advice on drawings the student may be working on outside class.\nAdditional Information:\nList of Materials: Students should bring Drawing paper 16x20 or bigger, Graphite pencils: hb,2b, Eraser, Straight edge\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/27 – 11/24 Tu 09:00 AM – 12:00 PM Wiest, Justin 18 & up $395.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '786', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.821"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.821'}, 'outerHTML']}
2026-08-05 01:24:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"322736\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"322736\" onclick=\"return false;\" href=\"#\">Drawing Materials and Process: Portraiture\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/ad848a43-09eb-4053-9e54-7d9b2abddea8_WiestJ_DrawingMaterialsTechniquesPortraiture Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Take your time and engage the model with measurements and construction lines. The likeness and spirit will begin to reveal themselves as your focus is rewarded. We will look at the underlying structure of the head as well as surface events. Graphite, red chalk, charcoal, and ink wash will be explored. Demonstrations at various points of the process will be given as well as advice on drawings the student may be working on outside class.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: Students should bring \u003C/span>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Drawing paper 16x20 or bigger, Graphite pencils: hb,2b, Eraser, Straight edge\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/27 – 11/24\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75733\">Wiest, Justin\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$395.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066019\" eventid=\"3066019\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$395.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066019\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4414', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=316596'}
2026-08-05 01:24:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:57 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:24:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:24:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=316596"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:24:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:24:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.827"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.827"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:58 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.827/text {}
2026-08-05 01:24:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.827/text HTTP/1.1" 200 0
2026-08-05 01:24:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Drawing Materials and Process: Sketchbook Development\nLEVEL: ALL LEVELS\nSketchbook Drawing is how our brain visually reveals itself. Initial sketches begin the creative process. The class will investigate still life, landscape (perspective), and people (model). Contours, shading, and hatching are some of the topics that will be covered. Conte, ink, charcoal, and graphite are some of the materials that will be used.  The initial sketches will be worked up into more refined drawings. Students will be given weekly prompts to investigate graphically.\nAdditional Information:\nA model will be present for one class day.\nList of Materials: J.Wiest Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 10/13 Tu 09:00 AM – 12:00 PM Wiest, Justin 18 & up $340.00 View 10\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:24:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:24:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.827"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:24:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.827'}, 'outerHTML']}
2026-08-05 01:24:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:24:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"316596\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"316596\" onclick=\"return false;\" href=\"#\">Drawing Materials and Process: Sketchbook Development\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/ec9f0715-2ed6-4716-bbcc-d6267298b5a5_WiestJ_DrawingMaterialsTechniquesSketchbookDevelopment Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; background: white; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Sketchbook Drawing is how our brain visually reveals itself. Initial sketches begin the creative process. The class will investigate still life, landscape (perspective), and people (model). Contours, shading, and hatching are some of the topics that will be covered. Conte, ink, charcoal, and graphite are some of the materials that will be used.\u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">The initial sketches will be worked up into more refined drawings. Students will be given weekly prompts to investigate graphically.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"line-height: 115%; background: white; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">A model will be present for one class day.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/J.Wiest Drawing Materials and Process Sketchbook Development.pdf\" target=\"_blank\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">J.Wiest Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 10/13\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75733\">Wiest, Justin\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$340.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065898\" eventid=\"3065898\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$340.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065898\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5344', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:24:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=308866'}
2026-08-05 01:25:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:01 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=308866"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.837"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.837"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:02 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.837/text {}
2026-08-05 01:25:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.837/text HTTP/1.1" 200 0
2026-08-05 01:25:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Drawing on Location: Urban and Natural Landscapes\nLEVEL: ALL LEVELS\nThis class will take place at various locations around Lower Fairfield County, with a focus on enhancing on-site drawing skills. Students will learn to use composition, line, and value to capture the mood and story of each unique place. Each session will begin with a brief instructional overview, followed by individual work time where the instructor offers personalized feedback and support. At the end of each class, students will share their work and engage in a group discussion to reflect on their progress and insights.\nAdditional Information:\nRecommended that students bring a folding chair and drawing board\nList of Materials: T.Cronin Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/19 – 10/17 Sa 10:00 AM – 12:00 PM Cronin, Timothy 18 & up $245.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '892', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.837"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.837'}, 'outerHTML']}
2026-08-05 01:25:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"308866\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"308866\" onclick=\"return false;\" href=\"#\">Drawing on Location: Urban and Natural Landscapes\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/9c5468dc-bb28-4767-89f0-324328cf0b9e_CroninT_DrawingLocationUrbanNaturalLandscapes Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This class will take place at various locations around Lower Fairfield County, with a focus on enhancing on-site drawing skills. Students will learn to use composition, line, and value to capture the mood and story of each unique place. Each session will begin with a brief instructional overview, followed by individual work time where the instructor offers personalized feedback and support. At the end of each class, students will share their work and engage in a group discussion to reflect on their progress and insights.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Recommended that students bring a folding chair and drawing board\u003C/span>\u003C/em>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/T.Cronin Drawing on Location.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">T.Cronin Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/19 – 10/17\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=121566\">Cronin, Timothy\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$245.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065959\" eventid=\"3065959\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$245.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065959\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5038', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=264889'}
2026-08-05 01:25:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:05 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=264889"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.847"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.847"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:06 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.847/text {}
2026-08-05 01:25:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.847/text HTTP/1.1" 200 0
2026-08-05 01:25:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Dream Home: Sculpting with Wood, Paint and Clay (Ages: 5-10)\nWhere painting and clay sculpting are included every week, mARTa's Summer Art Studio encourages open ended experimentation, creative expression, exploration, and appreciation, of art. While building friendships and learning about the properties of art materials, children are guided to engage with imagination, and to contribute meaning to artwork. They will be introduced to a variety of techniques while exploring play in art, and they will develop their creative abilities to self-express and see and experience the world in new ways. Each day will include a variety of materials, surprises, outdoor recess with games and stories about well-known artists. Art materials may include watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, things that shine, beads, paint markers, more. Gentle discussions about the artwork in progress and art history will be introduced.\nThroughout the week children may work in the art studio, explore the lush Silvermine outdoor environment, and visit the Silvermine galleries & exhibitions. mARTa's sensory rich studio environment is designed to make one's learning more complex while supporting imagination and play in a caring environment. It's a place where children will develop meaningful connections to self and their ever-changing surrounding environment. All materials will be supplied.\nAdditional Information:\nPlease pack a peanut free snack and drink. Please bring a sturdy container or box, labeled with student’s first & last name to transport clay objects home.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/10 – 8/14 Mo Tu We Th Fr 01:00 PM – 04:00 PM Kot, Marta Violette 5 - 11 $465.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1918', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.847"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.847'}, 'outerHTML']}
2026-08-05 01:25:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"264889\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"264889\" onclick=\"return false;\" href=\"#\">Dream Home: Sculpting with Wood, Paint and Clay (Ages: 5-10)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/802de313-3da1-4e8f-aa62-2577371fc21a_KotM_DreamHome.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Where painting and clay sculpting are included every week, mARTa's Summer Art Studio encourages open ended experimentation, creative expression, exploration, and appreciation, of art. While building friendships and learning about the properties of art materials, children are guided to engage with imagination, and to contribute meaning to artwork. They will be introduced to a variety of techniques while exploring play in art, and they will develop their creative abilities to self-express and see and experience the world in new ways. Each day will include a variety of materials, surprises, outdoor recess with games and stories about well-known artists. Art materials may include watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, things that shine, beads, paint markers, more. Gentle discussions about the artwork in progress and art history will be introduced.\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Throughout the week children may work in the art studio, explore the lush Silvermine outdoor environment, and visit the Silvermine galleries &amp; exhibitions. mARTa's sensory rich studio environment is designed to make one's learning more complex while supporting imagination and play in a caring environment. It's a place where children will develop meaningful connections to self and their ever-changing surrounding environment. All materials will be supplied.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Please pack a peanut free snack and drink. Please bring a sturdy container or box, labeled with student’s first &amp; last name to transport clay objects home.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/10 – 8/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2957686\" eventid=\"2957686\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"-4\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2957686\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '7162', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328463'}
2026-08-05 01:25:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:09 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328463"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.864"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.864"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:10 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.864/text {}
2026-08-05 01:25:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.864/text HTTP/1.1" 200 0
2026-08-05 01:25:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Dreamscapes in Watercolor\nLEVEL: ALL LEVELS\nStep into the world of soft gradients and atmosphere in Dreamscapes, a five-week watercolor course designed for artists of all experience levels. Through subtle washes, layered color, and wet-into-wet techniques, students will create ethereal landscapes and surreal scenes inspired by nature. This course encourages experimentation and creative play in a supportive studio environment. By the end of the session, students will complete a series of original landscape paintings, gaining greater confidence in using watercolor as a medium for expressive storytelling.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nList of Materials: S.Giuliano Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/17 – 10/15 Th 01:00 PM – 04:00 PM Giuliano, Samantha 18 & up $325.00 View 10\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '912', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.864"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.864'}, 'outerHTML']}
2026-08-05 01:25:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328463\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328463\" onclick=\"return false;\" href=\"#\">Dreamscapes in Watercolor\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/62d99a5d-33fc-40cb-8158-b207e772ec77_GiulianoS_DreamscapesWatercolor.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Step into the world of soft gradients and atmosphere in Dreamscapes, a five-week watercolor course designed for artists of all experience levels. Through subtle washes, layered color, and wet-into-wet techniques, students will create ethereal landscapes and surreal scenes inspired by nature. \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This course encourages experimentation and creative play in a supportive studio environment. By the end of the session, students will complete a series of original landscape paintings, gaining greater confidence in using watercolor as a medium for expressive storytelling.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/S.Giuliano Dreamscapes in Watercolor.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">S.Giuliano Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 10/15\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=137073\">Giuliano, Samantha\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$325.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065941\" eventid=\"3065941\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$325.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065941\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5207', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=264800'}
2026-08-05 01:25:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=264800"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.865"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.865"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:15 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.865/text {}
2026-08-05 01:25:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.865/text HTTP/1.1" 200 0
2026-08-05 01:25:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Early Years: Exploration & Process Art (Ages: 3-6)\nProcess art is a way of exploring materials without being overly concerned about the final project. It’s a time to play, create, get messy and just have fun! Your Amazing Little Artists will use a variety of materials to explore with in this studio class. Students will be exposed to story books, paint, oil pastels, watercolors, tissue paper, cutting, gluing and more! Friday is slime day! This class is hands on and can be super messy! Please send an extra set of clothes in with your child, along with a water bottle and a peanut free snack!\nAdditional Information:\nWe kindly ask that all children attending this program be potty trained and those who may need it come prepared with extra clothing.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/3 – 8/7 Mo Tu We Th Fr 09:00 AM – 12:00 PM Bloom, Lori 3 - 7 $465.00 View 0\nADD TO WAITLIST\n8/10 – 8/14 Mo Tu We Th Fr 09:00 AM – 12:00 PM Bloom, Lori 3 - 7 $465.00 View 0\nADD TO WAITLIST\n8/17 – 8/21 Mo Tu We Th Fr 09:00 AM – 12:00 PM Bloom, Lori 3 - 7 $465.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1280', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.865"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.865'}, 'outerHTML']}
2026-08-05 01:25:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"264800\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"264800\" onclick=\"return false;\" href=\"#\">Early Years: Exploration &amp; Process Art (Ages: 3-6)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/6b774a2d-63e5-42ae-b206-7e0863c65cab_BloomL_EarlyYears Cropped.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"color: rgb(32, 33, 36); font-size: 10.5pt; font-family: Arial; letter-spacing: 0.15pt\">\u003Cspan style=\"color: rgb(0, 0, 0); background: white; font-size: 14px; font-family: Arial; letter-spacing: 0.15pt\">Process art is a way of exploring materials without being overly concerned about the final project. It’s a time to play, create, get messy and just have fun! Your Amazing Little Artists will use a variety of materials to explore with in this studio class. Students will be exposed to story books, paint, oil pastels, watercolors, tissue paper, cutting, gluing and more! Friday is slime day! This class is hands on and can be super messy! Please send an extra set of clothes in with your child, along with a water bottle and a peanut free snack!\u003C/span>\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"background: white; letter-spacing: 0.15pt; font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">We kindly ask that all children attending this program be potty trained and those who may need it come prepared with extra clothing.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/3 – 8/7\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=113806\">Bloom, Lori\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">3 - 7\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2951587\" eventid=\"2951587\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"-3\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2951587\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/10 – 8/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=113806\">Bloom, Lori\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">3 - 7\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2951625\" eventid=\"2951625\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"-2\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2951625\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/17 – 8/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=113806\">Bloom, Lori\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">3 - 7\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2951635\" eventid=\"2951635\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"-4\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2951635\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '8393', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=253769'}
2026-08-05 01:25:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=253769"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.878"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.878"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.878/text {}
2026-08-05 01:25:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.878/text HTTP/1.1" 200 0
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Enameling on the Edge: Intermediate Level\nLEVEL: INTERMEDIATE-ADVANCED\nThis intermediate technique-based course will continue the exploration of traditional enamel skills, such as cloisonné and champlevé. In addition, newer enameling procedures will be introduced. Classes are small so register early. Open to only experienced enamelists.\nAdditional Information:\nList of Materials: G.Bradshaw Supply List.pdf\nOpen Studio: Open Studio Spring 2026 - Jewelry.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 12/1 Tu 10:00 AM – 01:00 PM Bradshaw, Gail 18 & up $650.00 View 1\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '622', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.878"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.878'}, 'outerHTML']}
2026-08-05 01:25:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"253769\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"253769\" onclick=\"return false;\" href=\"#\">Enameling on the Edge: Intermediate Level\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/164381380360584_capture.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: INTERMEDIATE-ADVANCED\u003C/span>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This intermediate technique-based course will continue the exploration of traditional enamel skills, such as cloisonné and champlevé. In addition, newer enameling procedures will be introduced. Classes are small so register early. Open to only experienced enamelists.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important\" href=\"files/read?file=files/G.Bradshaw Enameling on the Edge.pdf\" target=\"_blank\">\u003Cu>\u003Cspan style=\"color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">G.Bradshaw Supply List.pdf\u003C/span>\u003C/u>\u003C/a>\u003C/p>\u003C/div>\u003Cp>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Jewelry_SP2026.pdf\" target=\"_blank\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio Spring 2026 - Jewelry.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75667\">Bradshaw, Gail\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$650.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066020\" eventid=\"3066020\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">1\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$650.00\" openslots=\"1\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066020\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5116', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=296149'}
2026-08-05 01:25:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:20 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=296149"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.886"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.886"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:21 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.886/text {}
2026-08-05 01:25:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.886/text HTTP/1.1" 200 0
2026-08-05 01:25:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Encaustic (Hot Wax) Painting for Beginners\nLEVEL: BEGINNER\nExplore the medium that works with a mixture of beeswax and pigment, giving your paintings a beautiful surface and depth. Learn the techniques, methods and history of the medium. A demonstration will start each class, followed by time to experiment or create your own painting, with individual instruction. No painting experience necessary. The school will supply major equipment. Other supplies can be purchased locally or online. This is a small class that gives students individual attention.\nAdditional Information:\nList of Materials: N.Hyon Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/28 – 11/2 Mo 07:00 PM – 09:00 PM Hyon, Nash 18 & up $325.00 View 6\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '776', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.886"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.886'}, 'outerHTML']}
2026-08-05 01:25:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"296149\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"296149\" onclick=\"return false;\" href=\"#\">Encaustic (Hot Wax) Painting for Beginners\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/b86780fa-7d71-4f5f-822d-0560ee9067dd_Hyon.N_EncausticBeginner.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: BEGINNER\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Explore the medium that works with a mixture of beeswax and pigment, giving your paintings a beautiful surface and depth. Learn the techniques, methods and history of the medium. A demonstration will start each class, followed by time to experiment or create your own painting, with individual instruction. No painting experience necessary. The school will supply major equipment. Other supplies can be purchased locally or online. This is a small class that gives students individual attention.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/N.Hyon Painting with Encaustics UPDATED.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">N.Hyon Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/28 – 11/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$325.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065982\" eventid=\"3065982\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">6\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$325.00\" openslots=\"6\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065982\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4789', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328464'}
2026-08-05 01:25:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328464"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.894"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.894"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.894/text {}
2026-08-05 01:25:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.894/text HTTP/1.1" 200 0
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Encaustic Basics: Painting with Wax, Fire & Color\nDiscover the luminous, tactile world of encaustic painting. In this beginner-friendly course, you will explore the unique qualities of  encaustic paint (beeswax, damar resin, and pigment), and heat as you build rich, layered surfaces full of depth and texture. Each week introduces essential techniques, including preparing your surface, applying and fusing paint, building layers, creating both smooth and textured finishes, carving and scraping, and incorporating mixed media elements. Designed to encourage both skill-building and personal exploration, this five week class will give you the confidence and foundation to continue experimenting with this dynamic and versatile medium on your own artistic journey.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nList of Materials: H.Levy Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/17 – 10/15 Th 09:00 AM – 12:00 PM Levy, Holli 18 & up $355.00 View 6\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1055', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.894"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.894'}, 'outerHTML']}
2026-08-05 01:25:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328464\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328464\" onclick=\"return false;\" href=\"#\">Encaustic Basics: Painting with Wax, Fire &amp; Color\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/d0bb73f0-096a-46ed-baf6-b2478f34d1fa_LevyH_EncausticBasicsWaxFireColor.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Discover the luminous, tactile world of encaustic painting. In this beginner-friendly course, you will explore the unique qualities of\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">encaustic paint (beeswax, damar resin, and pigment), and heat as you build rich, layered surfaces full of depth and texture. Each week introduces essential techniques, including preparing your surface, applying and fusing paint, building layers, creating both smooth and textured finishes, carving and scraping, and incorporating mixed media elements. Designed to encourage both skill-building and personal exploration, this five week class will give you the confidence and foundation to continue experimenting with this dynamic and versatile medium on your own artistic journey.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/H.Levy Encaustic Basics Painting with Wax Fire and Color.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">H.Levy Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 10/15\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=139222\">Levy, Holli\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$355.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065933\" eventid=\"3065933\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">6\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$355.00\" openslots=\"6\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065933\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5346', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=288858'}
2026-08-05 01:25:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:27 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=288858"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.903"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.903"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.903/text {}
2026-08-05 01:25:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.903/text HTTP/1.1" 200 0
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Experimental Darkroom Projects\nLEVEL: ALL LEVELS\nIn this analog film photography class, the emphasis will be on experimental processes in the darkroom. Techniques and processes introduced include plant-based developers, Multiple Exposure, Advanced Photograms, Sabettier Effect, Watergrams and more. Demonstrations on the techniques and artist’s examples will be shared. No previous darkroom experience needed, come ready to play and experiment in the darkroom.\nAdditional Information:\nList of Materials: The instructor will share details regarding the class supplies during the first class meeting.\n*Class will not meet 11/26*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/17 – 12/3 Th 09:30 AM – 12:30 PM Dunbar, Bruce 18 & up $750.00 View 6\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '788', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.903"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.903'}, 'outerHTML']}
2026-08-05 01:25:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"288858\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"288858\" onclick=\"return false;\" href=\"#\">Experimental Darkroom Projects\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/76e04552-a78c-44c6-b923-f06a04f6d27e_Dunbar_Experimental_Darkroom_Fall23.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"line-height: 106%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">In this analog film photography class, the emphasis will be on experimental processes in the darkroom. Techniques and processes introduced include plant-based developers, Multiple Exposure, Advanced Photograms, Sabettier Effect, Watergrams and more. Demonstrations on the techniques and artist’s examples will be shared. No previous darkroom experience needed, come ready to play and experiment in the darkroom.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: rgb(0, 0, 0)\">List of Materials: The instructor will share details regarding the class supplies during the first class meeting.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: rgb(0, 0, 0); font-size: 12px\">*Class will not meet 11/26*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=87648\">Dunbar, Bruce\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$750.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065934\" eventid=\"3065934\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">6\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$750.00\" openslots=\"6\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065934\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4667', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=308494'}
2026-08-05 01:25:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=308494"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.911"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.911"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.911/text {}
2026-08-05 01:25:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.911/text HTTP/1.1" 200 0
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Experimental Photo Processes (Ages: 8-12)\nWant to make unique and one of a kind photographic prints? Over the week different methods of camera and camera-less photography will be investigated. Emphasis is placed on creativity and exploration of image making and print making. Come ready to play and experiment with photographic methods like watergrams, chemigrams, silver gelatin and more. Student should bring a digital or smartphone camera if possible.\nAdditional Information:\nStudent should bring a digital or smartphone camera. Please pack a peanut-free snack and bottle of water.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/17 – 8/21 Mo Tu We Th Fr 01:00 PM – 04:00 PM Dunbar, Bruce 8 - 13 $510.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '911', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.911"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.911'}, 'outerHTML']}
2026-08-05 01:25:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"308494\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"308494\" onclick=\"return false;\" href=\"#\">Experimental Photo Processes (Ages: 8-12)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/4e9310c7-0d5e-4e4e-85e1-f3a9f3858ecc_B Dunbar Experimental Photo Camp 8-11 Smmr 2025.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Want to make unique and one of a kind photographic prints? Over the week different methods of camera and camera-less photography will be investigated. Emphasis is placed on creativity and exploration of image making and print making. Come ready to play and experiment with photographic methods like watergrams, chemigrams, silver gelatin and more. Student should bring a digital or smartphone camera if possible.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Student should bring a digital or smartphone camera. \u003C/span>\u003Cspan style=\"line-height: 107%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Please pack a peanut-free snack and bottle of water.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/17 – 8/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=87648\">Dunbar, Bruce\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">8 - 13\u003C/td>\n    \n        \u003Ctd class=\"\">$510.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2954893\" eventid=\"2954893\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$510.00\" openslots=\"-1\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2954893\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6103', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=253630'}
2026-08-05 01:25:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:34 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=253630"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.921"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.921"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.921/text {}
2026-08-05 01:25:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.921/text HTTP/1.1" 200 0
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Exploring Drawing, Painting and More! (Ages: 10-13)\nIn this course students will explore the elements of art (color, form, line, shape, space, texture, and value) through various artistic media. Subject matter will include still-life, landscape, abstraction and more. A different art technique will be introduced each week giving the young artist a chance to have fun exploring a variety of materials.\nAdditional Information:\nList of Materials: All materials are provided for this offering.\nForms are required at the time of registration, click here to access.\n*Class will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/16 – 12/2 We 04:30 PM – 06:30 PM Siegel, Karen 10 - 14 $530.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '749', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.921"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.921'}, 'outerHTML']}
2026-08-05 01:25:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"253630\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"253630\" onclick=\"return false;\" href=\"#\">Exploring Drawing, Painting and More! (Ages: 10-13)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/31f2eb75-ffad-483b-adad-e2f0fcb175e1_Siegel_rabbit.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv class=\"page\" style=\"color: rgb(0, 0, 0); font-family: -webkit-standard; letter-spacing: normal\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">In this course students will explore the elements of art (color, form, line, shape, space, texture, and value) through various artistic media. Subject matter will include still-life, landscape, abstraction and more. A different art technique will be introduced each week giving the young artist a chance to have fun exploring a variety of materials.\u003C/span>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/School Year Youth Program Forms.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">*Class will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">04:30 PM – 06:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75726\">Siegel, Karen\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">10 - 14\u003C/td>\n    \n        \u003Ctd class=\"\">$530.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065931\" eventid=\"3065931\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$530.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065931\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5296', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=190933'}
2026-08-05 01:25:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:37 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=190933"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.929"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.929"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.929/text {}
2026-08-05 01:25:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.929/text HTTP/1.1" 200 0
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Exploring Drawing, Painting and More! (Ages: 7-9)\nIn this course students will explore the elements of art (color, form, line, shape, space, texture, and value) through various artistic media. Subject matter will include still-life, landscape, abstraction and more. A different art technique will be introduced each week giving the young artist a chance to have fun exploring a variety of materials.\nAdditional Information:\nList of Materials: All materials are provided for this offering. \nForms are required at the time of registration, click here to access.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 10/13 Tu 04:30 PM – 06:30 PM Siegel, Karen 7 - 10 $310.00 View 11\nREGISTER NOW\n10/27 – 12/1 Tu 04:30 PM – 06:30 PM Siegel, Karen 7 - 10 $340.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '811', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.929"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.929'}, 'outerHTML']}
2026-08-05 01:25:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"190933\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"190933\" onclick=\"return false;\" href=\"#\">Exploring Drawing, Painting and More! (Ages: 7-9)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/177015447953283_pop portrait.png\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv class=\"page\" style=\"color: rgb(0, 0, 0); font-family: -webkit-standard; letter-spacing: normal\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">In this course students will explore the elements of art (color, form, line, shape, space, texture, and value) through various artistic media. Subject matter will include still-life, landscape, abstraction and more. A different art technique will be introduced each week giving the young artist a chance to have fun exploring a variety of materials.\u003C/span>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: All materials are provided for this offering.&nbsp;\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/School Year Youth Program Forms.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 10/13\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">04:30 PM – 06:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75726\">Siegel, Karen\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">7 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$310.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065911\" eventid=\"3065911\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$310.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065911\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/27 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">04:30 PM – 06:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75726\">Siegel, Karen\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">7 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$340.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066022\" eventid=\"3066022\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$340.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066022\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6153', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=219014'}
2026-08-05 01:25:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:41 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=219014"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.938"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.938"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.938/text {}
2026-08-05 01:25:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.938/text HTTP/1.1" 200 0
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Exploring Soda Firing\nLEVEL: INTERMEDIATE - ADVANCED\nCreate work, glaze and fire your pottery in our newly built Soda Kiln and learn about this unique firing process from beginning to end. During the beginning of the semester we design work with this firing method in mind. Weekly demos will refine your skills and individual instruction. Mid semester, we will explore flashing slips and 7 new glazes, including new crystalline matte and ash glazes. As a class we will then prep for the firing and strategically load the kiln. At the end of the semester, we will fire the kiln collectively and participate in adding wood, baking soda and salt through the kilning. The class will also have access to the gas reduction kiln.\nAdditional Information:\nA firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\nList of Materials: Tool Kits & Clay are available for purchase in class\nOpen Studio: Open Studio Fall 2026 - Ceramics.pdf\n*Class will not meet 9/21*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/14 – 11/30 Mo 04:00 PM – 07:00 PM Puzzuoli, Jon 18 & up $820.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1339', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.938"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.938'}, 'outerHTML']}
2026-08-05 01:25:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"219014\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"219014\" onclick=\"return false;\" href=\"#\">Exploring Soda Firing\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/164442060276174_exploring.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-family: -webkit-standard\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: INTERMEDIATE - ADVANCED\u003C/span>\u003C/p>\u003Cdiv>\u003Cp>\u003Cspan style=\"letter-spacing: 0.15pt; background-color: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Create work, glaze and fire your pottery in our newly built Soda Kiln and learn about this unique firing process from beginning to end. During the beginning of the semester we design work with this firing method in mind. Weekly demos will refine your skills and individual instruction. Mid semester, we will explore flashing slips and 7 new glazes, including new crystalline matte and ash glazes. As a class we will then prep for the firing and strategically load the kiln. At the end of the semester, we will fire the kiln collectively and participate in adding wood, baking soda and salt through the kilning. The class will also have access to the gas reduction kiln.\u003C/span>\u003Cbr>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp style=\"background-color: rgb(255, 255, 255)\">\u003Cspan style=\"color: rgb(0, 0, 0); font-family: Arial; font-size: 12px; letter-spacing: 0.2px; background-color: rgb(255, 255, 255)\">A firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\u003C/span>\u003C/p>\u003Cp style=\"background-color: rgb(255, 255, 255)\">\u003Cspan style=\"font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">List of Materials:&nbsp;\u003C/span>\u003Cspan style=\"line-height: 12.84px; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Tool Kits &amp; Clay are available for purchase in class\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf\" target=\"_blank\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio Fall 2026 - Ceramics.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">*Class will not meet 9/21*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/14 – 11/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">04:00 PM – 07:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$820.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065894\" eventid=\"3065894\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$820.00\" openslots=\"-3\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"3065894\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6246', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=316494'}
2026-08-05 01:25:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:44 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=316494"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.949"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.949"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.949/text {}
2026-08-05 01:25:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.949/text HTTP/1.1" 200 0
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Expressive Abstract Landscapes\nIn this hands-on workshop, you'll paint on high-quality archival paper while exploring the expressive possibilities of abstract landscape art. Guided by artist and instructor Heather, you’ll learn how to work with GOLDEN fluid acrylics and mediums to build layered compositions with depth and vibrancy. Special emphasis will be placed on understanding and applying color principles—how to mix, balance, and use color intentionally to create atmosphere, contrast, and emotion in your work. Whether you're new to abstract painting or looking to deepen your creative practice, this workshop offers practical skills, color confidence, and an opportunity to develop your own expressive style.\nAdditional Information:\nList of Materials: H.Neilson Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/18 – 10/18 Su 10:00 AM – 03:30 PM Neilson, Heather 18 & up $240.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '955', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.949"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.949'}, 'outerHTML']}
2026-08-05 01:25:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"316494\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"316494\" onclick=\"return false;\" href=\"#\">Expressive Abstract Landscapes\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/13364d14-0691-47ce-a105-8e846a0d11a4_NeilsonH_ExpressiveAbstractLandscape.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">In this hands-on workshop, you'll paint on high-quality archival paper while exploring the expressive possibilities of abstract landscape art. Guided by artist and instructor Heather, you’ll learn how to work with GOLDEN fluid acrylics and mediums to build layered compositions with depth and vibrancy. Special emphasis will be placed on understanding and applying color principles—how to mix, balance, and use color intentionally to create atmosphere, contrast, and emotion in your work. Whether you're new to abstract painting or looking to deepen your creative practice, this workshop offers practical skills, color confidence, and an opportunity to develop your own expressive style.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/H.Neilson Expressive Abstract Landscape.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">H.Neilson Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/18 – 10/18\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 03:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=105614\">Neilson, Heather\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$240.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066008\" eventid=\"3066008\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$240.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066008\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4774', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321527'}
2026-08-05 01:25:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:48 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321527"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.957"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.957"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.957/text {}
2026-08-05 01:25:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.957/text HTTP/1.1" 200 0
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Faces & Figures! (Ages: 6-9)\nExplore faces, figures, and the art of seeing people through an artist’s eyes! In this fun and expressive weeklong camp, young artists will learn how to draw and paint people—starting with simple shapes and growing into full portraits and figures. Campers will explore how artists capture personality, movement, and emotion through line, color, and gesture. Each day introduces a new way to see and represent face and form —through self-portraits, silhouettes, and lively figure studies. Using materials like watercolor, acrylic and pastel, campers will experiment with proportion, expression, and creative backgrounds that bring their portraits to life.  By week’s end, each artist will have a colorful collection of portraits and figure drawings to share in a cheerful end-of-week art show.\nActivities include:\nDrawing faces and figures using fun observation games\nExploring emotion, gesture, and proportion     \nCreating self-portraits and group compositions\nLearning from famous portrait and figure artists       \nEnd-of-week art show for family and friends\nAdditional Information:\nParents: Please pack a water bottle as well as a peanut free snack.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/10 – 8/14 Mo Tu We Th Fr 09:00 AM – 12:00 PM Waters, Nell 6 - 10 $465.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1522', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.957"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.957'}, 'outerHTML']}
2026-08-05 01:25:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321527\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321527\" onclick=\"return false;\" href=\"#\">Faces &amp; Figures! (Ages: 6-9)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/0579851a-e167-4a20-aca8-35281906b747_WatersN_FacesFiguresAges6-9.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Explore faces, figures, and the art of seeing people through an artist’s eyes! In this fun and expressive weeklong camp, young artists will learn how to draw and paint people—starting with simple shapes and growing into full portraits and figures. Campers will explore how artists capture personality, movement, and emotion through line, color, and gesture. Each day introduces a new way to see and represent face and form —through self-portraits, silhouettes, and lively figure studies. Using materials like watercolor, acrylic and pastel, campers will experiment with proportion, expression, and creative backgrounds that bring their portraits to life.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">By week’s end, each artist will have a colorful collection of portraits and figure drawings to share in a cheerful end-of-week art show.\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Activities include:\u003C/span>\u003C/p>\u003Cul>\u003Cli>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Drawing faces and figures using fun observation games\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Exploring emotion, gesture, and proportion\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Creating self-portraits and group compositions\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Learning from famous portrait and figure artists\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">End-of-week art show for family and friends\u003C/span>\u003C/p>\u003C/li>\u003C/ul>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Parents: Please pack a water bottle as well as a peanut free snack.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/10 – 8/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=132562\">Waters, Nell\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">6 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2958039\" eventid=\"2958039\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"-3\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2958039\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '8284', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=166018'}
2026-08-05 01:25:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:51 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=166018"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.964"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.964"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.964/text {}
2026-08-05 01:25:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.964/text HTTP/1.1" 200 0
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Figure Drawing\nLEVEL: INTERMEDIATE-ADVANCED\nLearn the human figure’s complex construction while heightening your ability to draw a figure from observation. Working from the model, emphasis on gesture, balance and proportion will be stressed throughout to aid in the illusion of credibility posed figures. Students should leave this class with a better understanding of the figure’s key landmarks, form sense and construction as well as a greater ability to render a figure from life and from memory.\nAdditional Information:\nList of Materials: J.Wiest Supply List.pdf\n*Class will not meet 11/26*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/17 – 12/3 Th 09:30 AM – 12:30 PM Wiest, Justin 18 & up $755.00 View 14\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '759', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.964"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.964'}, 'outerHTML']}
2026-08-05 01:25:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"166018\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"166018\" onclick=\"return false;\" href=\"#\">Figure Drawing\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/158472801892202_mercedes.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); letter-spacing: normal; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">LEVEL: INTERMEDIATE-ADVANCED\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); letter-spacing: normal; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Learn the human figure’s complex construction while heightening your ability to draw a figure from observation. Working from the model, emphasis on gesture, balance and proportion will be stressed throughout to aid in the illusion of credibility posed figures. Students should leave this class with a better understanding of the figure’s key landmarks, form sense and construction as well as a greater ability to render a figure from life and from memory.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"text-decoration: underline blue !important\" href=\"files/read?file=files/J.Wiest Figure Drawing.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">J.Wiest Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 11/26*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75733\">Wiest, Justin\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$755.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065935\" eventid=\"3065935\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">14\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$755.00\" openslots=\"14\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065935\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4879', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328446'}
2026-08-05 01:25:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:55 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328446"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.973"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.973"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.973/text {}
2026-08-05 01:25:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.973/text HTTP/1.1" 200 0
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Figure Drawing Basics: Clothed & Costumed Quick Sketch\nLEVEL: ALL LEVELS\nLoosen up your figure drawing and build strong foundations through clothed and costumed figure studies in a fun, energetic studio environment. Using quick sketch exercises, short poses, and clear demos, students will learn a structural-gesture approach to drawing the human figure with confidence. Topics include rhythm lines, core forms, drapery, folds, and shadow mapping. Students will also work through longer lay-ins designed to strengthen observation, structure, and drawing organization.  Every week will feature artist spotlights, course handouts, instructor demos, and lectures designed to help students see clearly, simplify complex forms, and create more dynamic drawings. All levels welcome.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nList of Materials: J.DeLoca Supply List.pdf\n*Class will not meet 10/7*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/16 – 10/21 We 09:30 AM – 12:30 PM DeLoca, Jonathan 18 - 99 $420.00 View 9\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1102', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.973"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.973'}, 'outerHTML']}
2026-08-05 01:25:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328446\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328446\" onclick=\"return false;\" href=\"#\">Figure Drawing Basics: Clothed &amp; Costumed Quick Sketch\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/3052799d-f55f-4fae-899a-543ec643b467_DeLocaJ_FigureDrawingBasicsClothedCostumedQuickSketch.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Loosen up your figure drawing and build strong foundations through clothed and costumed figure studies in a fun, energetic studio environment. Using quick sketch exercises, short poses, and clear demos, students will learn a structural-gesture approach to drawing the human figure with confidence. Topics include rhythm lines, core forms, drapery, folds, and shadow mapping. Students will also work through longer lay-ins designed to strengthen observation, structure, and drawing organization.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Every week will feature artist spotlights, course handouts, instructor demos, and lectures designed to help students see clearly, simplify complex forms, and create more dynamic drawings. All levels welcome.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/J.DeLoca Quick Sketch Gesture Drawing.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">J.DeLoca Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 10/7*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 10/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=135676\">DeLoca, Jonathan\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 - 99\u003C/td>\n    \n        \u003Ctd class=\"\">$420.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065917\" eventid=\"3065917\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">9\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$420.00\" openslots=\"9\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065917\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5757', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=316563'}
2026-08-05 01:25:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:25:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=316563"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:25:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:25:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:25:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.983"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.983"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.983/text {}
2026-08-05 01:26:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.983/text HTTP/1.1" 200 0
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Figure Drawing Basics: Quick Sketch\nLEVEL: ALL LEVELS\nLoosen up your figure drawing and build strong foundations in a fun, energetic environment. Through quick sketch exercises, short poses, and clear demos, you’ll learn a structural, gestural approach to drawing the human figure. Based on the Frank Reilly method - simplified to demystify the process - this class helps you see clearly, simplify, and build confidence. All levels welcome.\nAdditional Information:\nOpen to students ages 16 and older\nList of Materials: J.DeLoca Supply List.pdf\n*Class will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n11/4 – 12/2 We 09:30 AM – 12:30 PM DeLoca, Jonathan 18 & up $350.00 View 9\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '737', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.983"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.983'}, 'outerHTML']}
2026-08-05 01:26:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"316563\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"316563\" onclick=\"return false;\" href=\"#\">Figure Drawing Basics: Quick Sketch\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/13ec1ca5-9df3-4244-b64f-e921d1dfa1b1_DeLocaJ_Quick Sketch Gesture Drawing.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Loosen up your figure drawing and build strong foundations in a fun, energetic environment.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Through quick sketch exercises, short poses, and clear demos, you’ll learn a structural, gestural approach to drawing the human figure. Based on the Frank Reilly method - simplified to demystify the process - this class helps you see clearly, simplify, and build confidence.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">All levels welcome.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"line-height: 115%; background: white; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Open to students ages 16 and older\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/J.DeLoca Quick Sketch Gesture Drawing.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">J.DeLoca Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/4 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=135676\">DeLoca, Jonathan\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$350.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066031\" eventid=\"3066031\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">9\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$350.00\" openslots=\"9\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066031\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5625', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=269915'}
2026-08-05 01:26:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:02 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=269915"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:03 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:03 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:03 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.990"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.990"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.990/text {}
2026-08-05 01:26:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.990/text HTTP/1.1" 200 0
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Figure Sculpture Revisited\nLEVEL: ALL LEVELS\nThis course encourages students to create their own reality of a live model in clay. Guided by the fundamentals of building the human figure, students will learn a practical approach to anatomy, proportion, and design. Students may choose their own approach to their projects, including bas-relief or 3-dimensional images of the full figure, head, or fragment. The sculpture will be modeled in terra cotta clay, hollowed, air dried and fired. There will be an additional fee for firing pieces.  \nIMPORTANT: An armature designed specifically for fired ceramic sculpture is mandatory for the first day of class, and any student without one will be unable to begin. Armatures are built on demand and may be ordered directly from the instructor up to one week prior to course start. To request an armature, please contact the school office by phone at (203) 966-9700 x 2 or by email at Kelly@Silvermineart.org.\nAdditional Information:\nA firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Reimbursements will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\nList of Materials: J.Murphy Supply List.pdf\n*Class will not meet 11/3*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/22 – 12/1 Tu 09:00 AM – 12:00 PM Murphy, Julia 18 & up $695.00 View 5\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1493', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.990"}} | headers=HTTPHeaderDict({'Content-Length': '127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.990'}, 'outerHTML']}
2026-08-05 01:26:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"269915\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"269915\" onclick=\"return false;\" href=\"#\">Figure Sculpture Revisited\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/41fd1972-5011-4858-b7d4-1b0a91f68e9e_MurphyJ_FigureSculptureRevisited.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This course&nbsp;encourages students to create their own reality of a live model in&nbsp;clay. Guided by the fundamentals of building the human figure, students will learn a practical&nbsp;approach to anatomy, proportion, and design. Students may choose their&nbsp;own approach to their projects, including bas-relief or 3-dimensional images of the full figure, head, or fragment. The sculpture will be modeled in terra cotta clay, hollowed, air dried and fired. There will be an additional fee for firing pieces.&nbsp;&nbsp;\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">IMPORTANT: An armature designed specifically for fired ceramic sculpture is \u003C/span>\u003Cb>\u003Cspan style=\"line-height: 107%; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">mandatory for the first day of class, \u003C/span>\u003C/b>\u003Cspan style=\"line-height: 107%; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">and any student without one will be unable to begin\u003C/span>\u003Cb>\u003Cspan style=\"line-height: 107%; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">. \u003C/span>\u003C/b>\u003Cspan style=\"line-height: 107%; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Armatures are built on demand and may be ordered directly from the instructor \u003C/span>\u003Cb>\u003Cspan style=\"line-height: 107%; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">up to one week prior to course start\u003C/span>\u003C/b>\u003Cspan style=\"line-height: 107%; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">. To request an armature, please contact the school office by phone at (203) 966-9700 x 2 or by email at Kelly@Silvermineart.org.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cp>\u003Cspan style=\"letter-spacing: 0.2px; background-color: rgb(255, 255, 255); font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">A firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Reimbursements will be applied for students who do not meet the firing fee deposit total. \u003C/span>\u003Cspan style=\"color: rgb(0, 0, 0); font-family: Arial; font-size: 12px; letter-spacing: 0.2px; background-color: rgb(255, 255, 255)\">Firing fees are not refundable regardless of the outcome of the piece of artwork.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/J.Murphy Figure Sculpture Updated.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">J.Murphy Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 11/3*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/22 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=117109\">Murphy, Julia\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$695.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065968\" eventid=\"3065968\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">5\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$695.00\" openslots=\"5\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065968\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '7366', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328404'}
2026-08-05 01:26:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:06 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328404"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1001"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1001"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1001/text {}
2026-08-05 01:26:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1001/text HTTP/1.1" 200 0
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Firing Orientation & Certification Workshop\nDesigned specifically for Members of the communal & independent studio, Ceramics at Andrews Hall, this workshop introduces members to Silvermine’s kiln procedures, safety expectations, loading standards, approved materials, and firing protocols. Members will review best practices for preparing work, loading electric kilns, and build the skills needed to fire confidently and responsibly in a communal studio setting.\nAt the completion of the workshop, members will receive one of the following certification outcomes:\n1.) Approved for independent firing\n2.) Provisionally approved with the first firing supervised or reviewed\n3.) Not yet approved with additional training required.\nOur goal is to support each member in developing the knowledge, confidence, and care needed to safely use the kilns while respecting the studio, equipment, and work of fellow members.\nAdditional Information:\nThis workshop is open only to Members of Ceramics at Andrews Hall. Learn more about this independent & communal pottery studio!\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/3 – 8/10 Mo 10:00 AM – 12:00 PM Puzzuoli, Jon 18 & up $45.00 View 4\nREGISTER NOW\n9/28 – 10/5 Mo 01:30 PM – 03:30 PM Puzzuoli, Jon 18 & up $45.00 View 6\nREGISTER NOW\n10/19 – 10/26 Mo 01:30 PM – 03:30 PM Puzzuoli, Jon 18 & up $45.00 View 7\nREGISTER NOW\n11/23 – 11/30 Mo 01:30 PM – 03:30 PM Puzzuoli, Jon 18 & up $45.00 View 8\nREGISTER NOW\n12/7 – 12/14 Mo 01:30 PM – 03:30 PM Puzzuoli, Jon 18 & up $45.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1591', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1001"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1001'}, 'outerHTML']}
2026-08-05 01:26:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328404\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328404\" onclick=\"return false;\" href=\"#\">Firing Orientation &amp; Certification Workshop\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/178353333150957_firing orientation image.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"color: #060606; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">Designed specifically for Members of the communal &amp; independent studio, \u003C/span>\u003Ca title=\"\" href=\"https://www.silvermineart.org/ceramics-at-andrews-hall/\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #051FF9\">Ceramics at Andrews Hall\u003C/span>\u003C/a>\u003Cspan style=\"color: #060606; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">, this workshop introduces members to Silvermine’s kiln procedures, safety expectations, loading standards, approved materials, and firing protocols. Members will review best practices for preparing work, loading electric kilns, and build the skills needed to fire confidently and responsibly in a communal studio setting.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"color: #060606; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">At the completion of the workshop, members will receive one of the following certification outcomes: \u003C/span>\u003C/p>\u003Cul style=\"list-style-type: square\">\u003Cli>\u003Cp>\u003Cspan style=\"color: #060606; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">1.)&nbsp;Approved for independent firing\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp>\u003Cspan style=\"color: #060606; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">2.)&nbsp;Provisionally approved with the first firing supervised or reviewed\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp>\u003Cspan style=\"color: #060606; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">3.)&nbsp;Not yet approved with additional training required.\u003C/span>\u003C/p>\u003C/li>\u003C/ul>\u003Cp>\u003Cspan style=\"color: #060606; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">Our goal is to support each member in developing the knowledge, confidence, and care needed to safely use the kilns while respecting the studio, equipment, and work of fellow members.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">This workshop is open \u003C/span>\u003Cstrong>\u003Cspan style=\"color: rgb(0, 0, 0); font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">only\u003C/span>\u003C/strong>\u003Cspan style=\"color: rgb(0, 0, 0); font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to Members of \u003C/span>\u003Ca href=\"https://www.silvermineart.org/ceramics-at-andrews-hall/\">\u003Cspan style=\"color: rgb(0, 0, 0); font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Ceramics at Andrews Hall\u003C/span>\u003C/a>\u003Cspan style=\"color: rgb(0, 0, 0); font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">. \u003C/span>\u003Ca href=\"https://www.silvermineart.org/ceramics-at-andrews-hall/\" title=\"\">\u003Cstrong>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; background-color: #ffffff; color: #0013FF\">Learn more about this independent &amp; communal pottery studio!\u003C/span>\u003C/strong>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/3 – 8/10\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$45.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3064902\" eventid=\"3064902\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">4\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$45.00\" openslots=\"4\" registertype=\"register\" onclick=\"return false;\" eventid=\"3064902\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/28 – 10/5\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:30 PM – 03:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$45.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065177\" eventid=\"3065177\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">6\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$45.00\" openslots=\"6\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065177\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/19 – 10/26\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:30 PM – 03:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$45.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065187\" eventid=\"3065187\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">7\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$45.00\" openslots=\"7\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065187\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/23 – 11/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:30 PM – 03:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$45.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066054\" eventid=\"3066054\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$45.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066054\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/7 – 12/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:30 PM – 03:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$45.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065219\" eventid=\"3065219\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$45.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065219\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '11295', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=319170'}
2026-08-05 01:26:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:10 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=319170"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1018"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1018"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1018/text {}
2026-08-05 01:26:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1018/text HTTP/1.1" 200 0
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Floral Explorations in Watercolor\nLEVEL: ALL LEVELS\nExpand your watercolor skill set in Floral Explorations. Over the course of six weeks, we will work with different flowers, studying their composition, structure, and texture through playful loose studies and refined pieces. We will practice gradients, wet into wet, wet into damp, layering, and translucent techniques with a variety of materials. This course is an opportunity to play, experiment, and hone your watercolor painting practices. Repeat students are welcome and will explore new & different florals each week!\nAdditional Information:\nList of Materials: S.Giuliano Supply List.pdf\n*Class will not meet 7/14*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 10/20 Tu 09:00 AM – 12:00 PM Giuliano, Samantha 18 & up $365.00 View 9\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '838', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1018"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1018'}, 'outerHTML']}
2026-08-05 01:26:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"319170\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"319170\" onclick=\"return false;\" href=\"#\">Floral Explorations in Watercolor\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/1b411605-2275-4a8e-a0a3-a7da045d2b42_Giuliano-S-FloralExplorations.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Expand your watercolor skill set in Floral Explorations. Over the course of six weeks, we will work with different flowers, studying their composition, structure, and texture through playful loose studies and refined pieces. We will practice gradients, wet into wet, wet into damp, layering, and translucent techniques with a variety of materials. This course is an opportunity to play, experiment, and hone your watercolor painting practices\u003C/span>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">. \u003C/span>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Repeat students are welcome and will explore new &amp; different florals each week!\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/S.Giuliano Floral Explorations in Watercolor.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">S.Giuliano Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 7/14*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 10/20\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=137073\">Giuliano, Samantha\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$365.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065899\" eventid=\"3065899\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">9\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$365.00\" openslots=\"9\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065899\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5335', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328465'}
2026-08-05 01:26:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328465"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1027"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1027"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:15 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1027/text {}
2026-08-05 01:26:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1027/text HTTP/1.1" 200 0
2026-08-05 01:26:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Fluid Impressions: Encaustic Monoprinting Workshop\nDiscover the expressive possibilities of encaustic monoprinting in this hands-on workshop. Encaustic paint (wax, damar resin and pigment) is melted on a hot pallet in a variety of ways where you can influence the design and the way the paint moves before pulling a one of a kind print. This workshop is suitable for both beginners and experienced artists interested in expanding their encaustic practice. All materials and tools will be introduced, along with demonstrations and guided experimentation. Emphasis will be placed on process over perfection, allowing each print to reveal its own unique character. By the end of the session, you'll leave with a collection of original monoprints and a deeper understanding of how to integrate encaustic printing into your creative process.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: H.Levy Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/3 – 10/3 Sa 09:00 AM – 12:00 PM Levy, Holli 18 - 99 $165.00 View 7\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1127', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1027"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1027'}, 'outerHTML']}
2026-08-05 01:26:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328465\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328465\" onclick=\"return false;\" href=\"#\">Fluid Impressions: Encaustic Monoprinting Workshop\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/579a4021-92d7-4e12-9d98-8c09cbcf114b_LevyH_FluidImpressionsMonoprintingEncaustic.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Discover the expressive possibilities of encaustic monoprinting in this hands-on workshop.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Encaustic paint (wax, damar resin and pigment) is melted on a hot pallet in a variety of ways where you can influence the design and the way the paint moves before pulling a one of a kind print. This workshop is suitable for both beginners and experienced artists interested in expanding their encaustic practice. All materials and tools will be introduced, along with demonstrations and guided experimentation.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Emphasis will be placed on process over perfection, allowing each print to reveal its own unique character. By the end of the session, you'll leave with a collection of original monoprints and a deeper understanding of how to integrate encaustic printing into your creative process.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/H.Levy Fluid Impressions Encaustic Monoprinting Workshop.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">H.Levy Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/3 – 10/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=139222\">Levy, Holli\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 - 99\u003C/td>\n    \n        \u003Ctd class=\"\">$165.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065987\" eventid=\"3065987\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">7\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$165.00\" openslots=\"7\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065987\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5697', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=326084'}
2026-08-05 01:26:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=326084"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1036"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1036"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1036/text {}
2026-08-05 01:26:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1036/text HTTP/1.1" 200 0
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Folk Art Meditation in Watercolor\nLEVEL: ALL LEVELS\nThis five-week course explores watercolor painting as a reflective, meditative practice inspired by global folk art traditions. Students will study the visual language of folk art: its patterns, symbols, and story, while using watercolor as a fluid, expressive medium to cultivate focus and creative presence. Each session integrates observation and intentional mark-making, encouraging students to slow down and engage their senses.\nStudents will develop foundational watercolor skills including washes, gradients, shape study, the wet into wet method, and color blending, developing an illustrative body of work that displays their individual folk-inspired aesthetics and storytelling. Restorative, relaxing, and fun! Open to beginner and experienced painters. \nAdditional Information:\nList of Materials: S.Giuliano Supply List.pdf\n*Class will not meet 7/30*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/29 – 12/3 Th 01:00 PM – 04:00 PM Giuliano, Samantha 18 & up $325.00 View 17\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1080', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1036"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1036'}, 'outerHTML']}
2026-08-05 01:26:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"326084\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"326084\" onclick=\"return false;\" href=\"#\">Folk Art Meditation in Watercolor\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/7cb338d5-f37e-44e1-b989-60e2b10c3fd0_GiulianoFolkArt Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This five-week course explores watercolor painting as a reflective, meditative practice inspired by global folk art traditions. Students will study the visual language of folk art: its patterns, symbols, and story, while using watercolor as a fluid, expressive medium to cultivate focus and creative presence. Each session integrates observation and intentional mark-making, encouraging students to slow down and engage their senses.\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students will develop foundational watercolor skills including washes, gradients, shape study, the wet into wet method, and color blending, developing an illustrative body of work that displays their individual folk-inspired aesthetics and storytelling. Restorative, relaxing, and fun! Open to beginner and experienced painters.&nbsp;\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/S.Giuliano Folk Art Meditation in Watercolor.pdf\" target=\"_blank\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">S.Giuliano Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">*Class will not meet 7/30*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/29 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=137073\">Giuliano, Samantha\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$325.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066024\" eventid=\"3066024\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">17\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$325.00\" openslots=\"17\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066024\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5396', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=308914'}
2026-08-05 01:26:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:20 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=308914"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1044"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1044"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1044/text {}
2026-08-05 01:26:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1044/text HTTP/1.1" 200 0
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Foundational Landscape Painting\nLEVEL: ALL LEVELS\nThis class focuses on the foundational principles of landscape painting. Students will learn the three main components of the landscape. Also how to create depth using color and tonal values. Understanding and applying aerial perspective, seeing and depicting light and shadow on forms, how to use rules/tools of landscape composition and using different brush strokes to depict various textures in nature will be covered. Concepts from representational to impressionism and their use in the modern landscape will be discussed. There will be instructor demos, handouts and individual guidance.\nAdditional Information:\nStudents ages 16 and up are welcome.\nList of Materials: R.McCollum Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 12/1 Tu 01:00 PM – 04:00 PM McCollum, Rick 18 & up $645.00 View 10\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '912', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1044"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1044'}, 'outerHTML']}
2026-08-05 01:26:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"308914\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"308914\" onclick=\"return false;\" href=\"#\">Foundational Landscape Painting\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/284058f8-3b67-419e-8aff-9632bf794be0_McCollumRFoundationalLandscapePainting.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This class focuses on the foundational principles of landscape painting. Students will learn the three main components of the landscape. Also how to create depth using color and tonal values. Understanding and applying aerial perspective, seeing and depicting light and shadow on forms, how to use rules/tools of landscape composition and using different brush strokes to depict various textures in nature will be covered. Concepts from representational to impressionism and their use in the modern landscape will be discussed. There will be instructor demos, handouts and individual guidance.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students ages 16 and up are welcome.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/R.McCollum Supply Master List.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">R.McCollum Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=127941\">McCollum, Rick\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$645.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065905\" eventid=\"3065905\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$645.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065905\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=296090'}
2026-08-05 01:26:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:23 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=296090"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1052"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1052"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:24 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1052/text {}
2026-08-05 01:26:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1052/text HTTP/1.1" 200 0
2026-08-05 01:26:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Foundational Painting I\nLEVEL: BEGINNER\nThis class will concentrate on the fundamentals and processes of representational painting. Emphasis will be painting from the still life and photos. Students will learn how to analyze, interpret and apply light to form and space. Class objectives are learning how to use the tools of painting: brushes, how to mix paint, learning value, (the lightness and darkness of an object), using edge control, (soft or hard edges when painting), the properties of color, painting multiple objects with a focal point or points, pictorial composition, painting highly reflective objects like glass and metal, painting a portrait, lighting and photographing the human head, and learning to mix flesh tones.\nThere will be instructor demos and handouts along with individual student guidance.\nNo prior painting experience is necessary, but some drawing ability is needed.\nAdditional Information:\nList of Materials: R.McCollum Supply List.pdf\n*Class will not meet 9/21*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/14 – 11/30 Mo 01:00 PM – 04:00 PM McCollum, Rick 18 & up $605.00 View 10\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1159', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1052"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1052'}, 'outerHTML']}
2026-08-05 01:26:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"296090\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"296090\" onclick=\"return false;\" href=\"#\">Foundational Painting I\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/3324551d-4710-489b-b039-b82f85eac00a_McCollumR_FoundationalPaintingI.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">LEVEL: BEGINNER\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">This class will concentrate on the fundamentals and processes of representational painting. Emphasis will be painting from the still life and photos. Students will learn how to analyze,  interpret and apply light to form and space. Class objectives are learning how to use the tools of painting: brushes, how to mix paint, learning value, (the lightness and darkness of an object), using edge control, (soft or hard edges when painting), the properties of color, painting multiple objects with a focal point or points, pictorial composition, painting highly reflective objects like glass and metal, painting a portrait, lighting and photographing the human head, and learning to mix flesh tones.  \u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">There will be instructor demos and handouts along with individual student guidance. \u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">No prior painting experience is necessary, but some drawing ability is needed.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/R.McCollum Supply Master List.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">R.McCollum Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 9/21*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/14 – 11/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=127941\">McCollum, Rick\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$605.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065890\" eventid=\"3065890\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$605.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065890\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5598', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=308915'}
2026-08-05 01:26:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=308915"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1059"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1059"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1059/text {}
2026-08-05 01:26:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1059/text HTTP/1.1" 200 0
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Foundational Painting II\nLEVEL: INTERMEDIATE\nThis class will expand on Foundational Painting I and the applications and principles of painting. The student will expand on their technical skills in paint application, value relationships, shape design, shape bridging and color and value simplification. The exploration and application of pictorial composition will be stressed. Class concentration will be on the finished total along with developing a personal artistic point of view. Students will be able to pick their own subject matter or point of interest. There will be instructor demos, hand outs and individual guidance. Students should have had Foundational Painting I (with Instructor Rick McCollum) or prior painting classes or knowledge.\nAdditional Information:\nList of Materials: R.McCollum Supply List.pdf\n*Class will not meet 9/21*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/14 – 11/30 Mo 09:30 AM – 12:30 PM McCollum, Rick 18 & up $605.00 View 9\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1007', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1059"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1059'}, 'outerHTML']}
2026-08-05 01:26:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"308915\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"308915\" onclick=\"return false;\" href=\"#\">Foundational Painting II\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/83e5ea46-1716-4ecf-af96-0c624b47a9b9_McCollumRFoundationalPaintingII.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: INTERMEDIATE\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This class will expand on Foundational Painting I and the applications and principles of painting. The student will expand on their technical skills in paint application, value relationships, shape design, shape bridging and color and value simplification. The exploration and application of pictorial composition will be stressed. Class concentration will be on the finished total along with developing a personal artistic point of view. Students will be able to pick their own subject matter or point of interest. There will be instructor demos, hand outs and individual guidance. Students should have had Foundational Painting I (with Instructor Rick McCollum) or prior painting classes or knowledge.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/R.McCollum Supply Master List.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">R.McCollum Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 9/21*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/14 – 11/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=127941\">McCollum, Rick\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$605.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066082\" eventid=\"3066082\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">9\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$605.00\" openslots=\"9\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066082\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5261', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328466'}
2026-08-05 01:26:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328466"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1066"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1066"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1066/text {}
2026-08-05 01:26:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1066/text HTTP/1.1" 200 0
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Foundations in Clay: Handbuilding, Wheel & Surface\nLEVEL: BEGINNER-INTERMEDIATE\nIn this beginner-friendly ceramics course, students will be introduced to a variety of approaches for creating both functional and sculptural work in clay. Through handbuilding techniques such as pinch, coil, and slab construction, students will build a strong foundation while exploring fresh projects and creative possibilities. Students will also be introduced to the potter’s wheel and learn the basics of forming functional vessels. A variety of surface decoration and glazing techniques will be explored, giving students the opportunity to develop their pieces from start to finish.\nThis course is perfect for those beginning their clay journey, as well as students with some experience who would like to strengthen their handbuilding, sculptural, and foundational ceramics skills in a supportive studio environment.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nA firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\nList of Materials: Tool Kits & Clay are available for purchase in class\nOpen Studio: Open Studio Fall 2026 - Ceramics.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 12/1 Tu 09:00 AM – 12:00 PM Dunn, Zach 18 & up $780.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1557', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1066"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1066'}, 'outerHTML']}
2026-08-05 01:26:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328466\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328466\" onclick=\"return false;\" href=\"#\">Foundations in Clay: Handbuilding, Wheel &amp; Surface\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/6d422a96-e570-4765-9e1e-c612c9089fec_DunnZ_Foundations.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: BEGINNER-INTERMEDIATE\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">In this beginner-friendly ceramics course, students will be introduced to a variety of approaches for creating both functional and sculptural work in clay. Through handbuilding techniques such as pinch, coil, and slab construction, students will build a strong foundation while exploring fresh projects and creative possibilities. Students will also be introduced to the potter’s wheel and learn the basics of forming functional vessels. A variety of surface decoration and glazing techniques will be explored, giving students the opportunity to develop their pieces from start to finish.\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This course is perfect for those beginning their clay journey, as well as students with some experience who would like to strengthen their handbuilding, sculptural, and foundational ceramics skills in a supportive studio environment.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); font-family: Arial; font-size: 12px; letter-spacing: 0.2px; background-color: rgb(255, 255, 255)\">A firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\u003C/span>\u003C/p>\u003Cp style=\"background-color: rgb(255, 255, 255)\">\u003Cspan style=\"font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">List of Materials:&nbsp;\u003C/span>\u003Cspan style=\"line-height: 12.84px; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Tool Kits &amp; Clay are available for purchase in class\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf\" target=\"_blank\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio Fall 2026 - Ceramics.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=89463\">Dunn, Zach\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$780.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065900\" eventid=\"3065900\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$780.00\" openslots=\"-1\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"3065900\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6471', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=292746'}
2026-08-05 01:26:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:33 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=292746"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1075"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1075"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1075/text {}
2026-08-05 01:26:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1075/text HTTP/1.1" 200 0
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Fused Silver Dust Rings\nWhat kind of dust is the cool kind? Silver dust! We will create an organic textured ring shank by fusing silver dust, create a bezel for a stone, and combine the two for a truly spectacular one of a kind ring! Some of the techniques learned will be how to figure and calculate ring size, silver fusing, bezel creation, soldering, and stone setting. (stones will vary)\nAdditional Information:\nList of Materials: All materials are provided for this offering and included in the class price. Students are required to wear closed toe shoes, and long hair must be tied back. \nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/10 – 10/10 Sa 10:00 AM – 04:00 PM Henriques, Maureen 18 & up $295.00 View 5\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '759', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1075"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1075'}, 'outerHTML']}
2026-08-05 01:26:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"292746\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"292746\" onclick=\"return false;\" href=\"#\">Fused Silver Dust Rings\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/09a12c08-d442-4ed0-9cfb-d08afe2abae4_Henriques.M_SilverDust.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">What kind of dust is the cool kind? Silver dust! We will create an organic textured ring shank by fusing silver dust, create a bezel for a stone, and combine the two for a truly spectacular one of a kind ring! Some of the techniques learned will be how to figure and calculate ring size, silver fusing, bezel creation, soldering, and stone setting. (stones will vary)\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-weight: 400; letter-spacing: 0.15pt; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering and included in the class price.&nbsp;\u003C/span>\u003Cspan style=\"font-weight: 400; background: white; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">Students are required to wear closed toe shoes, and long hair must be tied back.&nbsp;\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/10 – 10/10\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=103494\">Henriques, Maureen\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$295.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065995\" eventid=\"3065995\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">5\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$295.00\" openslots=\"5\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065995\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4507', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=326044'}
2026-08-05 01:26:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:36 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=326044"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1081"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1081"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1081/text {}
2026-08-05 01:26:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1081/text HTTP/1.1" 200 0
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Get Up and Shoot with your Smartphone Camera (a little technical)\nThis hands-on class gets students out of their seats and creating right away.  After covering basic photography principles and smartphone camera controls, the focus will shift to shooting in the real world. Students will learn how to spot compelling subjects in their surroundings, pose classmates in creative ways, and apply composition techniques that will elevate their images. And for those who want them, props supplied by the instructor can be used to add another layer of fun and creativity to their pictures. Once the photographs are taken, the class wraps up with a brief introduction to the editing process, with the students learning how images can be refined and even transformed into eye-catching works of art. \nA very complete handout will be distributed on arrival. It contains lots of information and will greatly simplify the process of understanding what's being taught in class. You'll also find it quite useful for review after you get home.  Don't forget to bring your fully charged smartphone, the smartphone's charger, and any accessories you have.\nAdditional Information:\nExplore our new programs at 15% off! Discount applied at checkout.\nList of Materials: Students should bring a smartphone, battery charger, paper and pen for taking notes.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/22 – 8/22 Sa 01:00 PM – 04:00 PM Glass, Peter 18 & up $185.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1491', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1081"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1081'}, 'outerHTML']}
2026-08-05 01:26:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"326044\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"326044\" onclick=\"return false;\" href=\"#\">Get Up and Shoot with your Smartphone Camera (a little technical)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/8e779d79-86fe-436a-bc63-4c3777bea19c_GlassP_GetUpShootSmartphoneCamera.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">This hands-on class gets students out of their seats and creating right away.\u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">After covering basic photography principles and smartphone camera controls, the focus will shift to shooting in the real world. Students will learn how to spot compelling subjects in their surroundings, pose classmates in creative ways, and apply composition techniques that will elevate their images. And for those who want them, props supplied by the instructor can be used to add another layer of fun and creativity to their pictures. Once the photographs are taken, the class wraps up with a brief introduction to the editing process, with the students learning how images can be refined and even transformed into eye-catching works of art.\u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">&nbsp;\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">A very complete handout will be distributed on arrival. It contains lots of information and will greatly simplify the process of understanding what's being taught in class. You'll also find it quite useful for review after you get home.\u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Don't forget to bring your fully charged smartphone, the smartphone's charger, and any accessories you have.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new programs at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: Students should bring a smartphone, battery charger, paper and pen for taking notes.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/22 – 8/22\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=132646\">Glass, Peter\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$185.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3006468\" eventid=\"3006468\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$185.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3006468\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6008', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321476'}
2026-08-05 01:26:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321476"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1094"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1094"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1094/text {}
2026-08-05 01:26:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1094/text HTTP/1.1" 200 0
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"HELLO KITTY-ish, even DOGGY-ish, or CRITTERy-ish: Mixed Media with Clay, Paint, Drawing (Ages: 5-10)\nWhere painting and clay sculpting are included every week, mARTa's Summer Art Studio encourages open ended experimentation, creative expression, exploration, and appreciation, of art. While building friendships and learning about the properties of art materials, children are guided to engage with imagination, and to contribute meaning to artwork. They will be introduced to a variety of techniques while exploring play in art, and they will develop their creative abilities to self-express and see and experience the world in new ways. Each day will include a variety of materials, surprises, outdoor recess with games and stories about well-known artists. Art materials may include watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, things that shine, beads, paint markers, more. Gentle discussions about the artwork in progress and art history will be introduced.\nThroughout the week children may work in the art studio, explore the lush Silvermine outdoor environment, and visit the Silvermine galleries & exhibitions. mARTa's sensory rich studio environment is designed to make one's learning more complex while supporting imagination and play in a caring environment. It's a place where children will develop meaningful connections to self and their ever-changing surrounding environment. All materials will be supplied.\nAdditional Information:\nPlease pack a peanut free snack and drink. Please bring a sturdy container or box, labeled with student’s first & last name to transport clay objects home.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/17 – 8/21 Mo Tu We Th Fr 09:00 AM – 12:00 PM Kot, Marta Violette 5 - 11 $465.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1958', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1094"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1094'}, 'outerHTML']}
2026-08-05 01:26:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321476\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321476\" onclick=\"return false;\" href=\"#\">HELLO KITTY-ish, even DOGGY-ish, or CRITTERy-ish: Mixed Media with Clay, Paint, Drawing (Ages: 5-10)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/608be0a7-b542-4eee-9baa-69b67042c335_KotM_HelloKittyDoggyCritter.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Where painting and clay sculpting are included every week, mARTa's Summer Art Studio encourages open ended experimentation, creative expression, exploration, and appreciation, of art. While building friendships and learning about the properties of art materials, children are guided to engage with imagination, and to contribute meaning to artwork. They will be introduced to a variety of techniques while exploring play in art, and they will develop their creative abilities to self-express and see and experience the world in new ways. Each day will include a variety of materials, surprises, outdoor recess with games and stories about well-known artists. Art materials may include watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, things that shine, beads, paint markers, more. Gentle discussions about the artwork in progress and art history will be introduced.\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Throughout the week children may work in the art studio, explore the lush Silvermine outdoor environment, and visit the Silvermine galleries &amp; exhibitions. mARTa's sensory rich studio environment is designed to make one's learning more complex while supporting imagination and play in a caring environment. It's a place where children will develop meaningful connections to self and their ever-changing surrounding environment. All materials will be supplied.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Please pack a peanut free snack and drink. Please bring a sturdy container or box, labeled with student’s first &amp; last name to transport clay objects home.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/17 – 8/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2957698\" eventid=\"2957698\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"-11\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2957698\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '7216', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321477'}
2026-08-05 01:26:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:43 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321477"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1102"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1102"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1102/text {}
2026-08-05 01:26:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1102/text HTTP/1.1" 200 0
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"How Artists Have Used Rainbows in Paintings: Painting, Drawing, Clay Exploration (Ages: 5-10)\nWhere painting and clay sculpting are included every week, mARTa's Summer Art Studio encourages open ended experimentation, creative expression, exploration, and appreciation, of art. While building friendships and learning about the properties of art materials, children are guided to engage with imagination, and to contribute meaning to artwork. They will be introduced to a variety of techniques while exploring play in art, and they will develop their creative abilities to self-express and see and experience the world in new ways. Each day will include a variety of materials, surprises, outdoor recess with games and stories about well-known artists. Art materials may include watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, things that shine, beads, paint markers, more. Gentle discussions about the artwork in progress and art history will be introduced.\nThroughout the week children may work in the art studio, explore the lush Silvermine outdoor environment, and visit the Silvermine galleries & exhibitions. mARTa's sensory rich studio environment is designed to make one's learning more complex while supporting imagination and play in a caring environment. It's a place where children will develop meaningful connections to self and their ever-changing surrounding environment. All materials will be supplied.\nAdditional Information:\nPlease pack a peanut free snack and drink. Please bring a sturdy container or box, labeled with student’s first & last name to transport clay objects home.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/3 – 8/7 Mo Tu We Th Fr 01:00 PM – 04:00 PM Kot, Marta Violette 5 - 11 $465.00 View 6\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1946', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1102"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1102'}, 'outerHTML']}
2026-08-05 01:26:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321477\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321477\" onclick=\"return false;\" href=\"#\">How Artists Have Used Rainbows in Paintings: Painting, Drawing, Clay Exploration (Ages: 5-10)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/0abb3f52-54c8-4984-9aa4-c20796809072_marta kot week 8 pm.jpeg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Where painting and clay sculpting are included every week, mARTa's Summer Art Studio encourages open ended experimentation, creative expression, exploration, and appreciation, of art. While building friendships and learning about the properties of art materials, children are guided to engage with imagination, and to contribute meaning to artwork. They will be introduced to a variety of techniques while exploring play in art, and they will develop their creative abilities to self-express and see and experience the world in new ways. Each day will include a variety of materials, surprises, outdoor recess with games and stories about well-known artists. Art materials may include watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, things that shine, beads, paint markers, more. Gentle discussions about the artwork in progress and art history will be introduced.\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Throughout the week children may work in the art studio, explore the lush Silvermine outdoor environment, and visit the Silvermine galleries &amp; exhibitions. mARTa's sensory rich studio environment is designed to make one's learning more complex while supporting imagination and play in a caring environment. It's a place where children will develop meaningful connections to self and their ever-changing surrounding environment. All materials will be supplied.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Please pack a peanut free snack and drink. Please bring a sturdy container or box, labeled with student’s first &amp; last name to transport clay objects home.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/3 – 8/7\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2957720\" eventid=\"2957720\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">6\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"6\" registertype=\"register\" onclick=\"return false;\" eventid=\"2957720\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '7191', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=326046'}
2026-08-05 01:26:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=326046"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1109"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1109"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1109/text {}
2026-08-05 01:26:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1109/text HTTP/1.1" 200 0
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Impressionist Figure Painting Intensive: Then & Now – Key Artists as Living Guides\nThis five-day intensive is an immersive exploration of Impressionist figure painting that connects historical tradition with contemporary practice. Guided each day by a master artist whose work reflects a distinct stage in the painter’s development, students will engage with these influences not as distant historical references, but as living companions in the act of seeing and painting. Rooted in the principle Lux Ante Formam—light before form—the course begins not with detail, but with light, atmosphere, and presence.\nOver the course of the week, students will move through a thoughtful progression from looking and seeing to insight, vision, and inspired expression. As they work from structure to sensitivity, from design to light, participants will deepen their understanding of how light animates the figure and learn to translate observation into paintings that feel immediate, luminous, and fully alive in the spirit of Impressionist expression.\nAdditional Information:\nCurriculum Outline: D.Wright Curriculum Outline.pdf\nList of Materials: D.Wright Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/17 – 8/21 Mo Tu We Th Fr 01:00 PM – 04:00 PM Wright, Dmitri 18 & up $560.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1346', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1109"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1109'}, 'outerHTML']}
2026-08-05 01:26:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"326046\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"326046\" onclick=\"return false;\" href=\"#\">Impressionist Figure Painting Intensive: Then &amp; Now – Key Artists as Living Guides\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/ed6a45e3-7c2e-449a-8ed2-a5333e3200e0_WrightD Figure Intensive Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This five-day intensive is an immersive exploration of Impressionist figure painting that connects historical tradition with contemporary practice. Guided each day by a master artist whose work reflects a distinct stage in the painter’s development, students will engage with these influences not as distant historical references, but as living companions in the act of seeing and painting. Rooted in the principle \u003C/span>\u003Cem>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Lux Ante Formam\u003C/span>\u003C/em>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">—light before form—the course begins not with detail, but with light, atmosphere, and presence.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Over the course of the week, students will move through a thoughtful progression from looking and seeing to insight, vision, and inspired expression. As they work from structure to sensitivity, from design to light, participants will deepen their understanding of how light animates the figure and learn to translate observation into paintings that feel immediate, luminous, and fully alive in the spirit of Impressionist expression.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Curriculum Outline: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/WrightD_AdditionalInfo_CurriculumOutline.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">D.Wright Curriculum Outline.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/D.Wright Impressionist Figure Painting Intensive Then and Now.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">D.Wright Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/17 – 8/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75734\">Wright, Dmitri\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$560.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3006462\" eventid=\"3006462\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$560.00\" openslots=\"-1\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"3006462\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6088', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328467'}
2026-08-05 01:26:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:50 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328467"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1118"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1118"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1118/text {}
2026-08-05 01:26:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1118/text HTTP/1.1" 200 0
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Intaglio Printmaking: Etching and More\nLEVEL: ALL LEVELS\nLet's make etchings! We will be covering the basics of intaglio, a printmaking method in which lines/other textures are etched onto a copper plate. We will focus on black and white imagery using a variety of techniques. Students will create images able to be printed in multiple.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nList of Materials: A.Murdoch Supply List.pdf\n*Class will not meet 9/21*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/14 – 10/19 Mo 06:00 PM – 09:00 PM Murdoch, Andrew 18 - 99 $445.00 View 8\nREGISTER NOW\n11/2 – 11/30 Mo 06:00 PM – 09:00 PM Murdoch, Andrew 18 - 99 $445.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '756', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1118"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1118'}, 'outerHTML']}
2026-08-05 01:26:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328467\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328467\" onclick=\"return false;\" href=\"#\">Intaglio Printmaking: Etching and More\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/0387313a-1b2a-47ff-8382-5c93716a7925_MurdochA_IntaglioPrintmakingEtchingMore_2nd.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Let's make etchings! We will be covering the basics of intaglio, a printmaking method in which lines/other textures are etched onto a copper plate. We will focus on black and white imagery using a variety of techniques. Students will create images able to be printed in multiple.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/A.Murdoch Intaglio Printmaking Etching and More.pdf\" target=\"_blank\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">A.Murdoch Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">*Class will not meet 9/21*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/14 – 10/19\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">06:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=124040\">Murdoch, Andrew\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 - 99\u003C/td>\n    \n        \u003Ctd class=\"\">$445.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065897\" eventid=\"3065897\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$445.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065897\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/2 – 11/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">06:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=124040\">Murdoch, Andrew\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 - 99\u003C/td>\n    \n        \u003Ctd class=\"\">$445.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066028\" eventid=\"3066028\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$445.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066028\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6139', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=191684'}
2026-08-05 01:26:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:53 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=191684"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1129"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1129"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1129/text {}
2026-08-05 01:26:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1129/text HTTP/1.1" 200 0
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Intermediate & Advanced Ceramics\nLEVEL: INTERMEDIATE-ADVANCED\nExplore the process of intermediate to advanced throwing, hand building, construction and glazing techniques. Students will build on basic skills to learn how to make complex forms and interesting shapes using both hand building and wheel throwing techniques. Everyone will receive individual instruction in addition to class demos and will be encouraged to work independently on projects.\nAdditional Information:\nA firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\nList of Materials: Tool Kits & Clay are available for purchase in class\nOpen Studio: Open Studio Fall 2026 - Ceramics.pdf\n*Class will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/16 – 12/2 We 10:00 AM – 01:00 PM Houston, Heather 18 & up $740.00 View 2\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1068', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1129"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1129'}, 'outerHTML']}
2026-08-05 01:26:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"191684\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"191684\" onclick=\"return false;\" href=\"#\">Intermediate &amp; Advanced Ceramics\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/8b9df581-8e8d-417b-b9f8-c553f12a88ff_Houston pot.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv style=\"color: rgb(0, 0, 0); font-family: -webkit-standard; letter-spacing: normal\" title=\"Page 13\" class=\"page\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal\">\u003Cspan style=\"font-family: Arial; font-size: 14px\">LEVEL: INTERMEDIATE-ADVANCED\u003C/span>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal\">\u003Cspan style=\"font-family: Arial; font-size: 14px\">Explore the process of intermediate to advanced throwing, hand building, construction and glazing techniques. Students will build on basic skills to learn how to make complex forms and interesting shapes using both hand building and wheel throwing techniques. Everyone will receive individual instruction in addition to class demos and will be encouraged to work independently on projects.\u003C/span>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); font-family: Arial; font-size: 12px; letter-spacing: 0.2px; background-color: rgb(255, 255, 255)\">A firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\u003C/span>\u003C/p>\u003Cp style=\"background-color: rgb(255, 255, 255)\">\u003Cspan style=\"font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">List of Materials:&nbsp;\u003C/span>\u003Cspan style=\"line-height: 12.84px; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Tool Kits &amp; Clay are available for purchase in class\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf\" target=\"_blank\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio Fall 2026 - Ceramics.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">*Class will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75693\">Houston, Heather\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$740.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065920\" eventid=\"3065920\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">2\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$740.00\" openslots=\"2\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065920\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6139', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=191866'}
2026-08-05 01:26:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:57 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:26:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:26:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=191866"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:26:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:26:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1138"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1138"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1138/text {}
2026-08-05 01:26:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1138/text HTTP/1.1" 200 0
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Intermediate Jewelry & Silversmithing\nLEVEL: INTERMEDIATE-ADVANCED\nRequirements: 2 or more Basic Jewelry classes or equivalent and/or approval from the instructor. This intermediate jewelry class is designed to build on metalworking skills learned in the Basic Jewelry course, with the goal of refining proficiency and adding more advanced jewelry techniques and design abilities. Project choices are flexible focusing on student needs and enhancing the student’s skill set.\nAdditional Information:\nList of Materials: G.Bradshaw Supply List.pdf\nOpen Studio: Open Studio Spring 2026 - Jewelry.pdf\n*Monday's class will not meet 9/21, 10/12*\n*Wednesday's classes will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/14 – 11/30 Mo 06:30 PM – 09:30 PM Bradshaw, Gail 18 & up $560.00 View 4\nREGISTER NOW\n9/16 – 12/2 We 10:00 AM – 01:00 PM Bradshaw, Gail 18 & up $610.00 View 2\nREGISTER NOW\n9/16 – 12/2 We 01:30 PM – 04:30 PM Bradshaw, Gail 18 & up $610.00 View 2\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1030', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:26:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1138"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1138'}, 'outerHTML']}
2026-08-05 01:26:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"191866\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"191866\" onclick=\"return false;\" href=\"#\">Intermediate Jewelry &amp; Silversmithing\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/164381433541496_capture.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv class=\"page\" style=\"color: rgb(0, 0, 0); font-family: -webkit-standard; letter-spacing: normal\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: INTERMEDIATE-ADVANCED\u003C/span>\u003C/p>\u003Cp>\u003Cb>\u003Ci>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Requirements\u003C/span>\u003C/i>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">: 2 or more \u003C/span>\u003Ci>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Basic Jewelry classes or equivalent and/or approval from the instructor.&nbsp;\u003C/span>\u003C/i>\u003C/b>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This intermediate jewelry class is designed to build on metalworking skills learned in the Basic Jewelry course, with the goal of refining proficiency and adding more advanced jewelry techniques and design abilities. Project choices are flexible focusing on student needs and enhancing the student’s skill set.\u003C/span>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important\" href=\"files/read?file=files/G.Bradshaw Intermediate Jewelry  Silversmithing.pdf\" target=\"_blank\">\u003Cu>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">G.Bradshaw Supply List.pdf\u003C/span>\u003C/u>\u003C/a>\u003C/p>\u003C/div>\u003Cp>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Jewelry_SP2026.pdf\" target=\"_blank\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio Spring 2026 - Jewelry.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 12px\">*Monday's class will not meet 9/21, 10/12*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">*Wednesday's classes will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/14 – 11/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">06:30 PM – 09:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75667\">Bradshaw, Gail\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$560.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066018\" eventid=\"3066018\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">4\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$560.00\" openslots=\"4\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066018\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75667\">Bradshaw, Gail\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$610.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066011\" eventid=\"3066011\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">2\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$610.00\" openslots=\"2\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066011\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:30 PM – 04:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75667\">Bradshaw, Gail\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$610.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066012\" eventid=\"3066012\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">2\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$610.00\" openslots=\"2\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066012\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '8570', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:26:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=322743'}
2026-08-05 01:27:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:01 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=322743"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1151"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:03 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1151"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:03 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1151/text {}
2026-08-05 01:27:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1151/text HTTP/1.1" 200 0
2026-08-05 01:27:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Introduction to Blacksmithing (Ages: 16 & Up)\nLearn the fundamentals of blacksmithing! Students will learn how to swing a hammer, forge a taper, bend and twist steel, and work with sheet metal. Time permitting we will forge a hook, a bottle opener, and a small bowl, but the primary goal of this class is to learn the basic skills of blacksmithing which can be applied to any number of projects. Students should wear closed toed shoes, long pants, and clothes made of natural fibers (cotton, wool, etc.)\nAdditional Information:\nList of materials: All materials are provided for this offering.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n11/7 – 11/8 Sa Su 10:00 AM – 04:00 PM Husock, Leon 16 & up $450.00 View 6\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '752', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:03 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1151"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:03 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1151'}, 'outerHTML']}
2026-08-05 01:27:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"322743\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"322743\" onclick=\"return false;\" href=\"#\">Introduction to Blacksmithing (Ages: 16 &amp; Up)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/9db006d9-359c-4653-b8a9-b77c33f91e75_HusockL_IntroductionToBlackSmithing.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Learn the fundamentals of blacksmithing! Students will learn how to swing a hammer, forge a taper, bend and twist steel, and work with sheet metal. Time permitting we will forge a hook, a bottle opener, and a small bowl, but the primary goal of this class is to learn the basic skills of blacksmithing which can be applied to any number of projects. Students should wear closed toed shoes, long pants, and clothes made of natural fibers (cotton, wool, etc.)\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"margin-bottom: 0px !important; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/7 – 11/8\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=129946\">Husock, Leon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">16 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$450.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066037\" eventid=\"3066037\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">6\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$450.00\" openslots=\"6\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066037\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4262', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=166009'}
2026-08-05 01:27:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:05 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=166009"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1159"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1159"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1159/text {}
2026-08-05 01:27:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1159/text HTTP/1.1" 200 0
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Introduction to Digital Photography I\nLEVEL: BEGINNER\nStudents will learn the basics of the digital camera. Photographic principles such as aperture, shutter speed, and light sensitivity will be discussed as well as creativity and composition needed to make digital images. Some in-class shooting will be done. Assignments will be given and reviewed the following class.\nAdditional Information:\nList of Materials: Students should bring their digital camera, manual, and flash drive to class.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/25 – 10/30 Fr 10:00 AM – 12:00 PM Dunbar, Bruce 18 & up $335.00 View 10\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '652', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1159"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1159'}, 'outerHTML']}
2026-08-05 01:27:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"166009\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"166009\" onclick=\"return false;\" href=\"#\">Introduction to Digital Photography I\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/164381784193304_capture.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; background-color: #ffffff; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: BEGINNER\u003C/span>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; background-color: #ffffff; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students will learn the basics of the digital camera. Photographic principles such as aperture, shutter speed, and light sensitivity will be discussed as well as creativity and composition needed to make digital images. Some in-class shooting will be done. Assignments will be given and reviewed the following class. \u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"letter-spacing: normal; background-color: rgb(255, 255, 255); font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials:&nbsp;\u003C/span>\u003Cspan style=\"letter-spacing: 0.2px; background-color: rgb(255, 255, 255); font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students should bring their digital camera, manual, and flash drive to class.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/25 – 10/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=87648\">Dunbar, Bruce\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$335.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065975\" eventid=\"3065975\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$335.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065975\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4726', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=209906'}
2026-08-05 01:27:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:08 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=209906"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1165"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1165"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1165/text {}
2026-08-05 01:27:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1165/text HTTP/1.1" 200 0
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Introduction to Encaustic Painting (Hot Wax)\nLove how encaustic paintings look? Want to know more about it and try it out without a large investment of time or materials? In this workshop you will learn all the basics including, tools, techniques, and safety. After demonstrations, you will have time to work hands-on with this unique and historic medium that is gaining popularity among all types of artists. The school will supply all of the equipment. Please view the list of materials below for additional materials you should bring.\nAdditional Information:\nList of Materials: N.Hyon Supply List.pdf\n\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/19 – 9/19 Sa 10:00 AM – 03:00 PM Hyon, Nash 18 & up $205.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '760', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1165"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1165'}, 'outerHTML']}
2026-08-05 01:27:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"209906\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"209906\" onclick=\"return false;\" href=\"#\">Introduction to Encaustic Painting (Hot Wax)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/168910875379474_encausticpainting.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">Love how encaustic paintings look? Want to know more about it and try it out without a large investment of time or materials? In this workshop you will learn all the basics including, tools, techniques, and safety. After demonstrations, you will have time to work hands-on with this unique and historic medium that is gaining popularity among all types of artists. The school will supply all of the equipment. Please view the list of materials below for additional materials you should bring.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"color: rgb(32, 33, 36); letter-spacing: 0.2px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">List of Materials:&nbsp;\u003C/span>\u003Ca href=\"files/read?file=media/N.Hyon%20Introduction%20to%20Encaustic%20Painting%20(Hot%20Wax)%20WORKSHOP.pdf\">\u003Cu>\u003Cspan style=\"color: rgb(32, 33, 36); letter-spacing: 0.2px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">N.Hyon Supply List.pdf\u003C/span>\u003C/u>\u003C/a>\u003C/p>\u003Cdiv>\u003Cp>\u003Cspan style=\"font-size: 12px\">\u003Cbr>\u003C/span>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/19 – 9/19\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 03:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$205.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065960\" eventid=\"3065960\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$205.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065960\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4718', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=286345'}
2026-08-05 01:27:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=286345"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1171"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1171"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1171/text {}
2026-08-05 01:27:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1171/text HTTP/1.1" 200 0
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Introduction to Relief Printing: Woodcuts\nWoodblock printing has been practiced, in one form or another, since 220 A.D. The process involves the removal of material (in this case, wood) allowing the raised areas to be inked and printed. During this workshop, students will develop images to be transferred to a wood block. This course will cover the use of basic carving tools and techniques to create an image that students will be able to print in small editions.\nAdditional Information:\nList of Materials: A.Murdoch Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/24 – 10/25 Sa Su 09:30 AM – 01:30 PM Murdoch, Andrew 18 & up $255.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '699', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1171"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1171'}, 'outerHTML']}
2026-08-05 01:27:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"286345\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"286345\" onclick=\"return false;\" href=\"#\">Introduction to Relief Printing: Woodcuts\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/11d0aa39-97f4-49ae-8045-0d43815e9eea_MurdochA_IntroReliefPrintmakingWoodcuts_2nd.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 14px\">Woodblock printing has been practiced, in one form or another, since 220 A.D. The process involves the removal of material (in this case, wood) allowing the raised areas to be inked and printed. During this workshop, students will develop images to be transferred to a wood block. This course will cover the use of basic carving tools and techniques to create an image that students will be able to print in small editions.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"background-color: rgb(255, 255, 255); letter-spacing: 0.2px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/A.Murdoch Intro to Relief Printing Woodcuts.pdf\" target=\"_blank\">\u003Cspan style=\"background-color: rgb(255, 255, 255); letter-spacing: 0.2px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">A.Murdoch Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/24 – 10/25\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 01:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=124040\">Murdoch, Andrew\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$255.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066015\" eventid=\"3066015\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$255.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066015\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4692', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=254820'}
2026-08-05 01:27:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:16 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=254820"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1177"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1177"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:18 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1177/text {}
2026-08-05 01:27:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1177/text HTTP/1.1" 200 0
2026-08-05 01:27:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Introduction to Sogetsu Ikebana: The Japanese Art of Flower Arrangement\nLEVEL: BEGINNER\nSogetsu Ikebana is much more than “Japanese flower arranging,” it is a modern form of an ancient art of sculpture with living materials. Beginner students will be introduced to the traditional principles and aesthetic disciplines, combined with creative energies to capture, express and enhance natural beauty.\nAdditional Information:\nList of Materials: Students should bring vessels, shears, pin-holders and plant materials or you can purchase some plant materials from the instructor for a nominal cost.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/19 – 10/24 Sa 10:00 AM – 12:00 PM Pleasanton, Shizue 18 & up $295.00 View 3\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '762', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1177"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1177'}, 'outerHTML']}
2026-08-05 01:27:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"254820\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"254820\" onclick=\"return false;\" href=\"#\">Introduction to Sogetsu Ikebana: The Japanese Art of Flower Arrangement\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/dd5c40ed-1067-44a6-9046-a0a8ab46b301_Shizue 1.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: BEGINNER\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Sogetsu Ikebana is much more than “Japanese flower arranging,” it is a modern form of an ancient art of sculpture with living materials. Beginner&nbsp;students will be introduced to the traditional principles and aesthetic disciplines, combined with creative energies to capture, express and enhance natural beauty. \u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp style=\"font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(51, 51, 51); line-height: 1.4em; background-color: rgb(255, 255, 255)\">\u003Cspan style=\"letter-spacing: 0.2px; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials:&nbsp;\u003C/span>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students should bring vessels, shears, pin-holders and plant materials or you can purchase some plant materials from the instructor for a nominal cost.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/19 – 10/24\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75715\">Pleasanton, Shizue\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$295.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065961\" eventid=\"3065961\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">3\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$295.00\" openslots=\"3\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065961\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4669', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=168499'}
2026-08-05 01:27:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=168499"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1184"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1184"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1184/text {}
2026-08-05 01:27:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1184/text HTTP/1.1" 200 0
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Introduction to the Art of Drawing\nLEVEL: BEGINNER - INTERMEDIATE\nWe begin by learning how to measure using our eye, how to create the proportions of our subject. When applying these methods of measurement and proportion, we give drama and expression to our drawings. Learn about shading, perspective and composition. Subjects include basic forms, the figure, portrait and landscapes. Every class will start with a demonstration and individual attention is given to each student.\nAdditional Information:\nList of Materials: A.McFarlane Supply List.pdf\n*Class will not meet 9/21*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/14 – 11/30 Mo 01:00 PM – 04:00 PM McFarlane, Alex 18 & up $635.00 View 7\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '740', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1184"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1184'}, 'outerHTML']}
2026-08-05 01:27:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"168499\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"168499\" onclick=\"return false;\" href=\"#\">Introduction to the Art of Drawing\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/164434026728918_alex mcf.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv style=\"color: rgb(0, 0, 0); font-family: -webkit-standard; letter-spacing: normal\" title=\"Page 3\" class=\"page\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal\">\u003Cspan style=\"font-family: Calibri, sans-serif\">\u003Cspan style=\"color: rgb(0, 0, 0); font-size: 14px; letter-spacing: normal; font-family: Arial\">LEVEL: BEGINNER - INTERMEDIATE\u003C/span>\u003C/span>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal\">\u003Cspan style=\"font-family: Calibri, sans-serif\">\u003Cspan style=\"color: rgb(0, 0, 0); font-size: 14px; letter-spacing: normal; font-family: Arial\">We begin by learning how to measure using our eye, how to create the proportions of our subject. When applying these methods of measurement and proportion, we give drama and expression to our drawings. Learn about shading, perspective and composition. Subjects include basic forms, the figure, portrait and landscapes. Every class will start with a demonstration and individual attention is given to each student. \u003C/span>\u003C/span>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp style=\"background-color: rgb(255, 255, 255)\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: rgb(0, 0, 0)\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important\" href=\"files/read?file=files/A.McFarlane Introduction to the Art of Drawing.pdf\" target=\"_blank\">\u003Cu>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: rgb(0, 0, 0)\">A.McFarlane Supply List.pdf\u003C/span>\u003C/u>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: rgb(0, 0, 0)\">*Class will not meet 9/21*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/14 – 11/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75707\">McFarlane, Alex\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$635.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065891\" eventid=\"3065891\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">7\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$635.00\" openslots=\"7\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065891\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5435', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328468'}
2026-08-05 01:27:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328468"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1191"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1191"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1191/text {}
2026-08-05 01:27:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1191/text HTTP/1.1" 200 0
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Learning from the Greats: Historical Study and Contemporary Studio Practice\nLEVEL: ALL LEVELS\nThis course invites students of all experience levels and working mediums to study and recreate master paintings from artists and periods of their choosing Through direct observation, analysis, and reproduction, students will investigate the visual language and decision-making processes of historical and contemporary artists. Emphasis will be placed on understanding compositional design, color relationships, drawing structure, surface handling and artistic intent. Students will develop stronger technical skills while expanding their understanding of how artists communicate ideas through visual form.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nList of Materials: R.McCollum Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 12/1 Tu 09:30 AM – 12:30 PM McCollum, Rick 18 & up $645.00 View 10\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '998', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1191"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1191'}, 'outerHTML']}
2026-08-05 01:27:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328468\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328468\" onclick=\"return false;\" href=\"#\">Learning from the Greats: Historical Study and Contemporary Studio Practice\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/66536e64-5eaf-45f1-903b-29ff7c21b6aa_McCollumM_LearningGreatsHistoricalStudyContemporaryStudioPractice.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This course invites students of all experience levels and working mediums to study and recreate master paintings from artists and periods of their choosing Through direct observation, analysis, and reproduction, students will investigate the visual language and decision-making processes of historical and contemporary artists. Emphasis will be placed on understanding compositional design, color relationships, drawing structure, surface handling and artistic intent. Students will develop stronger technical skills while expanding their understanding of how artists communicate ideas through visual form.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/R.McCollum Supply Master List.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">R.McCollum Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=127941\">McCollum, Rick\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$645.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065901\" eventid=\"3065901\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$645.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065901\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5165', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328469'}
2026-08-05 01:27:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:27 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328469"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1200"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1200"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:28 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1200/text {}
2026-08-05 01:27:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1200/text HTTP/1.1" 200 0
2026-08-05 01:27:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Learning Ways of Sketching and Drawing Objects in Nature (Ages: 5-10)\nLearn about a variety of artist materials and explore the Silvermine grounds. Drawing can be with charcoal, natural found materials, liquid, with graphite, more. Complete a larger drawing using a variety of techniques and materials of your choice. Learn basic sketching and drawing techniques.  Gentle group critiques for all ages.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nPlease bring a peanut free snack. All materials will be provided.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/26 – 9/26 Sa 09:00 AM – 12:00 PM Kot, Marta Violette 5 - 10 $165.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '724', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1200"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1200'}, 'outerHTML']}
2026-08-05 01:27:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328469\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328469\" onclick=\"return false;\" href=\"#\">Learning Ways of Sketching and Drawing Objects in Nature (Ages: 5-10)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/d025874d-1946-48a6-a126-985d6794141b_KotM_LearingWaysSketchingDrawingObjectNature.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Learn about a variety of artist materials and explore the Silvermine grounds. Drawing can be with charcoal, natural found materials, liquid, with graphite, more. Complete a larger drawing using a variety of techniques and materials of your choice. Learn basic sketching and drawing techniques.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Gentle group critiques for all ages.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Please bring a peanut free snack. All materials will be provided.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/26 – 9/26\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$165.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065978\" eventid=\"3065978\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$165.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065978\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4697', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=220727'}
2026-08-05 01:27:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=220727"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1206"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1206"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1206/text {}
2026-08-05 01:27:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1206/text HTTP/1.1" 200 0
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Loosen Up!\nStudents will learn how to loosen up and apply their paint in a more gestural, painterly manner. Techniques and observations on what it will take to \"loosen-up\" your paintings. Nearly all of these tips have a common denominator - simplification. The more you simplify what you do, the more it frees your mind to concentrate on staying loose. Students will practice using bigger brushes, more paint and working faster. We will take color to new unexpected places, departing from realism.\nAdditional Information:\nPlease bring photo references\nList of Materials: S.Boski Supply List.pdf.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/4 – 10/4 Su 11:30 AM – 03:30 PM Boski, Souby 18 & up $165.00 View 14\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '759', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1206"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1206'}, 'outerHTML']}
2026-08-05 01:27:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"220727\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"220727\" onclick=\"return false;\" href=\"#\">Loosen Up!\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/22866063-2861-4c35-88c3-a5df3885c381_BoskiS_LoosenUp.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial\">\u003Cspan style=\"font-size: 14px; font-family: Arial\">Students will learn how to loosen up and apply their paint in a more gestural, painterly manner. Techniques and observations on what it will take to \"loosen-up\" your paintings. Nearly all of these tips have a common denominator - simplification. The more you simplify what you do, the more it frees your mind to concentrate on staying loose. Students will practice using bigger brushes, more paint and working faster. We will take color to new unexpected places, departing from realism.\u003C/span>\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cem>\u003Cspan style=\"font-family: Arial; font-size: 12px; color: rgb(0, 0, 0)\">Please bring photo references\u003C/span>\u003C/em>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial; font-size: 12px; color: rgb(0, 0, 0)\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/S.Boski Loosen Up.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial; color: rgb(0, 0, 0)\">S.Boski Supply List.pdf.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/4 – 10/4\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11:30 AM – 03:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=97510\">Boski, Souby\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$165.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065992\" eventid=\"3065992\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">14\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$165.00\" openslots=\"14\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065992\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4537', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=326048'}
2026-08-05 01:27:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:34 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=326048"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:34 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:34 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:34 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:34 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1213"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1213"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1213/text {}
2026-08-05 01:27:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1213/text HTTP/1.1" 200 0
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Luminous Layers - Foundations in Encaustic Painting\nDiscover the luminous art of painting with molten beeswax in this fun, hands-on workshop for beginners. Learn a bit about the fascinating history of encaustic art, explore essential safety tips, and learn how to prepare your painting surfaces. You'll experiment with layering, fusing, and  mixing colors to create both smooth and textured effects. Embrace intuition and flow as you work, allowing the wax to guide your creative process. Enjoy guided demonstrations and plenty of time to explore your own ideas.\nAdditional Information:\nExplore our new programs at 15% off! Discount applied at checkout.\nList of Materials: H.Levy Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/26 – 9/26 Sa 10:00 AM – 03:00 PM Levy, Holli 18 & up $205.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '852', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1213"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1213'}, 'outerHTML']}
2026-08-05 01:27:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"326048\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"326048\" onclick=\"return false;\" href=\"#\">Luminous Layers - Foundations in Encaustic Painting\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/0b4e14e9-1def-4857-9ad2-2addeddde6ad_LevyH_LuminousLayersFoundationsEncausticPainting.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Discover the luminous art of painting with molten beeswax in this fun, hands-on workshop for beginners. Learn a bit about the fascinating history of encaustic art, explore essential safety tips, and learn how to prepare your painting surfaces. You'll experiment with layering, fusing, and\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">mixing colors to create both smooth and textured effects. Embrace intuition and flow as you work, allowing the wax to guide your creative process. Enjoy guided demonstrations and plenty of time to explore your own ideas.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new programs at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/H.Levy Luminous Layers Foundations in Encaustic Painting.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">H.Levy Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/26 – 9/26\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 03:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=139222\">Levy, Holli\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$205.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065979\" eventid=\"3065979\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$205.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065979\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5154', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=319513'}
2026-08-05 01:27:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:38 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=319513"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1219"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1219"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1219/text {}
2026-08-05 01:27:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1219/text HTTP/1.1" 200 0
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Mixed Media and Monotype\nLEVEL: ADVANCED\nIn this advanced-level course, students work largely independently to expand their practice through monotype printmaking and mixed media experimentation. Participants will integrate drawing, painting, collage, and image transfer into their monotypes, exploring layering, texture, and surface in new ways.\nStudents are encouraged to pursue individual artistic directions, asking the instructor to demonstrate techniques and processes that align with their goals. This course provides a collaborative, exploratory atmosphere for refining a unique visual language through mixed media.\nAdditional Information:\nList of Materials: N.Karpinskaia Supply List.pdf\nOpen Studio: Open Studio Spring 2026 - Printmaking.pdf\n*Class will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/16 – 12/2 We 01:30 PM – 04:30 PM Karpinskaia, Natasha 18 & up $620.00 View 5\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '947', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1219"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1219'}, 'outerHTML']}
2026-08-05 01:27:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"319513\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"319513\" onclick=\"return false;\" href=\"#\">Mixed Media and Monotype\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/b7fcc970-158b-4343-9751-5c5a26491d35_KarinskaiaN_MixedMediaMonotype.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ADVANCED\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">In this advanced-level course, students work largely independently to expand their practice through monotype printmaking and mixed media experimentation. Participants will integrate drawing, painting, collage, and image transfer into their monotypes, exploring layering, texture, and surface in new ways.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students are encouraged to pursue individual artistic directions, asking the instructor to demonstrate techniques and processes that align with their goals. This course provides a collaborative, exploratory atmosphere for refining a unique visual language through mixed media.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/N.Karpinskaia Exploring Monotype  Mixed Media.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">N.Karpinskaia Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cspan style=\"margin-bottom: 0px !important; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Printmaking_Sp2026.pdf\" target=\"_blank\">\u003Cspan style=\"margin-bottom: 0px !important; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">Open Studio Spring 2026 - Printmaking.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"margin-bottom: 0px !important; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">*Class will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:30 PM – 04:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75698\">Karpinskaia, Natasha\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$620.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065929\" eventid=\"3065929\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">5\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$620.00\" openslots=\"5\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065929\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5873', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=166024'}
2026-08-05 01:27:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=166024"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1229"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1229"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1229/text {}
2026-08-05 01:27:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1229/text HTTP/1.1" 200 0
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Monotype Printmaking\nLEVELS: ALL LEVELS\nParticipants will learn all the basic techniques for creating monotypes: multiple plates, chine colle’, stencils and viscosity. It will focus on practicing, experimenting and letting the process lead you to new innovations. Discover endless possibilities as you print more. Emphasis is given to helping each student develop a personal knowledge of the process.\nAdditional Information:\nList of Materials: N.Karpinskaia Supply List.pdf\nOpen Studio: Open Studio Spring 2026 - Printmaking.pdf\n*Class will not meet 11/26*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n7/23 – 8/20 Th 01:00 PM – 04:00 PM Karpinskaia, Natasha 18 & up $360.00 View 4\nREGISTER NOW\n9/17 – 12/3 Th 09:30 AM – 12:30 PM Karpinskaia, Natasha 18 & up $620.00 View 2\nREGISTER NOW\n9/17 – 12/3 Th 01:00 PM – 04:00 PM Karpinskaia, Natasha 18 & up $620.00 View 7\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '922', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1229"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1229'}, 'outerHTML']}
2026-08-05 01:27:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"166024\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"166024\" onclick=\"return false;\" href=\"#\">Monotype Printmaking\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/177013090494791_karpinskaian_monotypeprintmaking.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal\">\u003Cspan style=\"color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">LEVELS: ALL LEVELS\u003C/span>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal\">\u003Cspan style=\"color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">Participants will learn all the basic techniques for creating monotypes: multiple plates, chine colle’, stencils and viscosity. It will focus on practicing, experimenting and letting the process lead you to new innovations. Discover endless possibilities as you print more. Emphasis is given to helping each student develop a personal knowledge of the process.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp style=\"font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(51, 51, 51); line-height: 1.4em; font-size: 16px; background-color: rgb(255, 255, 255)\">\u003Cspan style=\"color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/N.Karpinskaia Monotype Printmaking.pdf\" target=\"_blank\">\u003Cu>\u003Cspan style=\"color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">N.Karpinskaia Supply List.pdf\u003C/span>\u003C/u>\u003C/a>\u003C/p>\u003Cp style=\"font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(51, 51, 51); line-height: 1.4em; font-size: 16px; background-color: rgb(255, 255, 255)\">\u003Cspan style=\"margin-bottom: 0px !important; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Printmaking_Sp2026.pdf\" target=\"_blank\">\u003Cspan style=\"margin-bottom: 0px !important; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">Open Studio Spring 2026 - Printmaking.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"margin-bottom: 0px !important; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">*Class will not meet 11/26*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">7/23 – 8/20\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75698\">Karpinskaia, Natasha\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$360.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3006441\" eventid=\"3006441\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">4\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$360.00\" openslots=\"4\" registertype=\"register\" onclick=\"return false;\" eventid=\"3006441\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75698\">Karpinskaia, Natasha\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$620.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065936\" eventid=\"3065936\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">2\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$620.00\" openslots=\"2\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065936\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75698\">Karpinskaia, Natasha\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$620.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065942\" eventid=\"3065942\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">7\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$620.00\" openslots=\"7\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065942\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '8212', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321417'}
2026-08-05 01:27:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:46 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321417"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1242"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1242"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1242/text {}
2026-08-05 01:27:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1242/text HTTP/1.1" 200 0
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Monster Mash Up (Ages: 4-7)\nGet ready to roar, stomp, and create your way through the afternoons! Let’s make our very own monsters and explore a world of goofy, colorful fun. This camp is all about embracing creativity, fun, and fantastical creatures! Slime Time Friday!\nAdditional Information:\nParents: Please pack a water bottle as well as a peanut free snack.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/10 – 8/14 Mo Tu We Th Fr 01:00 PM – 04:00 PM Bloom, Lori 4 - 8 $465.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '688', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1242"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1242'}, 'outerHTML']}
2026-08-05 01:27:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321417\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321417\" onclick=\"return false;\" href=\"#\">Monster Mash Up (Ages: 4-7)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/6960eff5-fe5b-45a0-8eb4-fb510e313491_BloomL_MonsterMashUp.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #080808\">Get ready to roar, stomp, and create your way through the afternoons! Let’s make our very own monsters and explore a world of goofy, colorful fun. This camp is all about embracing creativity, fun, and fantastical creatures! Slime Time Friday!\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Parents: Please pack a water bottle as well as a peanut free snack.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/10 – 8/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=113806\">Bloom, Lori\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">4 - 8\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2956980\" eventid=\"2956980\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"0\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2956980\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5576', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321501'}
2026-08-05 01:27:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321501"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1252"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1252"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1252/text {}
2026-08-05 01:27:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1252/text HTTP/1.1" 200 0
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Nature in Art: Plants & Animals- Sculpture, Painting, Exploration with Clay (Ages: 5-10)\nWhere painting and clay sculpting are included every week, mARTa's Summer Art Studio encourages open ended experimentation, creative expression, exploration, and appreciation, of art. While building friendships and learning about the properties of art materials, children are guided to engage with imagination, and to contribute meaning to artwork. They will be introduced to a variety of techniques while exploring play in art, and they will develop their creative abilities to self-express and see and experience the world in new ways. Each day will include a variety of materials, surprises, outdoor recess with games and stories about well-known artists. Art materials may include watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, things that shine, beads, paint markers, more. Gentle discussions about the artwork in progress and art history will be introduced.\nThroughout the week children may work in the art studio, explore the lush Silvermine outdoor environment, and visit the Silvermine galleries & exhibitions. mARTa's sensory rich studio environment is designed to make one's learning more complex while supporting imagination and play in a caring environment. It's a place where children will develop meaningful connections to self and their ever-changing surrounding environment. All materials will be supplied.\nAdditional Information:\nPlease pack a peanut free snack and drink. Please bring a sturdy container or box, labeled with student’s first & last name to transport clay objects home.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/10 – 8/14 Mo Tu We Th Fr 09:00 AM – 12:00 PM Kot, Marta Violette 5 - 11 $465.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1946', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1252"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1252'}, 'outerHTML']}
2026-08-05 01:27:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321501\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321501\" onclick=\"return false;\" href=\"#\">Nature in Art: Plants &amp; Animals- Sculpture, Painting, Exploration with Clay (Ages: 5-10)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/9607195d-5e61-4e35-9321-dd9a6c982b5a_KotM_NatureinArtPlantsAnimals.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Where painting and clay sculpting are included every week, mARTa's Summer Art Studio encourages open ended experimentation, creative expression, exploration, and appreciation, of art. While building friendships and learning about the properties of art materials, children are guided to engage with imagination, and to contribute meaning to artwork. They will be introduced to a variety of techniques while exploring play in art, and they will develop their creative abilities to self-express and see and experience the world in new ways. Each day will include a variety of materials, surprises, outdoor recess with games and stories about well-known artists. Art materials may include watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, things that shine, beads, paint markers, more. Gentle discussions about the artwork in progress and art history will be introduced.\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Throughout the week children may work in the art studio, explore the lush Silvermine outdoor environment, and visit the Silvermine galleries &amp; exhibitions. mARTa's sensory rich studio environment is designed to make one's learning more complex while supporting imagination and play in a caring environment. It's a place where children will develop meaningful connections to self and their ever-changing surrounding environment. All materials will be supplied.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Please pack a peanut free snack and drink. Please bring a sturdy container or box, labeled with student’s first &amp; last name to transport clay objects home.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/10 – 8/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2957839\" eventid=\"2957839\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"-4\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2957839\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '7209', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=253975'}
2026-08-05 01:27:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:52 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=253975"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1261"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1261"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1261/text {}
2026-08-05 01:27:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1261/text HTTP/1.1" 200 0
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"On & Off the Potter's Wheel for All Levels\nLEVEL: ALL LEVELS\nWhether you’ve never touched clay or have been at it for years, this class will accommodate your needs. The initial focus of the class will be on the potter’s wheel and will then transition to exploration of handbuilding techniques, with an emphasis on slab work. Beginners will be taught foundational wheel skills, general pottery techniques and gain an understanding of the complete ceramic process. For those who have more experience, the class will focus on complex forms, various surface treatments and advanced glazing methods. Class demos as well as individual instruction will be provided.\nAdditional Information:\nA firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\nList of Materials: Tool Kits & Clay are available for purchase in class\nOpen Studio: Open Studio Fall 2026 - Ceramics.pdf\n*Class will not meet 9/21*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/14 – 11/30 Mo 10:00 AM – 01:00 PM Puzzuoli, Jon 18 & up $740.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1279', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1261"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1261'}, 'outerHTML']}
2026-08-05 01:27:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"253975\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"253975\" onclick=\"return false;\" href=\"#\">On &amp; Off the Potter's Wheel for All Levels\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/57ddabab-74f2-4f20-8645-cca9b3352d57_Puzzuoli J_OnOff PottersWheel.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Whether you’ve never touched clay or have been at it for years, this class will accommodate your needs. The initial focus of the class will be on the potter’s wheel and will then transition to exploration of handbuilding techniques, with an emphasis on slab work. Beginners will be taught foundational wheel skills, general pottery techniques and gain an understanding of the complete ceramic process. For those who have more experience, the class will focus on complex forms, various surface treatments and advanced glazing methods. Class demos as well as individual instruction will be provided.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp style=\"background-color: rgb(255, 255, 255)\">\u003Cspan style=\"color: rgb(0, 0, 0); font-family: Arial; font-size: 12px; letter-spacing: 0.2px; background-color: rgb(255, 255, 255)\">A firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\u003C/span>\u003C/p>\u003Cp style=\"background-color: rgb(255, 255, 255)\">\u003Cspan style=\"font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">List of Materials:&nbsp;\u003C/span>\u003Cspan style=\"line-height: 12.84px; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Tool Kits &amp; Clay are available for purchase in class\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf\" target=\"_blank\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio Fall 2026 - Ceramics.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">*Class will not meet 9/21*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/14 – 11/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$740.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066083\" eventid=\"3066083\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$740.00\" openslots=\"-8\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"3066083\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6171', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=322620'}
2026-08-05 01:27:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:27:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=322620"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:27:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:27:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1270"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1270"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:58 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1270/text {}
2026-08-05 01:27:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1270/text HTTP/1.1" 200 0
2026-08-05 01:27:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"One Day Darkroom (Ages: 16 & Up)\nCome and explore film photography and the darkroom process. Make prints the old-fashioned way. Use old negatives or make new ones. Learn to make cameraless photo prints. Or work on a current project. No experience necessary.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/3 – 10/3 Sa 10:00 AM – 04:00 PM Dunbar, Bruce 16 & up $240.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '413', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:27:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:27:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1270"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:27:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1270'}, 'outerHTML']}
2026-08-05 01:27:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:27:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"322620\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"322620\" onclick=\"return false;\" href=\"#\">One Day Darkroom (Ages: 16 &amp; Up)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/14d65061-8201-440e-9c24-b8bca7fca30e_DunbarB_OnDayDarkroom.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Come and explore film photography and the darkroom process. Make prints the old-fashioned way. Use old negatives or make new ones. Learn to make cameraless photo prints. Or work on a current project. No experience necessary.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/3 – 10/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=87648\">Dunbar, Bruce\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">16 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$240.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065989\" eventid=\"3065989\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$240.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065989\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '3676', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:27:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328470'}
2026-08-05 01:28:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328470"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1277"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1277"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1277/text {}
2026-08-05 01:28:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1277/text HTTP/1.1" 200 0
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"One Night Stand: Decoupage Holiday Ornaments\nDuring this two-hour workshop you will create several holiday themed ornaments using decoupage on wood. Related to collage, decoupage uses cut paper and glue to add designs to various surfaces. No experience needed and all materials will be supplied.\nAdditional Information:\nList of Materials: All materials are provided for this offering.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n12/16 – 12/16 We 07:00 PM – 09:00 PM Hyon, Nash 18 & up $75.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '541', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1277"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1277'}, 'outerHTML']}
2026-08-05 01:28:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328470\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328470\" onclick=\"return false;\" href=\"#\">One Night Stand: Decoupage Holiday Ornaments\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/f235b586-1166-41fe-b566-b6121c5d9a62_HyonN_DecoupageHolidayOrnament.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">During this two-hour workshop you will create several holiday themed ornaments using decoupage on wood. Related to collage, decoupage uses cut paper and glue to add designs to various surfaces. No experience needed and all materials will be supplied.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"letter-spacing: 0.2px; background-color: rgb(255, 255, 255); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/16 – 12/16\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066068\" eventid=\"3066068\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066068\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4071', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:03 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=195838'}
2026-08-05 01:28:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:03 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=195838"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:03 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1283"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1283"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1283/text {}
2026-08-05 01:28:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1283/text HTTP/1.1" 200 0
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"One Night Stand: Fluid Acrylic Pours\nNo painting experience required to create two beautiful 12 x 12 unique abstract paintings. Many of you have tried this technique already so we will be offering two different techniques. Part of the fun is that each technique creates its own pattern and surprises. The painting go home wet so please bring suitable boxes for transport -pizza boxes work well. All other supplies are included.\nAdditional Information:\nList of Materials: Please come dressed for mess. Bring two pizza boxes that fit two 12 x 12 canvases to take home wet artwork. \nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/18 – 9/18 Fr 07:00 PM – 09:00 PM Hyon, Nash 18 & up $75.00 View 11\nREGISTER NOW\n10/16 – 10/16 Fr 07:00 PM – 09:00 PM Hyon, Nash 18 & up $75.00 View 11\nREGISTER NOW\n11/13 – 11/13 Fr 07:00 PM – 09:00 PM Hyon, Nash 18 & up $75.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '914', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1283"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1283'}, 'outerHTML']}
2026-08-05 01:28:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"195838\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"195838\" onclick=\"return false;\" href=\"#\">One Night Stand: Fluid Acrylic Pours\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/168313522519429_pours.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 14px\">No painting experience required to create two beautiful 12 x 12 unique abstract paintings. Many of you have tried this technique already so we will be offering two different techniques. Part of the fun is that each technique creates its own pattern and surprises. The painting go home wet so please bring suitable boxes for transport -pizza boxes work well. All other supplies are included.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: Please come dressed for mess. Bring two pizza boxes that fit two 12 x 12 canvases to take home wet artwork.&nbsp;\u003Cbr>\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/18 – 9/18\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065956\" eventid=\"3065956\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065956\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/16 – 10/16\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066003\" eventid=\"3066003\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066003\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/13 – 11/13\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066043\" eventid=\"3066043\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066043\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6473', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=242326'}
2026-08-05 01:28:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=242326"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1296"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1296"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1296/text {}
2026-08-05 01:28:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1296/text HTTP/1.1" 200 0
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"One Night Stand: Gel Plate Printing\nNo experience needed! In this new, fun two hour workshop we will experience the magic of printing in multiple colors, design, textures and transfers using the gel plate. With water based paints multiple layers will be created by printing the same paper over and over. When these dry, the prints may be used for collage, cards, gift wrap or framed as finished artwork. You will be amazed at what you can make during the two hours of this workshop.\nAdditional Information:\nList of Materials: All materials are provided for this offering\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/14 – 8/14 Fr 07:00 PM – 09:00 PM Hyon, Nash 18 & up $75.00 View 12\nREGISTER NOW\n9/25 – 9/25 Fr 07:00 PM – 09:00 PM Hyon, Nash 18 & up $75.00 View 11\nREGISTER NOW\n10/23 – 10/23 Fr 07:00 PM – 09:00 PM Hyon, Nash 18 & up $75.00 View 12\nREGISTER NOW\n11/20 – 11/20 Fr 07:00 PM – 09:00 PM Hyon, Nash 18 & up $75.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '993', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1296"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1296'}, 'outerHTML']}
2026-08-05 01:28:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"242326\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"242326\" onclick=\"return false;\" href=\"#\">One Night Stand: Gel Plate Printing\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/168305755004047_capture.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">No experience needed! In this new, fun two hour workshop we will experience the magic of printing in multiple colors, design, textures and transfers using the gel plate. With water based paints multiple layers will be created by printing the same paper over and over. When these dry, the prints may be used for collage, cards, gift wrap or framed as finished artwork. You will be amazed at what you can make during the two hours of this workshop.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"letter-spacing: 0.2px; background-color: rgb(255, 255, 255); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/14 – 8/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3006458\" eventid=\"3006458\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3006458\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/25 – 9/25\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065977\" eventid=\"3065977\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065977\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/23 – 10/23\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066013\" eventid=\"3066013\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066013\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/20 – 11/20\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066048\" eventid=\"3066048\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066048\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '7515', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328471'}
2026-08-05 01:28:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:10 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328471"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1315"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1315"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1315/text {}
2026-08-05 01:28:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1315/text HTTP/1.1" 200 0
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"One Night Stand: Gel Plate Printing for Holiday Cards & Gift Wrap\nGel plate printing is fun, quick and easy to master. In the workshop we will create holiday themed cards and gift wrap.\nAdditional Information:\nList of Materials: All materials are provided for this offering\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n12/14 – 12/14 Mo 07:00 PM – 09:00 PM Hyon, Nash 18 & up $75.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '430', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1315"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1315'}, 'outerHTML']}
2026-08-05 01:28:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328471\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328471\" onclick=\"return false;\" href=\"#\">One Night Stand: Gel Plate Printing for Holiday Cards &amp; Gift Wrap\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/980ba1a6-4bc9-41f0-b08c-7dfc71e0d8b7_HyonN_GalPlatePrintingHolidayCardsGiftWrap.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Gel plate printing is fun, quick and easy to master. In the workshop we will create holiday themed cards and gift wrap.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"letter-spacing: 0.2px; background-color: rgb(255, 255, 255); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/14 – 12/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066067\" eventid=\"3066067\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066067\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '3995', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=166016'}
2026-08-05 01:28:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:13 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=166016"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1319"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1319"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1319/text {}
2026-08-05 01:28:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1319/text HTTP/1.1" 200 0
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"One Night Stand: On the Potter's Wheel\nJoin us for a fun evening out with friends or family! The evening will start with a wheel throwing demonstration followed by an opportunity for you to learn how to throw on the potter’s wheel. You'll create your very own bowl(s) which we will glaze and fire for you to pick up at a later date. We promise you'll have a blast and it will be a different experience for you. Bring a friend, family member or a date, and enjoy the evening.\nThe pieces will take four to six weeks to fire, and the school office will notify you when pieces are ready to be picked up.\nAdditional Information:\nList of Materials: All materials are provided for this offering\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/14 – 8/14 Fr 07:00 PM – 09:00 PM Casner, Kate 18 & up $75.00 View 0\nADD TO WAITLIST\n8/21 – 8/21 Fr 07:00 PM – 09:00 PM Casner, Kate 18 & up $75.00 View 5\nREGISTER NOW\n9/18 – 9/18 Fr 07:00 PM – 09:00 PM Puzzuoli, Jon 18 & up $75.00 View 9\nREGISTER NOW\n10/2 – 10/2 Fr 07:00 PM – 09:00 PM Puzzuoli, Jon 18 & up $75.00 View 10\nREGISTER NOW\n10/16 – 10/16 Fr 07:00 PM – 09:00 PM Puzzuoli, Jon 18 & up $75.00 View 10\nREGISTER NOW\n10/30 – 10/30 Fr 07:00 PM – 09:00 PM Puzzuoli, Jon 18 & up $75.00 View 10\nREGISTER NOW\n11/13 – 11/13 Fr 07:00 PM – 09:00 PM Puzzuoli, Jon 18 & up $75.00 View 10\nREGISTER NOW\n12/4 – 12/4 Fr 07:00 PM – 09:00 PM Puzzuoli, Jon 18 & up $75.00 View 10\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1489', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1319"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1319'}, 'outerHTML']}
2026-08-05 01:28:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"166016\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"166016\" onclick=\"return false;\" href=\"#\">One Night Stand: On the Potter's Wheel\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/168305722522322_capture.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Join us for a fun evening out with friends or family! The evening will start with a wheel throwing demonstration followed by an opportunity for you to learn how to throw on the potter’s wheel. You'll create your very own bowl(s) which we will glaze and fire for you to pick up at a later date. We promise you'll have a blast and it will be a different experience for you. Bring a friend, family member or a date, and enjoy the evening.\u003C/span>\u003C/p>\u003Cp>\u003Cem>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">The pieces will take four to six weeks to fire, and the school office will notify you when pieces are ready to be picked up.\u003C/span>\u003C/em>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/14 – 8/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=138154\">Casner, Kate\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3006459\" eventid=\"3006459\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"0\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"3006459\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/21 – 8/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=138154\">Casner, Kate\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3006465\" eventid=\"3006465\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">5\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"5\" registertype=\"register\" onclick=\"return false;\" eventid=\"3006465\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/18 – 9/18\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065957\" eventid=\"3065957\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">9\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"9\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065957\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/2 – 10/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065985\" eventid=\"3065985\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065985\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/16 – 10/16\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066004\" eventid=\"3066004\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066004\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/30 – 10/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066026\" eventid=\"3066026\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066026\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/13 – 11/13\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066044\" eventid=\"3066044\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066044\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/4 – 12/4\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066058\" eventid=\"3066058\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066058\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '12171', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=235057'}
2026-08-05 01:28:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=235057"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1347"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1347"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1347/text {}
2026-08-05 01:28:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1347/text HTTP/1.1" 200 0
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"One Night Stand: Painting the Masters\nLearn to work with acrylic paints by painting your own version of a famous artist's painting. Art students have been doing this for generations and we will show you how to transfer the image along with basic acrylic painting techniques. You don't need to know how to draw! In the past we have done paintings by Van Gogh and Cezanne and Georgia O'Keefe. Have fun and create your own masterpiece! Materials are included.\nAdditional Information:\nList of Materials: All materials are provided for this offering\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/21 – 8/21 Fr 07:00 PM – 09:00 PM Hyon, Nash 18 & up $75.00 View 11\nREGISTER NOW\n10/2 – 10/2 Fr 07:00 PM – 09:00 PM Hyon, Nash 18 & up $75.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '787', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1347"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1347'}, 'outerHTML']}
2026-08-05 01:28:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"235057\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"235057\" onclick=\"return false;\" href=\"#\">One Night Stand: Painting the Masters\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/3ba3236e-0d93-4deb-bfec-5101d6c8f58a_ONS_Matisse Still Life.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"background: white; color: #000000; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Learn to work with acrylic paints by painting your own version of a famous artist's painting. Art students have been doing this for generations and we will show you how to transfer the image along with basic acrylic painting techniques. You don't need to know how to draw! In the past we have done paintings by Van Gogh and Cezanne and Georgia O'Keefe. Have fun and create your own masterpiece! Materials are included.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"letter-spacing: 0.2px; background-color: rgb(255, 255, 255); font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: All materials are provided for this offering\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/21 – 8/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3006466\" eventid=\"3006466\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3006466\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/2 – 10/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065986\" eventid=\"3065986\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065986\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5340', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328472'}
2026-08-05 01:28:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:20 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328472"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1348"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1348"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1348/text {}
2026-08-05 01:28:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1348/text HTTP/1.1" 200 0
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"One Night Stand: Paper Flowers for the Holidays\nPaper flowers are fun to create and can be used for many different types of decorations. this workshop will focus on two different types of flowers that can be used for table tops and /or tree decorations.\nAdditional Information:\nList of Materials: All materials are provided for this offering\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n12/18 – 12/18 Fr 07:00 PM – 09:00 PM Hyon, Nash 18 & up $75.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '498', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1348"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1348'}, 'outerHTML']}
2026-08-05 01:28:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328472\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328472\" onclick=\"return false;\" href=\"#\">One Night Stand: Paper Flowers for the Holidays\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/59573315-5ffe-40ba-9fed-a18a9eb70e26_HyonN_PaperFlowersHolidays.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Ca>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Paper flowers are fun to create and can be used for many different types of decorations. this workshop will focus on two different types of flowers that can be used for table tops and /or tree decorations.\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"letter-spacing: 0.2px; background-color: rgb(255, 255, 255); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/18 – 12/18\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066069\" eventid=\"3066069\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066069\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4041', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=166008'}
2026-08-05 01:28:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:24 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=166008"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1354"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1354"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1354/text {}
2026-08-05 01:28:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1354/text HTTP/1.1" 200 0
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Painting 101: Foundation Painting\nLEVEL: BEGINNER - INTERMEDIATE\nThis course is for beginning and intermediate students who want to learn the techniques and procedures necessary for painting in oils or acrylics. Basic skills in drawing, composition, mixing and applying paint will be demonstrated. Subject matter will include still life, figure, portrait and landscape. You will be guided through the foundation steps towards a satisfying work of art.\nAdditional Information:\nList of Materials: A.McFarlane Supply List.pdf\n*Class will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/16 – 12/2 We 09:30 AM – 12:30 PM McFarlane, Alex 18 & up $645.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '713', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1354"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1354'}, 'outerHTML']}
2026-08-05 01:28:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"166008\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"166008\" onclick=\"return false;\" href=\"#\">Painting 101: Foundation Painting\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/144203_thumbnail_wings.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv class=\"page\" style=\"color: rgb(0, 0, 0); font-family: -webkit-standard; letter-spacing: normal\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif\">\u003Cspan style=\"font-family: Calibri, sans-serif\">\u003Cspan style=\"font-size: 14px; font-family: Arial\">LEVEL: BEGINNER - INTERMEDIATE\u003C/span>\u003C/span>\u003C/p>\u003Cdiv>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">This course is for beginning and intermediate students who want to learn the techniques and procedures necessary for painting in oils or acrylics. Basic skills in drawing, composition, mixing and applying paint will be demonstrated. Subject matter will include still life, figure, portrait and landscape. You will be guided through the foundation steps towards a satisfying work of art.\u003C/span>\u003Cbr>\u003C/div>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cdiv>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial; color: rgb(0, 0, 0)\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/A.McFarlane Painting 101 Foundation Painting.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial; color: rgb(0, 0, 0)\">A.McFarlane Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial; color: rgb(0, 0, 0)\">*Class will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75707\">McFarlane, Alex\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$645.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065919\" eventid=\"3065919\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$645.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065919\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5001', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=253486'}
2026-08-05 01:28:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:27 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=253486"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:27 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:27 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:27 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:27 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1364"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1364"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:30 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1364/text {}
2026-08-05 01:28:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1364/text HTTP/1.1" 200 0
2026-08-05 01:28:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Painting Creatively from Photographs\nMost artists use source photos in some capacity when they work, whether to jog their memory of a particular place and time or to record specific visual details to incorporate in later pieces. In this workshop students will learn to paint in a creative, personal, and expressive way using reference photographs - freeing them from copying. Learn to dismiss the sense of obligation to show exactly what is depicted in the photo and feel free and inspired to manipulate the composition, assuring vitality and making the painting your personal creation. Bring several canvases and reference photos. A suggested materials list will be provided upon registration\nAdditional Information:\nList of Materials: S.Boski Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/9 – 8/9 Su 11:30 AM – 03:30 PM Boski, Souby 18 & up $165.00 View 6\nREGISTER NOW\n12/6 – 12/6 Su 11:30 AM – 03:30 PM Boski, Souby 18 & up $165.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1006', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1364"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1364'}, 'outerHTML']}
2026-08-05 01:28:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"253486\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"253486\" onclick=\"return false;\" href=\"#\">Painting Creatively from Photographs\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/0bb4fe4d-f47c-49ce-8ff6-a606c690f984_BoskiS_PaintingCreativelyPhotographs.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"color: rgb(25, 28, 31); font-family: Arial; font-size: 14px\">Most artists use source photos in some capacity when they work, whether to jog their memory of a particular place and time or to record specific visual details to incorporate in later pieces.&nbsp;\u003C/span>\u003Cspan style=\"color: rgb(55, 55, 55); font-family: Arial; font-size: 14px\">In this workshop students will learn to paint in a creative, personal, and expressive way using reference photographs - freeing them from copying.&nbsp;\u003C/span>\u003Cspan style=\"color: rgb(25, 28, 31); font-family: Arial; font-size: 14px\">Learn to dismiss the sense of obligation to show exactly what is depicted in the photo and feel free and inspired to manipulate the composition, assuring vitality and making the painting your personal creation.&nbsp;\u003C/span>\u003Cspan style=\"color: rgb(25, 28, 31); font-family: Arial; font-size: 14px\">Bring several canvases and reference photos. A suggested materials list will be provided upon registration\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-family: Arial; font-size: 12px; color: rgb(0, 0, 0)\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/S.Boski Workshops.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial; color: rgb(0, 0, 0)\">S.Boski Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/9 – 8/9\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11:30 AM – 03:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=97510\">Boski, Souby\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$165.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3006457\" eventid=\"3006457\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">6\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$165.00\" openslots=\"6\" registertype=\"register\" onclick=\"return false;\" eventid=\"3006457\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/6 – 12/6\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11:30 AM – 03:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=97510\">Boski, Souby\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$165.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066061\" eventid=\"3066061\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$165.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066061\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5959', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=190843'}
2026-08-05 01:28:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=190843"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1376"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1376"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1376/text {}
2026-08-05 01:28:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1376/text HTTP/1.1" 200 0
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Painting with Encaustics\nLEVEL: INTERMEDIATE TO ADVANCED\nThis class is for students with encaustic experience who want to continue their practice with this medium. Qualifying experience includes having taken the mini-course Encaustic Painting for Beginners. Consideration will also be given to students who have attended the workshop, Introduction to Encaustic Painting, or a 2 hour private session with Nash or with another encaustic instructor, this is not a class for beginners. During class we will focus on each students skills going beyond the basics, content driven series and professional development.\nAdditional Information:\nList of Materials: N.Hyon Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/16 – 11/4 We 01:00 PM – 04:00 PM Hyon, Nash 18 & up $505.00 View 4\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '831', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1376"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1376'}, 'outerHTML']}
2026-08-05 01:28:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"190843\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"190843\" onclick=\"return false;\" href=\"#\">Painting with Encaustics\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/167822532392219_nash encaustic.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv class=\"page\" style=\"color: rgb(0, 0, 0); font-family: -webkit-standard; letter-spacing: normal\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif\">\u003Cspan style=\"font-size: 10.5pt; font-family: &quot;Arial&quot;, sans-serif; color: #000000\">LEVEL: INTERMEDIATE TO ADVANCED\u003C/span>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif\">\u003Cspan style=\"font-size: 10.5pt; font-family: &quot;Arial&quot;, sans-serif; color: #000000\">This class is for students with encaustic experience who want to continue their practice with this medium. Qualifying experience includes having taken the mini-course Encaustic Painting for Beginners. Consideration will also be given to students who have attended the workshop, Introduction to Encaustic Painting, \u003C/span>\u003Cb>\u003Cspan style=\"font-size: 10.5pt; font-family: &quot;Arial&quot;, sans-serif; color: #000000\">or \u003C/span>\u003C/b>\u003Cspan style=\"font-size: 10.5pt; font-family: &quot;Arial&quot;, sans-serif; color: #000000\">a 2 hour private session with Nash or with another encaustic instructor, this is not a class for beginners. During class we will focus on each students skills going beyond the basics, content driven series and professional development.\u003C/span>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cp>\u003Cspan style=\"letter-spacing: 0.2px; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/N.Hyon Painting with Encaustics UPDATED.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">N.Hyon Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 11/4\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75696\">Hyon, Nash\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$505.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065926\" eventid=\"3065926\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">4\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$505.00\" openslots=\"4\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065926\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5372', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=326049'}
2026-08-05 01:28:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=326049"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1384"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1384"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1384/text {}
2026-08-05 01:28:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1384/text HTTP/1.1" 200 0
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Painting with Paper - Encaustic Style\nEncaustic paint made from beeswax, damar resin, and pigment is a wonderfully versatile medium that can be applied in many creative ways. In this class, you'll explore a playful technique using tissue paper soaked with encaustic paint to build a rich, layered artwork. You will learn how to prepare your birch panel substrate, create colorful encaustic-soaked tissue papers, and then use those papers to “paint” your image. Whether you choose a landscape or an abstract composition, your textured piece can be further enhanced with pigment sticks for added depth and detail. No prior experience is necessary. Both artists who are completely new to encaustic and those with experience in the medium are warmly welcome.\nAdditional Information:\nExplore our new programs at 15% off! Discount applied at checkout.\nList of Materials: H.Levy Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/15 – 8/15 Sa 10:00 AM – 03:00 PM Levy, Holli 18 & up $235.00 View 4\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1048', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1384"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1384'}, 'outerHTML']}
2026-08-05 01:28:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"326049\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"326049\" onclick=\"return false;\" href=\"#\">Painting with Paper - Encaustic Style\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/315b0163-8728-4148-b719-fe45310c5b47_LevyH_PaintingwithPaperEncausticStyle.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Encaustic paint made from beeswax, damar resin, and pigment is a wonderfully versatile medium that can be applied in many creative ways. In this class, you'll explore a playful technique using tissue paper soaked with encaustic paint to build a rich, layered artwork. You will learn how to prepare your birch panel substrate, create colorful encaustic-soaked tissue papers, and then use those papers to “paint” your image. Whether you choose a landscape or an abstract composition, your textured piece can be further enhanced with pigment sticks for added depth and detail. No prior experience is necessary. Both artists who are completely new to encaustic and those with experience in the medium are warmly welcome.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new programs at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/H.Levy Painting with Paper Encaustic Style.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">H.Levy Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/15 – 8/15\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">  Sa \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 03:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=139222\">Levy, Holli\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$235.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3006461\" eventid=\"3006461\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">4\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$235.00\" openslots=\"4\" registertype=\"register\" onclick=\"return false;\" eventid=\"3006461\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5051', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=176918'}
2026-08-05 01:28:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:38 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=176918"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1400"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1400"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1400/text {}
2026-08-05 01:28:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1400/text HTTP/1.1" 200 0
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Pastel Painting\nLEVEL: ALL LEVELS\nExplore the radiant colors of pastels while experimenting with papers and techniques. This course will offer a comprehensive foundation for both beginners and those who wish to enhance their skills. Explore color, value, composition, and concept as well as different drawing finishes and materials. Working individually with the instructor, students will move beyond drawing to render objects accurately and will come to view drawing as a challenging vehicle of both form and narrative.\nAdditional Information:\nList of Materials: N.Silverman Supply List.pdf\n*Class will not meet 10/29, 11/26*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/17 – 12/3 Th 01:00 PM – 04:00 PM Silverman, Nomi 18 & up $555.00 View 9\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '788', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1400"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1400'}, 'outerHTML']}
2026-08-05 01:28:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"176918\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"176918\" onclick=\"return false;\" href=\"#\">Pastel Painting\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/317c0f34-d33a-4fc2-b951-1068d56c4b38_SilvermanN_PastelPainting Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Explore the radiant colors of pastels while experimenting with papers and techniques. This course will offer a comprehensive foundation for both beginners and those who wish to enhance their skills. Explore color, value, composition, and concept as well as different drawing finishes and materials. Working individually with the instructor, students will move beyond drawing to render objects accurately and will come to view drawing as a challenging vehicle of both form and narrative.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/N.Silverman Pastel Painting.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">N.Silverman Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 10/29, 11/26*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75727\">Silverman, Nomi\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$555.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065943\" eventid=\"3065943\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">9\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$555.00\" openslots=\"9\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065943\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5041', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321627'}
2026-08-05 01:28:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:41 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321627"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1402"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1402"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1402/text {}
2026-08-05 01:28:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1402/text HTTP/1.1" 200 0
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Play with Clay: Handbuilt Games (Ages: 10-13)\nLet your imagination soar as you craft functional ceramic games! Sculpt your own tic-tac-toe, memory matching, mancala, and more—or invent your own interactive game. No experience needed, just bring your imagination and be ready to get a little messy!\nAdditional Information:\nParents: Please pack a water bottle as well as a peanut free snack.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/3 – 8/7 Mo Tu We Th Fr 09:00 AM – 12:00 PM Casner, Kate 10 - 14 $515.00 View 4\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '713', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1402"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1402'}, 'outerHTML']}
2026-08-05 01:28:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321627\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321627\" onclick=\"return false;\" href=\"#\">Play with Clay: Handbuilt Games (Ages: 10-13)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/a69119c8-96f6-42f2-ab87-75ac53c29d9b_CasnerK_PlaywithClay Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Let your imagination soar as you craft functional ceramic games! Sculpt your own tic-tac-toe, memory matching, mancala, and more—or invent your own interactive game. No experience needed, just bring your imagination and be ready to get a little messy!\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Parents: Please pack a water bottle as well as a peanut free snack.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/3 – 8/7\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=138154\">Casner, Kate\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">10 - 14\u003C/td>\n    \n        \u003Ctd class=\"\">$515.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2959772\" eventid=\"2959772\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">4\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$515.00\" openslots=\"4\" registertype=\"register\" onclick=\"return false;\" eventid=\"2959772\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5624', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=299865'}
2026-08-05 01:28:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:45 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=299865"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1415"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1415"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1415/text {}
2026-08-05 01:28:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1415/text HTTP/1.1" 200 0
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Portraiture: The Basics\nLEVEL: BEGINNER\nLearn how to draw and paint the face and head. Explore how to compose a portrait and build your work with light, color, tone, shadow and volume. You will also learn how to best use your paints and materials, and mistakes to avoid.\nAdditional Information:\nList of Materials: D.Lyall Supply List.pdf\n*Class will not meet 11/7*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/19 – 12/5 Sa 10:00 AM – 12:30 PM Lyall, Dennis 18 & up $555.00 View 15\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '525', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1415"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1415'}, 'outerHTML']}
2026-08-05 01:28:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"299865\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"299865\" onclick=\"return false;\" href=\"#\">Portraiture: The Basics\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/2d343175-0912-431e-ba7c-285729ea50a0_LyallDPortraiture.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: BEGINNER\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Learn how to draw and paint the face and head. Explore how to compose a portrait and build your work\u003C/span>\u003Cspan style=\"letter-spacing: -.05pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">with\u003C/span>\u003Cspan style=\"letter-spacing: -.2pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">light,\u003C/span>\u003Cspan style=\"letter-spacing: -.05pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">color,\u003C/span>\u003Cspan style=\"letter-spacing: -.05pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">tone,\u003C/span>\u003Cspan style=\"letter-spacing: -.05pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">shadow\u003C/span>\u003Cspan style=\"letter-spacing: -.2pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">and\u003C/span>\u003Cspan style=\"letter-spacing: -.2pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">volume.\u003C/span>\u003Cspan style=\"letter-spacing: -.05pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">You\u003C/span>\u003Cspan style=\"letter-spacing: -.2pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">will\u003C/span>\u003Cspan style=\"letter-spacing: -.2pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">also\u003C/span>\u003Cspan style=\"letter-spacing: -.2pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">learn\u003C/span>\u003Cspan style=\"letter-spacing: -.2pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">how to\u003C/span>\u003Cspan style=\"letter-spacing: -.2pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">best\u003C/span>\u003Cspan style=\"letter-spacing: -.05pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">use\u003C/span>\u003Cspan style=\"letter-spacing: -.2pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">your\u003C/span>\u003Cspan style=\"letter-spacing: -.1pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">paints\u003C/span>\u003Cspan style=\"letter-spacing: -.1pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">and materials, and mistakes to avoid.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/D.Lyall Portraiture The Basics.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">D.Lyall Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 11/7*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/19 – 12/5\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=128883\">Lyall, Dennis\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$555.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065962\" eventid=\"3065962\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">15\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$555.00\" openslots=\"15\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065962\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '9666', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=166017'}
2026-08-05 01:28:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:49 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=166017"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1426"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1426"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1426/text {}
2026-08-05 01:28:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1426/text HTTP/1.1" 200 0
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Potter's Wheel for All Levels\nLEVEL: ALL LEVELS\nWhether you are new to the potter’s wheel or wish to build upon your existing skills, this class will fill your needs. Beginners will be taught the important skills needed to create a vessel on the wheel. For those who have more experience, the class will focus on more complex shapes, various surface textures and alternative glazing methods. Class demos as well as individual instruction will be provided.\nAdditional Information:\nA firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\nList of Materials: Tool Kits & Clay are available for purchase in class\nOpen Studio: Open Studio Fall 2026 - Ceramics.pdf\n*Thursday's class will not meet 11/26*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 12/1 Tu 07:00 PM – 10:00 PM Puzzuoli, Jon 18 & up $780.00 View 0\nADD TO WAITLIST\n9/17 – 12/3 Th 07:00 PM – 10:00 PM Puzzuoli, Jon 18 & up $740.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1179', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1426"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1426'}, 'outerHTML']}
2026-08-05 01:28:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"166017\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"166017\" onclick=\"return false;\" href=\"#\">Potter's Wheel for All Levels\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/c69b526d-1215-4e0b-a46b-ba3500b8ef18_Puzzuoli J_PottersWheelAllLevels.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"color: rgb(32, 33, 36); letter-spacing: 0.15pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"color: rgb(32, 33, 36); letter-spacing: 0.15pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Whether you are new to the potter’s wheel or wish to build upon your existing skills, this class will fill your needs. Beginners will be taught the important skills needed to create a vessel on the wheel. For those who have more experience, the class will focus on more complex shapes, various surface textures and alternative glazing methods. Class demos as well as individual instruction will be provided.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); font-family: Arial; font-size: 12px; letter-spacing: 0.2px; background-color: rgb(255, 255, 255)\">A firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\u003C/span>\u003C/p>\u003Cp style=\"background-color: rgb(255, 255, 255)\">\u003Cspan style=\"font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">List of Materials:&nbsp;\u003C/span>\u003Cspan style=\"line-height: 12.84px; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Tool Kits &amp; Clay are available for purchase in class\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf\" target=\"_blank\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio Fall 2026 - Ceramics.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">*Thursday's class will not meet 11/26*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 10:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$780.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065914\" eventid=\"3065914\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$780.00\" openslots=\"-3\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"3065914\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 10:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$740.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065946\" eventid=\"3065946\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$740.00\" openslots=\"-3\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"3065946\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '7080', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=191681'}
2026-08-05 01:28:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:53 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=191681"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1427"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1427"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1427/text {}
2026-08-05 01:28:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1427/text HTTP/1.1" 200 0
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Pottery & Vessel Sculpture: Intermediate to Advanced\nLEVEL: INTERMEDIATE - ADVANCED\nIntermediate and advanced students will explore alternative methods. A variety of wheel throwing, hand building, and surfacing, and glazing techniques will be covered. The emphasis is on using skills to build vessel sculptures on and off the wheel. Personal creativity will be encouraged.\nAdditional Information:\nA firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\nList of Materials: Tool Kits & Clay are available for purchase in class\nOpen Studio: Open Studio Fall 2026 - Ceramics.pdf\n*Class will not meet Thursday 11/26*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/17 – 12/3 Th 10:00 AM – 01:00 PM Ashida, Keiko 18 & up $740.00 View 2\nREGISTER NOW\n9/19 – 12/5 Sa 10:00 AM – 01:00 PM Ashida, Keiko 18 & up $780.00 View 5\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1086', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1427"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1427'}, 'outerHTML']}
2026-08-05 01:28:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"191681\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"191681\" onclick=\"return false;\" href=\"#\">Pottery &amp; Vessel Sculpture: Intermediate to Advanced\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/cb025bcd-feec-4061-acfa-3384813af7c7_K.Ashida_2.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: INTERMEDIATE - ADVANCED\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Intermediate and advanced students will explore alternative methods. A variety of wheel throwing, hand building, and surfacing, and glazing techniques will be covered. The emphasis is on using skills to build vessel sculptures on and off the wheel. Personal creativity will be encouraged.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); letter-spacing: 0.2px; background-color: rgb(255, 255, 255); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">A firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\u003C/span>\u003C/p>\u003Cp style=\"background-color: rgb(255, 255, 255)\">\u003Cspan style=\"font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">List of Materials:&nbsp;\u003C/span>\u003Cspan style=\"line-height: 12.84px; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Tool Kits &amp; Clay are available for purchase in class\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf\" target=\"_blank\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio Fall 2026 - Ceramics.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">*Class will not meet Thursday 11/26*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75665\">Ashida, Keiko\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$740.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065938\" eventid=\"3065938\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">2\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$740.00\" openslots=\"2\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065938\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/19 – 12/5\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75665\">Ashida, Keiko\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$780.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065963\" eventid=\"3065963\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">5\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$780.00\" openslots=\"5\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065963\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6890', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328473'}
2026-08-05 01:28:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:56 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:28:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:28:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328473"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:28:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:28:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1438"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1438"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:57 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1438/text {}
2026-08-05 01:28:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1438/text HTTP/1.1" 200 0
2026-08-05 01:28:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Practical Color Theory\nBy taking a pragmatic approach to color, the student can have consistent mixes. Color will be broken down into its three components and the students will do exercises to understand their complexity. The class will apply the theories of Hawthorne and Munsell. Specialized palettes for landscape and figure will also be addressed.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: Students should bring a variety of personal painting supplies, palette paper, palette knife, paper towels, (2) 16x20 surfaces\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n11/5 – 11/5 Th 01:00 PM – 04:00 PM Wiest, Justin 18 & up $145.00 View 10\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '748', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:28:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:28:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1438"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:28:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1438'}, 'outerHTML']}
2026-08-05 01:28:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:28:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328473\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328473\" onclick=\"return false;\" href=\"#\">Practical Color Theory\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: none;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"\" alt=\"{imageAltText}\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\" style=\"display: none;\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">By taking a pragmatic approach to color, the student can have consistent mixes. Color will be broken down into its three components and the students will do exercises to understand their complexity. The class will apply the theories of Hawthorne and Munsell. Specialized palettes for landscape and figure will also be addressed.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: Students should bring \u003C/span>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">a variety of personal painting supplies, palette paper, palette knife, paper towels, (2) 16x20 surfaces\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/5 – 11/5\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75733\">Wiest, Justin\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$145.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066032\" eventid=\"3066032\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$145.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066032\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4506', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:28:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328474'}
2026-08-05 01:29:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328474"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1447"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1447"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:01 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1447/text {}
2026-08-05 01:29:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1447/text HTTP/1.1" 200 0
2026-08-05 01:29:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Pressed Leaf Clay Creations (Ages: 6-9)\nGet into the Autumn spirit with this nature-inspired ceramic workshop! Students will have the opportunity to celebrate the changing environment by creating leaf-shaped fall decorations using real leaves for texture, adding carved details, and underglazing with the colors of the season. Student’s unique autumn keepsakes will be finished with glaze and kiln-fired.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: All materials are provided for this offering.\nAll artwork will be available two to three weeks after the program has occurred and the School Office will contact participants via email with pick up instructions.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n11/8 – 11/8 Su 01:00 PM – 04:00 PM Long, Charlotte 6 - 10 $165.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '890', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1447"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1447'}, 'outerHTML']}
2026-08-05 01:29:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328474\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328474\" onclick=\"return false;\" href=\"#\">Pressed Leaf Clay Creations (Ages: 6-9)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/94da12fb-719f-4852-a332-18b00abe9e8f_Long_Pressed_Leaf_Creations.jpeg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Get into the Autumn spirit with this nature-inspired ceramic workshop! Students will have the opportunity to celebrate the changing environment by creating leaf-shaped fall decorations using real leaves for texture, adding carved details, and underglazing with the colors of the season. Student’s unique autumn keepsakes will be finished with glaze and kiln-fired.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">All artwork will be available two to three weeks after the program has occurred and the School Office will contact participants via email with pick up instructions.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/8 – 11/8\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>Long, Charlotte\u003C/td>\n    \n        \u003Ctd class=\"\">6 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$165.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066038\" eventid=\"3066038\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$165.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066038\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4674', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328447'}
2026-08-05 01:29:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:04 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328447"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1448"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1448"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1448/text {}
2026-08-05 01:29:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1448/text HTTP/1.1" 200 0
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Quick Sketch with Santa! Drawing From a Model\nGet into the holiday spirit while sharpening your drawing skills in this fun and fast-paced figure drawing workshop featuring a live costumed Santa Claus model. Designed for artists of all levels, this one-night session introduces the core principles of Quick Sketch drawing through a series of lively poses, instructor demonstrations, and guided exercises. Students will learn the fundamentals of gesture drawing, comparative measurement, core forms, rhythm lines, and simple construction techniques used to quickly organize and simplify the human figure. The workshop will also touch on silhouette design, proportion, shadow mapping, and strategies for creating more dynamic and confident drawings. Whether you're completely new to figure drawing or looking to loosen up your approach, this festive workshop offers a fun introduction to the techniques taught in the Quick Sketch program while providing a unique opportunity to draw from a live Santa model.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: J.DeLoca Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n12/11 – 12/11 Fr 06:00 PM – 09:00 PM DeLoca, Jonathan 18 - 99 $200.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1305', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1448"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1448'}, 'outerHTML']}
2026-08-05 01:29:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328447\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328447\" onclick=\"return false;\" href=\"#\">Quick Sketch with Santa! Drawing From a Model\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/ffbfa88b-dc61-4aa3-b346-cf19790f0823_DeLocaJ_QuickSketchSantaDrawingFromModel.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Get into the holiday spirit while sharpening your drawing skills in this fun and fast-paced figure drawing workshop featuring a live costumed Santa Claus model. Designed for artists of all levels, this one-night session introduces the core principles of Quick Sketch drawing through a series of lively poses, instructor demonstrations, and guided exercises.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students will learn the fundamentals of gesture drawing, comparative measurement, core forms, rhythm lines, and simple construction techniques used to quickly organize and simplify the human figure. The workshop will also touch on silhouette design, proportion, shadow mapping, and strategies for creating more dynamic and confident drawings. Whether you're completely new to figure drawing or looking to loosen up your approach, this festive workshop offers a fun introduction to the techniques taught in the Quick Sketch program while providing a unique opportunity to draw from a live Santa model.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/J.DeLoca Quick Sketch Gesture Drawing.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">J.DeLoca Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/11 – 12/11\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">06:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=135676\">DeLoca, Jonathan\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 - 99\u003C/td>\n    \n        \u003Ctd class=\"\">$200.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066065\" eventid=\"3066065\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$200.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066065\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5577', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328448'}
2026-08-05 01:29:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:07 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328448"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1457"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1457"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1457/text {}
2026-08-05 01:29:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1457/text HTTP/1.1" 200 0
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Quick Sketch: Drawing From a Model\nA one-night intensive focused on gesture, structure, and confidence in figure drawing. Through quick sketch exercises, live demos, and short poses, students will learn a simplified Frank Reilly-inspired approach to drawing the figure with energy and clarity. Perfect for artists looking to loosen up, simplify the figure, and strengthen their drawing foundations. All levels welcome.\nAdditional Information:\nList of Materials: J.DeLoca Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/25 – 9/25 Fr 06:00 PM – 09:00 PM DeLoca, Jonathan 18 - 99 $170.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '648', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1457"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1457'}, 'outerHTML']}
2026-08-05 01:29:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328448\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328448\" onclick=\"return false;\" href=\"#\">Quick Sketch: Drawing From a Model\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/a6362cf5-fe7b-4fa1-b95e-1da96a460482_DeLocaJ_QuickSketchDrawingFromModel_Workshop.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">A one-night intensive focused on gesture, structure, and confidence in figure drawing. Through quick sketch exercises, live demos, and short poses, students will learn a simplified Frank Reilly-inspired approach to drawing the figure with energy and clarity. Perfect for artists looking to loosen up, simplify the figure, and strengthen their drawing foundations. All levels welcome.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/J.DeLoca Quick Sketch Gesture Drawing.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">J.DeLoca Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/25 – 9/25\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">06:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=135676\">DeLoca, Jonathan\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 - 99\u003C/td>\n    \n        \u003Ctd class=\"\">$170.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065976\" eventid=\"3065976\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$170.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065976\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4469', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=196510'}
2026-08-05 01:29:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=196510"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1466"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1466"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1466/text {}
2026-08-05 01:29:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1466/text HTTP/1.1" 200 0
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Raku Workshop\nLEVEL: INTERMEDIATE - ADVANCED\nStudents bring their bisque pieces and spend the day glazing and firing in the raku kiln. We will do a combination of firings: traditional raku, and fuming techniques using horsehair and feathers. Students should use white stoneware clay, which may be purchased in advance. Pieces can be bisque fired in Silvermine’s kiln two weeks prior to the date of the workshop. We will accommodate as many firings as the day allows. Expect to get at least 5 medium size (approximately 8 x 8 x 8 inches would be considered medium size) pieces fired. Pieces should be based on cylindrical forms, not flat, or over 10 lbs.\nAdditional Information:\nTo withdraw, students must notify the school office two weeks prior to the workshop date to receive a refund or credit. Rain date will be decided at a later date. Please review our policies on cancelation prior to enrollment.\nStudents Must Wear: Hair up and covered in a hat or bandana, all cotton clothes, no fringe on any article of clothing, long pants and long sleeves, closed toe shoes, long socks, face mask is suggested but not mandatory \nIf any students arrive to the workshop not dressed in line with the guidelines above, they will be asked to leave the workshop and no reimbursements will be available.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/4 – 10/4 Su 10:00 AM – 05:00 PM Puzzuoli, Jon 18 & up $335.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1457', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1466"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1466'}, 'outerHTML']}
2026-08-05 01:29:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"196510\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"196510\" onclick=\"return false;\" href=\"#\">Raku Workshop\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/164391528181292_raku.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">LEVEL: INTERMEDIATE - ADVANCED\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"color: rgb(32, 33, 36); background: white; letter-spacing: 0.15pt; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">Students bring their bisque pieces and spend the day glazing and firing in the raku kiln. We will do a combination of firings: traditional raku, and fuming techniques using horsehair and feathers. Students should use white stoneware clay, which may be purchased in advance. Pieces can be bisque fired in Silvermine’s kiln two weeks prior to the date of the workshop. We will accommodate as many firings as the day allows. Expect to get at least 5 medium size (approximately 8 x 8 x 8 inches would be considered medium size) pieces fired. Pieces should be based on cylindrical forms, not flat, or over 10 lbs. \u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px\">\u003Cspan style=\"color: rgb(32, 33, 36); font-size: 12px; letter-spacing: 0.2px; background-color: rgb(255, 255, 255)\">\u003Cem>\u003Cspan style=\"font-family: Arial\">To withdraw, students must notify the school office two weeks prior to the workshop date to receive a refund or credit. Rain date will be decided at a later date. Please review our policies on cancelation prior to enrollment.\u003C/span>\u003C/em>\u003C/span>\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial; font-size: 12px\">\u003Cu>\u003Cspan style=\"color: rgb(32, 33, 36); background: white; letter-spacing: 0.15pt\">Students Must Wear:\u003C/span>\u003C/u>\u003Cspan style=\"color: rgb(32, 33, 36); background: white; letter-spacing: 0.15pt\">&nbsp;\u003C/span>\u003C/span>\u003Cspan style=\"font-family: Arial; font-size: 12px\">Hair up and covered in a hat or bandana, a\u003C/span>\u003Cspan style=\"font-family: Arial; font-size: 12px\">ll cotton clothes, n\u003C/span>\u003Cspan style=\"font-family: Arial; font-size: 12px\">o fringe on any article of clothing, l\u003C/span>\u003Cspan style=\"font-family: Arial; font-size: 12px\">ong pants and long sleeves, c\u003C/span>\u003Cspan style=\"font-family: Arial; font-size: 12px\">losed toe shoes, l\u003C/span>\u003Cspan style=\"font-family: Arial; font-size: 12px\">ong socks, f\u003C/span>\u003Cspan style=\"font-family: Arial; font-size: 12px\">ace mask is suggested but not mandatory&nbsp;\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial; font-size: 12px\">\u003Cspan style=\"color: rgb(0, 0, 0)\">If any students arrive to the workshop not dressed in line with the guidelines above, they will be asked to leave the workshop&nbsp;\u003C/span>\u003C/span>\u003Cstrong>\u003Cspan style=\"color: rgb(0, 0, 0); font-family: Arial; font-size: 12px\">and no reimbursements will be available.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/4 – 10/4\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 05:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75718\">Puzzuoli, Jon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$335.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065991\" eventid=\"3065991\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$335.00\" openslots=\"-6\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"3065991\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6240', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=302827'}
2026-08-05 01:29:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:14 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=302827"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1475"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1475"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1475/text {}
2026-08-05 01:29:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1475/text HTTP/1.1" 200 0
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Relief Printmaking\nLEVEL: ALL LEVELS\nIn this 5 week program design, carve, and print your own image with linoleum! Relief printmaking is the process of strategically removing the printable surface to create a fixed design that can be printed many times over. Develop your own design considering positive and negative space, transfer and carve the design, and print. In addition, this course reviews one and two color printing. One on one feedback is given, and group discussion is encouraged.\nAdditional Information:\nList of Materials: E.Harvey Supply List.pdf\nOpen Studio: Open Studio Spring 2026 - Printmaking.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/13 – 12/1 Tu 06:00 PM – 09:00 PM Harvey, Evelyn 18 & up $455.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '777', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1475"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1475'}, 'outerHTML']}
2026-08-05 01:29:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"302827\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"302827\" onclick=\"return false;\" href=\"#\">Relief Printmaking\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/798aa7bf-049f-4e06-a01a-23fb7efcd214_HarveyE_ReliefPrintmaking.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">In this 5 week program design, carve, and print your own image with linoleum! Relief printmaking is the process of strategically removing the printable surface to create a fixed design that can be printed many times over. Develop your own design considering positive and negative space, transfer and carve the design, and print. In addition, this course reviews one and two color printing. One on one feedback is given, and group discussion is encouraged.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/E.Harvey Relief Printmaking.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">E.Harvey Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cspan style=\"margin-bottom: 0px !important; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Printmaking_Sp2026.pdf\" target=\"_blank\">\u003Cspan style=\"margin-bottom: 0px !important; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">Open Studio Spring 2026 - Printmaking.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/13 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">06:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=125261\">Harvey, Evelyn\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$455.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066000\" eventid=\"3066000\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$455.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066000\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5320', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328475'}
2026-08-05 01:29:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328475"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1491"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1491"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1491/text {}
2026-08-05 01:29:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1491/text HTTP/1.1" 200 0
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Relief Printmaking for All Levels\nLEVEL: ALL LEVELS\nIn this 4 week course, design, carve, and print your own 9x12 image. Working on one design, this 4 week program keeps in mind all printer levels from those just getting started, to advanced, and those looking to refine or get back into printmaking. Develop your own design using positive and negative space, review the reduction process of carving your linoleum block, and print using the printing press. One on one feedback is given, and group discussion is encouraged.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nList of Materials: E.Harvey Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 10/6 Tu 01:00 PM – 04:00 PM Harvey, Evelyn 18 & up $285.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '817', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1491"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1491'}, 'outerHTML']}
2026-08-05 01:29:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328475\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328475\" onclick=\"return false;\" href=\"#\">Relief Printmaking for All Levels\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/43d31a22-66c4-4870-9dc8-8e59332830a9_HarveyE_ReliefPrintmaking.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">In this 4 week course, design, carve, and print your own 9x12 image. Working on one design, this 4 week program keeps in mind all printer levels from those just getting started, to advanced, and those looking to refine or get back into printmaking. Develop your own design using positive and negative space, review the reduction process of carving your linoleum block, and print using the printing press. One on one feedback is given, and group discussion is encouraged.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/E.Harvey Relief Printmaking for All Levels.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">E.Harvey Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 10/6\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=125261\">Harvey, Evelyn\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$285.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065906\" eventid=\"3065906\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$285.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065906\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4975', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328483'}
2026-08-05 01:29:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:21 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328483"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1492"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1492"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1492/text {}
2026-08-05 01:29:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1492/text HTTP/1.1" 200 0
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Resin 101: Create Your Own Tray\nThis Resin 101 workshop offers an exciting introduction to the captivating world of resin art, perfect for anyone eager to explore creative techniques and craft stunning pieces. Participants will learn foundational resin skills while creating a dazzling tray. The workshop begins with a comprehensive overview of basic resin art methods, including mixing, pouring, and curing resin safely and effectively. Attendees will discover how to manipulate colors and textures. Layering techniques will add depth unique accents.\nA supplemental project will include the creation of unique holiday decorations. By the end of the workshop, attendees will have developed essential resin art capabilities and completed beautiful, artworks. The workshop is suitable for beginners and creative hobbyists alike.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: J.Madison Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n11/28 – 11/29 Sa Su 01:00 PM – 04:00 PM Madison, Jules 18 & up $235.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1130', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1492"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1492'}, 'outerHTML']}
2026-08-05 01:29:23 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328483\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328483\" onclick=\"return false;\" href=\"#\">Resin 101: Create Your Own Tray\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/05131ca6-bec1-48ec-b55b-9c61ccd8a0d2_MadisonJ_TheResinArtExperience.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This Resin 101 workshop offers an exciting introduction to the captivating world of resin art, perfect for anyone eager to explore creative techniques and craft stunning pieces. Participants will learn foundational resin skills while creating a dazzling tray.&nbsp;The workshop begins with a comprehensive overview of basic resin art methods, including mixing, pouring, and curing resin safely and effectively. Attendees will discover how to manipulate colors and&nbsp;textures. Layering techniques will add depth unique accents.\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\" style=\"line-height: normal\">\u003Cspan style=\"background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">A supplemental project will include the creation of unique holiday decorations. By the end of the workshop, attendees will have developed essential resin art capabilities and completed beautiful, artworks. The workshop is suitable for beginners and creative hobbyists alike.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/J.Madison Resin 101 Create Your Own Tray.pdf\" target=\"_blank\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">J.Madison Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/28 – 11/29\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>Madison, Jules\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$235.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066057\" eventid=\"3066057\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$235.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066057\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5304', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:23 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321534'}
2026-08-05 01:29:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:25 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321534"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1500"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1500"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1500/text {}
2026-08-05 01:29:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1500/text HTTP/1.1" 200 0
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Robots & Building Lab! (Ages: 6-9)\nThink big, build bold, and bring your wildest ideas to life!  In this inventive weeklong camp, young makers will design and construct both small-scale and life-sized creations using cardboard, boxes, recyclables, and found materials. From robots to buildings, campers will explore how everyday scraps can become extraordinary sculptures. Each day introduces new creative challenges—engineering balance and structure, decorating with paint and collage, and teaming up to build large collaborative works. Campers will learn to problem-solve, plan, and play as they transform simple materials into complex creations full of character and color.  By the end of the week, the studio will be filled with small-scale and life size robots, towers, and imaginative worlds ready for display in a joyful end-of-week art show and then take their creations home!\nAdditional Information:\nParents: Please pack a water bottle as well as a peanut free snack.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/17 – 8/21 Mo Tu We Th Fr 09:00 AM – 12:00 PM Waters, Nell 6 - 10 $465.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1304', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1500"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1500'}, 'outerHTML']}
2026-08-05 01:29:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321534\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321534\" onclick=\"return false;\" href=\"#\">Robots &amp; Building Lab! (Ages: 6-9)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/c06e5793-53ff-4e41-8bec-368e6f8151d6_WatersN_RobotsBuildingLab.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Think big, build bold, and bring your wildest ideas to life!\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">In this inventive weeklong camp, young makers will design and construct both small-scale and life-sized creations using cardboard, boxes, recyclables, and found materials. From robots to buildings, campers will explore how everyday scraps can become extraordinary sculptures.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Each day introduces new creative challenges—engineering balance and structure, decorating with paint and collage, and teaming up to build large collaborative works. Campers will learn to problem-solve, plan, and play as they transform simple materials into complex creations full of character and color.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">By the end of the week, the studio will be filled with small-scale and life size robots, towers, and imaginative worlds ready for display in a joyful end-of-week art show and then take their creations home!\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Parents: Please pack a water bottle as well as a peanut free snack.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/17 – 8/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=132562\">Waters, Nell\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">6 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2958055\" eventid=\"2958055\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"-1\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2958055\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '7052', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=269900'}
2026-08-05 01:29:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:28 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=269900"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1509"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1509"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:29 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1509/text {}
2026-08-05 01:29:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1509/text HTTP/1.1" 200 0
2026-08-05 01:29:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Sandcast Stick & Stone Pendant\nThis workshop offers an opportunity to learn the age-old art of sandcasting metal. Using real twigs and natural elements, students will learn the basics of making a mold in sand, melting metal and casting. We will then sand, file, solder, add patina, polish and bezel set a small stone to create a one-of-a-kind pendant that mother nature would surely envy!\n \nYou will also learn about studio safety and safety guidelines for all types of techniques used within the Jewelry studio. At the end of the workshop, you will walk away with a stronger understanding of Jewelry making, a new set of skills to use to grow as a maker, and a beautiful pendant that you can take home to finish as you like. Experience is encouraged, but not required.\nAdditional Information:\nList of Materials: All materials are provided for this offering and included in the class price. Students are required to wear closed toe shoes, and long hair must be tied back. \nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/19 – 9/20 Sa Su 10:00 AM – 03:00 PM Henriques, Maureen 18 & up $385.00 View 5\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1140', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1509"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1509'}, 'outerHTML']}
2026-08-05 01:29:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"269900\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"269900\" onclick=\"return false;\" href=\"#\">Sandcast Stick &amp; Stone Pendant\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/54882939-4ffc-466e-919d-6bbb7cac4980_Henriques.M_StickandStoneSilverPendant.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"background: white; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">This workshop offers an opportunity to learn the age-old art of sandcasting metal. Using real twigs and natural elements, students will learn the basics of making a mold in sand, melting metal and casting.\u003C/span>\u003Cspan style=\"color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\"> \u003C/span>\u003Cspan style=\"background: white; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">We will then sand, file, solder, add patina, polish and bezel set a small stone to create a one-of-a-kind pendant that mother nature would surely envy!\u003C/span>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"background: white; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">&nbsp;\u003C/span>\u003Cspan style=\"color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">\u003Cbr>\u003C/span>\u003Cspan style=\"background: white; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">You will also learn about studio safety and safety guidelines for all types of techniques used within the Jewelry studio. At the end of the workshop, you will walk away with a stronger understanding of Jewelry making, a new set of skills to use to grow as a maker, and a beautiful pendant that you can take home to finish as you like. Experience is encouraged, but not required.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp style=\"background: white\">\u003Cspan style=\"font-weight: 400; letter-spacing: 0.15pt; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">List of Materials: All materials are provided for this offering and included in the class price.&nbsp;\u003C/span>\u003Cspan style=\"font-weight: 400; background: white; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">Students are required to wear closed toe shoes, and long hair must be tied back.&nbsp;\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/19 – 9/20\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 03:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=103494\">Henriques, Maureen\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$385.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065964\" eventid=\"3065964\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">5\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$385.00\" openslots=\"5\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065964\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5714', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=283378'}
2026-08-05 01:29:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=283378"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1519"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1519"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1519/text {}
2026-08-05 01:29:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1519/text HTTP/1.1" 200 0
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"School Break Studio Art Jams (Ages: 5-10)\nChildren will discover the beauty and magic of expression while exploring a variety of materials in each studio session. Skills and techniques will be developed while painting, drawing, sculpting and making friends. Materials may include charcoal, fabric, paint, clay, watercolors, oil pastels, wood, foam, beads and glitter dust, more. View individual class offerings for a full description of the theme!\n9/21 – Sketching Outdoors, Painting a Still Life with Apples\n10/12 – Exploring October Colors and Light in the Changing Landscape\n11/3 – The Imaginative Life Cycle in Autumn: Fallen Leaves, Slugs, Fireflies, Glowing Larvae\n11/11 – Creating a Seasonal Clay Critter: Raccoon, Skunk, Opossum, Squirrel, Chipmunk, more\n11/23 – SCULPTURE with Wood, Metal, Paint, Feathers, Fur: Turkeys, Bears, Rabbits, Red Fox, Skunks & More\n11/24 - Mixed Media PAINTING on Artist Board: Turkeys, Bears, Rabbits, Red Fox, Skunks, more\n12/21 - Mixed Media SCULPTURE: Winter/Holiday House\n12/22 - Mixed Media PAINTING on Artist Board: Winter/Holiday House\n12/28 – Remembering Special Momemnts in 2026 – Mixed Media Painting\n12/29 – Creating a Self-Portrait in Clay\nAdditional Information:\nList of Materials: All materials are provided for this offering. Students will have an outdoor break time for free play and exploration. Please bring a nut-free snack, beverage and comfortable shoes for exploring. \n*For Clay and Wood projects, please bring a sturdy container to transport sculptures home. *Those attending workshop on 12/28/2026 should come prepared with color copies of favorite photos from home.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/21 – 9/21 Mo 09:00 AM – 01:00 PM Kot, Marta Violette 5 - 11 $195.00 View 15\nREGISTER NOW\n10/12 – 10/12 Mo 09:00 AM – 01:00 PM Kot, Marta Violette 5 - 11 $195.00 View 13\nREGISTER NOW\n11/3 – 11/3 Tu 09:00 AM – 01:00 PM Kot, Marta Violette 5 - 11 $195.00 View 15\nREGISTER NOW\n11/11 – 11/11 We 09:00 AM – 01:00 PM Kot, Marta Violette 5 - 11 $195.00 View 15\nREGISTER NOW\n11/23 – 11/23 Mo 09:00 AM – 01:00 PM Kot, Marta Violette 5 - 11 $195.00 View 15\nREGISTER NOW\n11/24 – 11/24 Tu 09:00 AM – 01:00 PM Kot, Marta Violette 5 - 11 $195.00 View 15\nREGISTER NOW\n12/21 – 12/21 Mo 09:00 AM – 01:00 PM Kot, Marta Violette 5 - 11 $195.00 View 15\nREGISTER NOW\n12/22 – 12/22 Tu 09:00 AM – 01:00 PM Kot, Marta Violette 5 - 11 $195.00 View 15\nREGISTER NOW\n12/28 – 12/28 Mo 09:00 AM – 01:00 PM Kot, Marta Violette 5 - 11 $195.00 View 15\nREGISTER NOW\n12/29 – 12/29 Tu 09:00 AM – 02:00 PM Kot, Marta Violette 5 - 11 $215.00 View 15\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '2708', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1519"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1519'}, 'outerHTML']}
2026-08-05 01:29:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"283378\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"283378\" onclick=\"return false;\" href=\"#\">School Break Studio Art Jams (Ages: 5-10)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/20d6ca2b-2fbe-4aba-881b-c627ab7d6a23_Kot_SchoolBreakStudioArtJams.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Children will discover the beauty and magic of expression while exploring a variety of materials in each studio session. Skills and techniques will be developed while painting, drawing, sculpting and making friends. Materials may include charcoal, fabric, paint, clay, watercolors, oil pastels, wood, foam, beads and glitter dust, more. View individual class offerings for a full description of the theme!\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">9/21 – Sketching Outdoors, Painting a Still Life with Apples\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">10/12 – Exploring October Colors and Light in the Changing Landscape\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">11/3 – The Imaginative Life Cycle in Autumn: Fallen Leaves, Slugs, Fireflies, Glowing Larvae\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">11/11 – Creating a Seasonal Clay Critter: Raccoon, Skunk, Opossum, Squirrel, Chipmunk, more\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">11/23 – \u003C/span>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">SCULPTURE with Wood, Metal, Paint, Feathers, Fur: Turkeys, Bears, Rabbits, Red Fox, Skunks &amp; More\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">11/24 - \u003C/span>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">Mixed Media PAINTING on Artist Board: Turkeys, Bears, Rabbits, Red Fox, Skunks, more\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">12/21&nbsp;- Mixed Media SCULPTURE: Winter/Holiday House\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">12/22&nbsp;- Mixed Media PAINTING on Artist Board: Winter/Holiday House\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">12/28 – Remembering Special Momemnts in 2026 – Mixed Media Painting\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">12/29 – Creating a Self-Portrait in Clay\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp style=\"background: white\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: All materials are provided for this offering. Students will&nbsp;\u003C/span>\u003Cspan style=\"background: white; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">have an outdoor break time for free play and exploration.&nbsp;Please bring a nut-free snack, beverage and comfortable shoes for exploring.&nbsp;\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*For Clay and Wood projects, please bring a sturdy container to transport sculptures home. \u003C/span>\u003Cspan style=\"line-height: 115%; background: white; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Those attending workshop on 12/28/2026 should come prepared with \u003C/span>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">color copies  of favorite photos from home.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/21 – 9/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$195.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065967\" eventid=\"3065967\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">15\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$195.00\" openslots=\"15\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065967\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/12 – 10/12\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$195.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065999\" eventid=\"3065999\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">13\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$195.00\" openslots=\"13\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065999\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/3 – 11/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$195.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066029\" eventid=\"3066029\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">15\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$195.00\" openslots=\"15\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066029\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/11 – 11/11\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$195.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066040\" eventid=\"3066040\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">15\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$195.00\" openslots=\"15\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066040\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/23 – 11/23\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$195.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066053\" eventid=\"3066053\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">15\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$195.00\" openslots=\"15\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066053\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/24 – 11/24\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$195.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066055\" eventid=\"3066055\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">15\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$195.00\" openslots=\"15\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066055\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/21 – 12/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$195.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066071\" eventid=\"3066071\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">15\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$195.00\" openslots=\"15\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066071\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/22 – 12/22\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$195.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066072\" eventid=\"3066072\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">15\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$195.00\" openslots=\"15\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066072\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/28 – 12/28\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 01:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$195.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066073\" eventid=\"3066073\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">15\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$195.00\" openslots=\"15\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066073\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/29 – 12/29\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 02:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75699\">Kot, Marta Violette\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">5 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$215.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066074\" eventid=\"3066074\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">15\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$215.00\" openslots=\"15\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066074\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '18115', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328476'}
2026-08-05 01:29:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:35 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328476"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1526"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1526"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1526/text {}
2026-08-05 01:29:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1526/text HTTP/1.1" 200 0
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Sculpting an Autumn Bas Relief\nLEVEL: ALL LEVELS\nCelebrate Fall with sculpture! In this course, students will learn the fascinating art of sculpting a bas relief in clay; no experience is necessary to begin working in this accessible sculptural style. The class will be particularly helpful for students with drawing and painting experience who would like to explore clay, as well as those who would like to continue working on their piece at home between classes. Students will learn sculpting and drawing techniques to model the illusion of depth and form, creating a beautiful seasonal still life to hang on the wall.  Work may be fired in a kiln to make a lasting work of art to keep, and is also a perfect beginner mold making project to cast copies for gift giving. This course will give students the foundational skills to confidently approach complex subjects such as the portrait or figure, and is an excellent complement to Figure Sculpture Revisited. Water-based ceramic clay is available for purchase through Silvermine with the option to fire finished work for an additional fee.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nList of Materials: J.Murphy Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/22 – 10/20 Tu 01:00 PM – 04:00 PM Murphy, Julia 18 & up $350.00 View 7\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1387', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1526"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1526'}, 'outerHTML']}
2026-08-05 01:29:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328476\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328476\" onclick=\"return false;\" href=\"#\">Sculpting an Autumn Bas Relief\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/51078825-c26d-4597-b463-43206f269740_MurphyJ_AutumnBasRelief.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 14px\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 14px\">Celebrate Fall with sculpture! In this course, students will learn the fascinating art of sculpting a bas relief in clay; no experience is necessary to begin working in this accessible sculptural style. The class will be particularly helpful for students with drawing and painting experience who would like to explore clay, as well as those who would like to continue working on their piece at home between classes. Students will learn sculpting and drawing techniques to model the illusion of depth and form, creating a beautiful seasonal still life to hang on the wall.\u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 14px\">&nbsp; \u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 14px\">Work may be fired in a kiln to make a lasting work of art to keep, and is also a perfect beginner mold making project to cast copies for gift giving. This course will give students the foundational skills to confidently approach complex subjects such as the portrait or figure, and is an excellent complement to Figure Sculpture Revisited. Water-based ceramic clay is available for purchase through Silvermine with the option to fire finished work for an additional fee.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/J.Murphy Figure Sculpture Updated.pdf\" target=\"_blank\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">J.Murphy Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/22 – 10/20\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=117109\">Murphy, Julia\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$350.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065969\" eventid=\"3065969\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">7\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$350.00\" openslots=\"7\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065969\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5811', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=190837'}
2026-08-05 01:29:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:38 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=190837"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1537"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1537"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1537/text {}
2026-08-05 01:29:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1537/text HTTP/1.1" 200 0
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Sculptural Figure & Portrait Painting in Oil or Pastel\nLEVEL: ALL LEVELS\nBe prepared to squint, step back and use your big brushes! In this course, through the use of painting and drawing live models, you will learn fundamental approaches to capturing correct proportions, convincing gestures and realistic effects of light and shadow through the use of gaining an understanding of tone and color temperature. Another focus will be using oil, acrylic or pastels in a sculptural way, using these mediums to impart greater solidity and expressive potential using impasto and accentuated planes changes in the form. We will focus on these key principles to see how they are all interconnected and play vital roles in breathing life into our work.\nAdditional Information:\nList of Materials: D.Fisher Supply List.pdf\n*Class will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/30 – 12/2 We 09:30 AM – 12:30 PM Fisher, Dean 18 & up $625.00 View 10\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '999', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1537"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1537'}, 'outerHTML']}
2026-08-05 01:29:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"190837\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"190837\" onclick=\"return false;\" href=\"#\">Sculptural Figure &amp; Portrait Painting in Oil or Pastel\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/b93d1933-83ba-494e-8662-de2244879cba_FisherD_SculpturalFigurePainting.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"background: white; letter-spacing: 0.15pt; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px\">Be prepared to squint, step back and use your big brushes! In this course, through the use of painting and drawing live models, you will learn fundamental approaches to capturing correct proportions, convincing gestures and realistic effects of light and shadow through the use of gaining an understanding of tone and color temperature. Another focus will be using oil, acrylic or pastels in a sculptural way, using these mediums to impart greater solidity and expressive potential using impasto and accentuated planes changes in the form. We will focus on these key principles to see how they are all interconnected and play vital roles in breathing life into our work. \u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/D.Fisher%20Sculptural%20Figure%20Painting.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">D.Fisher Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/30 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75684\">Fisher, Dean\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$625.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065983\" eventid=\"3065983\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$625.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065983\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5197', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328477'}
2026-08-05 01:29:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:42 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328477"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:42 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1548"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1548"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1548/text {}
2026-08-05 01:29:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1548/text HTTP/1.1" 200 0
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Select-Your-Sculpt: Personal Projects with Guided Support\nLEVEL: ALL LEVELS\nIn this fun and flexible class, students of all levels will have the freedom to pursue the sculptural project of their choice in clay. Pieces can be of any subject, figural or abstract, with the option to use water or oil-based clay in any format, from freestanding figure to wall-hung bas relief. Whether working from imagination or photos, each student will receive instruction tailored to their specific project, learning tips and tricks to plan and realize their personal vision. Though Free Sculpt will not feature a model, this class is a perfect companion to Figure Sculpture Revisited, allowing students more guided studio time for refinement of work done from life.\nWater-based ceramic clay is available for purchase through Silvermine with the option to fire finished work for an additional fee. Students wishing to work in oil-based plasticene will be responsible for purchasing their own NON-SULFUR clay and setup as per the workshop supply list. Please note that oil clay work cannot be fired, so students will need to cast their work in a permanent medium when they are finished (private lessons are available for bronze casting and more).\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nIMPORTANT: An armature or relief board is required to begin new projects, and any student without one will be unable to begin. Armatures may be ordered on-demand directly from the instructor prior to workshop start. To request an armature, please contact the school office by phone at (203) 966-9700 x 2 or by email at Kelly@Silvermineart.org.\nList of Materials: J.Murphy Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n11/10 – 12/1 Tu 01:00 PM – 04:00 PM Murphy, Julia 18 & up $310.00 View 7\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1870', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1548"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1548'}, 'outerHTML']}
2026-08-05 01:29:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328477\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328477\" onclick=\"return false;\" href=\"#\">Select-Your-Sculpt: Personal Projects with Guided Support\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/91e5b0f9-9d35-4d39-a272-a20b9d8e49d4_MurphyJ_SelectYourSculptPersonalProjectsGuidedSupport.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">In this fun and flexible class, students of all levels will have the freedom to pursue the sculptural project of their choice in clay. Pieces can be of any subject, figural or abstract, with the option to use water or oil-based clay in any format, from freestanding figure to wall-hung bas relief. Whether working from imagination or photos, each student will receive instruction tailored to their specific project, learning tips and tricks to plan and realize their personal vision. Though Free Sculpt will not feature a model, this class is a perfect companion to Figure Sculpture Revisited, allowing students more guided studio time for refinement of work done from life.\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Water-based ceramic clay is available for purchase through Silvermine with the option to fire finished work for an additional fee. Students wishing to work in oil-based plasticene will be responsible for purchasing their own NON-SULFUR clay and setup as per the workshop supply list. Please note that oil clay work cannot be fired, so students will need to cast their work in a permanent medium when they are finished (private lessons are available for bronze casting and more).\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">IMPORTANT: An armature or relief board is required to begin new projects, and any student without one will be unable to begin. Armatures may be ordered on-demand directly from the instructor prior to workshop start. To request an armature, please contact the school office by phone at (203) 966-9700 x 2 or by email at\u003C/span>\u003Cspan style=\"line-height: 115%; background: white; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\"> \u003C/span>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Kelly@Silvermineart.org.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/J.Murphy Figure Sculpture Updated.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">J.Murphy Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/10 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=117109\">Murphy, Julia\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$310.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066039\" eventid=\"3066039\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">7\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$310.00\" openslots=\"7\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066039\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6736', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=302895'}
2026-08-05 01:29:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:45 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=302895"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:45 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:45 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:45 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:45 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1555"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1555"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1555/text {}
2026-08-05 01:29:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1555/text HTTP/1.1" 200 0
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Silvermine Saturday: Botanical Printing - Journal Covers\nBotanical printing, also known as eco-printing, is an artistic technique that involves using plant materials to create unique and intricate patterns on fabric or paper. It is a natural and sustainable way to incorporate the beauty of nature into visual art. By carefully arranging leaves, flowers, and other plant parts on the surface of the material and applying pressure and heat, the pigments and tannins present in the plants are transferred, resulting in stunning, one-of-a-kind designs. This eco-friendly form of printing provides a connection to the natural world and allows for endless creative possibilities.\nCome and learn this magical process and you will be forever ‘hooked’! There will be a brief lecture about the technique, and then each person will get an opportunity to print a piece of wool that can be used to cover a journal/sketchbook (provided in the class) to bring home with them.\nAdditional Information:\nAll materials are included the in program fee.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/17 – 10/17 Sa 01:00 PM – 03:00 PM Pecquex, Bonnee 18 & up $75.00 View 12\nREGISTER NOW\n11/28 – 11/28 Sa 10:30 AM – 12:30 PM Pecquex, Bonnee 18 & up $75.00 View 11\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1294', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1555"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1555'}, 'outerHTML']}
2026-08-05 01:29:49 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"302895\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"302895\" onclick=\"return false;\" href=\"#\">Silvermine Saturday: Botanical Printing - Journal Covers\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/6e55f9de-9e65-4954-99c5-ac1dd96dd6e2_PecquexB_EcoPrintJournal.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp class=\"BodyA\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Botanical printing, also known as eco-printing, is an artistic technique that involves using plant materials to create unique and intricate patterns on fabric or paper. It is a natural and sustainable way to incorporate the beauty of nature into visual art. By carefully arranging leaves, flowers, and other plant parts on the surface of the material and applying pressure and heat, the pigments and tannins present in the plants are transferred, resulting in stunning, one-of-a-kind designs. This eco-friendly form of printing provides a connection to the natural world and allows for endless creative possibilities.\u003C/span>\u003C/p>\u003Cp class=\"BodyA\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Come and learn this magical process and you will be forever ‘hooked’! There will be a brief lecture about the technique, and then each person will get an opportunity to print a piece of wool that can be used to cover a journal/sketchbook (provided in the class) to bring home with them.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">All materials are included the in program fee.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/17 – 10/17\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 03:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=128327\">Pecquex, Bonnee\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066007\" eventid=\"3066007\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066007\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/28 – 11/28\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=128327\">Pecquex, Bonnee\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066056\" eventid=\"3066056\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066056\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5954', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:49 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=302897'}
2026-08-05 01:29:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=302897"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1567"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1567"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1567/text {}
2026-08-05 01:29:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1567/text HTTP/1.1" 200 0
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Silvermine Saturday: Botanical Printing - Silk Scarves\nBotanical printing, also known as eco-printing, is an artistic technique that involves using plant materials to create unique and intricate patterns on fabric or paper. It is a natural and sustainable way to incorporate the beauty of nature into visual art. By carefully arranging leaves, flowers, and other plant parts on the surface of the material and applying pressure and heat, the pigments and tannins present in the plants are transferred, resulting in stunning, one-of-a-kind designs. This eco-friendly form of printing provides a connection to the natural world and allows for endless creative possibilities.\nCome and learn this magical process and you will be forever ‘hooked’! There will be a brief lecture about the technique, and then each person will get an opportunity to make a silk scarf to take home with them.\nAdditional Information:\nAll Materials are included in the program fee.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/10 – 10/10 Sa 01:00 PM – 03:00 PM Pecquex, Bonnee 18 & up $75.00 View 11\nREGISTER NOW\n10/31 – 10/31 Sa 01:00 PM – 03:00 PM Pecquex, Bonnee 18 & up $75.00 View 12\nREGISTER NOW\n11/21 – 11/21 Sa 10:30 AM – 12:30 PM Pecquex, Bonnee 18 & up $75.00 View 12\nREGISTER NOW\n12/5 – 12/5 Sa 10:30 AM – 12:30 PM Pecquex, Bonnee 18 & up $75.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1404', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1567"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1567'}, 'outerHTML']}
2026-08-05 01:29:52 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"302897\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"302897\" onclick=\"return false;\" href=\"#\">Silvermine Saturday: Botanical Printing - Silk Scarves\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/fa28e1f3-215b-4ff8-80d3-3eeac001eb78_PecquexB_EcoPrintJournal_SilkScarfYellow.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp class=\"BodyA\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Botanical printing, also known as eco-printing, is an artistic technique that involves using plant materials to create unique and intricate patterns on fabric or paper. It is a natural and sustainable way to incorporate the beauty of nature into visual art. By carefully arranging leaves, flowers, and other plant parts on the surface of the material and applying pressure and heat, the pigments and tannins present in the plants are transferred, resulting in stunning, one-of-a-kind designs. This eco-friendly form of printing provides a connection to the natural world and allows for endless creative possibilities.\u003C/span>\u003C/p>\u003Cp class=\"BodyA\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Come and learn this magical process and you will be forever ‘hooked’! There will be a brief lecture about the technique, and then each person will get an opportunity to make a silk scarf to take home with them.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">All Materials are included in the program fee.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/10 – 10/10\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 03:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=128327\">Pecquex, Bonnee\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065996\" eventid=\"3065996\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065996\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/31 – 10/31\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 03:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=128327\">Pecquex, Bonnee\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066027\" eventid=\"3066027\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066027\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/21 – 11/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=128327\">Pecquex, Bonnee\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066050\" eventid=\"3066050\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066050\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/5 – 12/5\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=128327\">Pecquex, Bonnee\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$75.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066059\" eventid=\"3066059\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$75.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066059\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '8106', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:52 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328478'}
2026-08-05 01:29:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:54 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328478"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:55 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:55 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:55 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:55 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1582"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1582"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1582/text {}
2026-08-05 01:29:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1582/text HTTP/1.1" 200 0
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Snow Frosted Clay Houses (Ages: 10-13)\nIn this ceramics hand-building workshop, students will use slab-building techniques to construct their own winter or holiday-themed house. Whether they decide to create a cozy cottage, festive village shop, or gingerbread house, each student will add their own imaginative touch through details, textures, and seasonal decorations. Using underglaze, students will colorfully finish their keepsake creations to be glazed and kiln-fired. \nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: All materials are provided for this offering.\nAll artwork will be available two to three weeks after the program has occurred and the School Office will contact participants via email with pick up instructions.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n12/6 – 12/6 Su 01:00 PM – 04:00 PM Long, Charlotte 10 - 14 $165.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '960', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1582"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1582'}, 'outerHTML']}
2026-08-05 01:29:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328478\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328478\" onclick=\"return false;\" href=\"#\">Snow Frosted Clay Houses (Ages: 10-13)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/db8f2b10-8260-4d73-8749-c6ddc7c462ea_Long_Snow_Frosted_Clay_Houses.jpeg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">In this ceramics hand-building workshop, students will use slab-building techniques to construct their own winter or holiday-themed house. Whether they decide to create a cozy cottage, festive village shop, or gingerbread house, each student will add their own imaginative touch through details, textures, and seasonal decorations. Using underglaze, students will colorfully finish their keepsake creations to be glazed and kiln-fired.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">All artwork will be available two to three weeks after the program has occurred and the School Office will contact participants via email with pick up instructions.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/6 – 12/6\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>Long, Charlotte\u003C/td>\n    \n        \u003Ctd class=\"\">10 - 14\u003C/td>\n    \n        \u003Ctd class=\"\">$165.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066062\" eventid=\"3066062\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$165.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066062\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4887', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=166028'}
2026-08-05 01:29:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:29:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=166028"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:29:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1591"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1591"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1591/text {}
2026-08-05 01:29:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1591/text HTTP/1.1" 200 0
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Sogetsu Ikebana: The Japanese Art of Flower Arrangement\nLEVEL: INTERMEDIATE - ADVANCED\nSogetsu Ikebana is much more than “Japanese flower arranging,” it is a modern form of an ancient art of sculpture with living materials. Students will learn the traditional principles and aesthetic disciplines, combined with creative energies to capture, express and enhance natural beauty.\nAdditional Information:\nList of Materials: Students should bring vessels, shears, pin-holders and plant materials or you can purchase some plant materials from the instructor for a nominal cost.\n*Class will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/16 – 12/2 We 10:00 AM – 12:00 PM Pleasanton, Shizue 18 & up $455.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '769', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:29:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1591"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1591'}, 'outerHTML']}
2026-08-05 01:29:59 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"166028\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"166028\" onclick=\"return false;\" href=\"#\">Sogetsu Ikebana: The Japanese Art of Flower Arrangement\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/f52d2e23-6bcb-4025-a9a2-549e467e04d0_shizueikebana2.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-family: -webkit-standard\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: INTERMEDIATE - ADVANCED\u003C/span>\u003C/p>\u003Cdiv>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Sogetsu Ikebana is much more than “Japanese flower arranging,” it is a modern form of an ancient art of sculpture with living materials. Students will learn the traditional principles and aesthetic disciplines, combined with creative energies to capture, express and enhance natural beauty.\u003Cbr>\u003C/span>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp style=\"font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(51, 51, 51); line-height: 1.4em; font-size: 16px; background-color: rgb(255, 255, 255)\">\u003Cspan style=\"letter-spacing: 0.2px; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials:&nbsp;Students should bring vessels, shears, pin-holders and plant materials or you can purchase some plant materials from the instructor for a nominal cost.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"letter-spacing: 0.2px; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75715\">Pleasanton, Shizue\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$455.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065921\" eventid=\"3065921\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$455.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065921\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4868', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:29:59 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321643'}
2026-08-05 01:30:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:01 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321643"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1603"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:03 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1603"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:03 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1603/text {}
2026-08-05 01:30:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1603/text HTTP/1.1" 200 0
2026-08-05 01:30:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Stamped & Soldered: Charm Bracelet & Pendant Sets (Ages: 10-14)\nYoung artists will dive into the art of metal stamping and soldering as they create a personalized charm bracelet and pendant set. Students will learn to safely use jewelry tools and torches while they:\nStamp words, initials, and decorative designs into metal charms\nSolder jump rings and simple connections\nAssemble their finished bracelet and pendant with their own creative flair\nWith a focus on safety, creativity, and craftsmanship, this workshop introduces kids to real metalsmithing techniques in a fun and encouraging environment. Each student will leave with a unique, wearable piece of jewelry they designed and built themselves.\nAll tools, materials, and safety gear are provided. No prior experience needed—just imagination!\nAdditional Information:\nRequired Attire:\nClose toed shoes (no sandals)\nTee shirts (no tank tops)  \nPants (no shorts)\nLong hair must be tied back\nParents: Please pack a water bottle as well as a peanut free snack.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/10 – 8/14 Mo Tu We Th Fr 09:00 AM – 12:00 PM Henriques, Maureen 10 - 15 $570.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1358', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:03 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1603"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:03 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1603'}, 'outerHTML']}
2026-08-05 01:30:03 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:03 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321643\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321643\" onclick=\"return false;\" href=\"#\">Stamped &amp; Soldered: Charm Bracelet &amp; Pendant Sets (Ages: 10-14)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/85ad30a5-5519-451d-a7cc-07476baf77b0_HenriquesM_StampedandSoldered.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Young artists will dive into the art of metal stamping and soldering as they create a personalized charm bracelet and pendant set. Students will learn to safely use jewelry tools and torches while they:\u003C/span>\u003C/p>\u003Cul>\u003Cli>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Stamp words, initials, and decorative designs into metal charms\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Solder jump rings and simple connections\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Assemble their finished bracelet and pendant with their own creative flair\u003C/span>\u003C/p>\u003C/li>\u003C/ul>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">With a focus on safety, creativity, and craftsmanship, this workshop introduces kids to real metalsmithing techniques in a fun and encouraging environment. Each student will leave with a unique, wearable piece of jewelry they designed and built themselves.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">All tools, materials, and safety gear are provided. No prior experience needed—just imagination!\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Required Attire:\u003C/span>\u003C/em>\u003C/p>\u003Cul>\u003Cli>\u003Cp>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Close toed shoes (no sandals)\u003C/span>\u003C/em>\u003C/p>\u003C/li>\u003Cli>\u003Cp>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Tee shirts (no tank tops) &nbsp;\u003C/span>\u003C/em>\u003C/p>\u003C/li>\u003Cli>\u003Cp>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Pants (no shorts)\u003C/span>\u003C/em>\u003C/p>\u003C/li>\u003Cli>\u003Cp>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Long hair must be tied back\u003C/span>\u003C/em>\u003C/p>\u003C/li>\u003C/ul>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Parents: Please pack a water bottle as well as a peanut free snack.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/10 – 8/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=103494\">Henriques, Maureen\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">10 - 15\u003C/td>\n    \n        \u003Ctd class=\"\">$570.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2960291\" eventid=\"2960291\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$570.00\" openslots=\"0\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2960291\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '8044', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:03 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328479'}
2026-08-05 01:30:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:05 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328479"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1607"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1607"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1607/text {}
2026-08-05 01:30:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1607/text HTTP/1.1" 200 0
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Sterling Silver Sandcast Ring\nLearn the age old art of sand casting! Using 3D printed ring blanks in various shapes, students will learn the basics of making a mold in specialty sand, using a crucible to melt silver, and cast their own ring shank. Techniques such as sanding, filing, soldering, bezel creation and setting a stone will be explored to fashion a one of a kind ring. Beginners are welcome, but previous jewelry studio experience is strongly encouraged.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: All materials are provided for this offering and included in the class price. Students are required to wear closed toe shoes, and long hair must be tied back. \nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/3 – 10/3 Sa 10:00 AM – 04:00 PM Henriques, Maureen 18 & up $200.00 View 3\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '900', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1607"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1607'}, 'outerHTML']}
2026-08-05 01:30:07 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328479\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328479\" onclick=\"return false;\" href=\"#\">Sterling Silver Sandcast Ring\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/42c4032e-731d-46d8-b8a1-cb9e0c44067e_HenriquesM_SterlingSilverSandcastRing.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Learn the age old art of sand casting! Using 3D printed ring blanks in various shapes, students will learn the basics of making a mold in specialty sand, using a crucible to melt silver, and cast their own ring shank. Techniques such as sanding, filing, soldering, bezel creation and setting a stone will be explored to fashion a one of a kind ring. Beginners are welcome, but previous jewelry studio experience is strongly encouraged.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, sans-serif; font-weight: 400; color: black; font-size: 9pt; letter-spacing: 0.15pt\">List of Materials: All materials are provided for this offering and included in the class price.&nbsp;\u003C/span>\u003Cspan style=\"font-family: Arial, sans-serif; font-weight: 400; color: black; background: white; font-size: 9pt\">Students are required to wear closed toe shoes, and long hair must be tied back.&nbsp;\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/3 – 10/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=103494\">Henriques, Maureen\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$200.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065990\" eventid=\"3065990\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">3\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$200.00\" openslots=\"3\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065990\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4715', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:07 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=248774'}
2026-08-05 01:30:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:10 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=248774"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:10 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:10 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:10 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:10 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1614"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1614"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1614/text {}
2026-08-05 01:30:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1614/text HTTP/1.1" 200 0
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Sterling Silver Spinner Rings\nSpinner rings are just as fun to make as they are to wear! Using sterling silver sheet and wire, we will focus on simple ring construction, sizing, metal texturing, soldering, patina and polish. Experience is encouraged, but not necessary for this fidgety fun class.\nAdditional Information:\nList of Materials: All materials are provided for this offering and included in the class price. Students are required to wear closed toe shoes, and long hair must be tied back. \n\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/24 – 10/24 Sa 10:00 AM – 04:00 PM Henriques, Maureen 18 & up $265.00 View 6\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '666', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1614"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1614'}, 'outerHTML']}
2026-08-05 01:30:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"248774\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"248774\" onclick=\"return false;\" href=\"#\">Sterling Silver Spinner Rings\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/161979138576988_maureen_spinner ring.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Spinner rings are just as fun to make as they are to wear! Using sterling silver sheet and wire, we will focus on simple ring construction, sizing, metal texturing, soldering, patina and polish.&nbsp;Experience is encouraged, but not necessary for this fidgety fun class. \u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cp>\u003Cspan style=\"font-family: Arial, sans-serif; font-weight: 400; color: black; font-size: 9pt; letter-spacing: 0.15pt\">List of Materials: All materials are provided for this offering and included in the class price.&nbsp;\u003C/span>\u003Cspan style=\"font-family: Arial, sans-serif; font-weight: 400; color: black; background: white; font-size: 9pt\">Students are required to wear closed toe shoes, and long hair must be tied back.&nbsp;\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); letter-spacing: 0.2px\">\u003Cbr>\u003C/span>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/24 – 10/24\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=103494\">Henriques, Maureen\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$265.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066016\" eventid=\"3066016\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">6\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$265.00\" openslots=\"6\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066016\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4373', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328480'}
2026-08-05 01:30:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:13 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328480"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:13 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:13 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:13 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:13 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1620"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1620"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1620/text {}
2026-08-05 01:30:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1620/text HTTP/1.1" 200 0
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Sterling Silver Splash Ring\nJump in and let's create a sterling silver ring inspired by organic forms and natural textures. In this hands-on workshop, students will learn how to fabricate a sculptural multi-band ring featuring a stone set in an artistic water splash design. Students will learn and refine techniques such as, ring sizing and shaping; soldering multiple bands together; creating decorative wire elements; stone setting techniques; finishing and polishing silver jewelry.  This project is perfect for adventurous beginners with some basic metalsmithing experience, as well as intermediate students looking to expand their stone-setting and design skills. Stones will vary.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: All materials are provided for this offering and included in the class price. Students are required to wear closed toe shoes, and long hair must be tied back.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/17 – 10/18 Sa Su 10:00 AM – 03:00 PM Henriques, Maureen 18 & up $345.00 View 4\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1126', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1620"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1620'}, 'outerHTML']}
2026-08-05 01:30:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328480\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328480\" onclick=\"return false;\" href=\"#\">Sterling Silver Splash Ring\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/2b9f0604-d75f-40ac-b58a-de0828f89bb6_HenriquesM_SterlingSilverSpalshRing.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Jump in and let's create a sterling silver ring inspired by organic forms and natural textures. In this hands-on workshop, students will learn how to fabricate a sculptural multi-band ring featuring a stone set in an artistic water splash design. Students will learn and refine techniques such as, ring sizing and shaping; soldering multiple bands together; creating decorative wire elements; stone setting techniques; finishing and polishing silver jewelry.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This project is perfect for adventurous beginners with some basic metalsmithing experience, as well as intermediate students looking to expand their stone-setting and design skills. Stones will vary.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, sans-serif; font-weight: 400; color: black; font-size: 9pt; letter-spacing: 0.15pt\">List of Materials: All materials are provided for this offering and included in the class price.&nbsp;\u003C/span>\u003Cspan style=\"font-family: Arial, sans-serif; font-weight: 400; color: black; background: white; font-size: 9pt\">Students are required to wear closed toe shoes, and long hair must be tied back.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/17 – 10/18\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa Su\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 03:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=103494\">Henriques, Maureen\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$345.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066006\" eventid=\"3066006\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">4\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$345.00\" openslots=\"4\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066006\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5211', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=294641'}
2026-08-05 01:30:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=294641"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:17 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:17 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1629"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1629"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1629/text {}
2026-08-05 01:30:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1629/text HTTP/1.1" 200 0
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Summer Studio on the Potter's Wheel (Ages: 10-13)\nTake a spin on the Potter’s Wheel! Students will learn the basics of throwing on the potter’s wheel, from centering to trimming and glazing. In addition to mastering the basics, various decorating, altering, and finishing techniques will be utilized. Cups, mugs, bowls, and other basic forms will be explored. Finished pieces will be glazed and ready for use. Class demonstrations as well as individual instruction will be provided. No prior experience is required.\nAdditional Information:\nClay pieces take three to four weeks to be fired from the end-date of the program. The school office will notify parents by email when pieces are ready to be picked up. Storage is limited and we kindly ask that prompt pick up is completed.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/3 – 8/7 Mo Tu We Th Fr 09:00 AM – 12:00 PM Dunn, Zach 10 - 14 $535.00 View 0\nADD TO WAITLIST\n8/10 – 8/14 Mo Tu We Th Fr 09:00 AM – 12:00 PM Dunn, Zach 10 - 14 $535.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '1209', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1629"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1629'}, 'outerHTML']}
2026-08-05 01:30:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"294641\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"294641\" onclick=\"return false;\" href=\"#\">Summer Studio on the Potter's Wheel (Ages: 10-13)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/a8e8482e-c2cc-4622-abb7-f469867e4fd3_Dunn.Z_TeenWheel.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Take a spin on the Potter’s Wheel!\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;\u003C/span>\u003Cspan style=\"line-height: 107%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Students will learn the basics of throwing on the potter’s wheel, from centering to trimming and glazing. \u003C/span>\u003Cspan style=\"line-height: 107%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">In addition to mastering the basics, various decorating, altering, and finishing techniques will be utilized. Cups, mugs, bowls, and other basic forms will be explored. Finished pieces will be glazed and ready for use. Class demonstrations as well as individual instruction will be provided. No prior experience is required.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"background: white; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Clay pieces take three to four weeks to be fired from the end-date of the program. The school office will notify parents by email when pieces are ready to be picked up.&nbsp;Storage is limited and we kindly ask that prompt pick up is completed.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/3 – 8/7\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=89463\">Dunn, Zach\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">10 - 14\u003C/td>\n    \n        \u003Ctd class=\"\">$535.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2955164\" eventid=\"2955164\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$535.00\" openslots=\"-2\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2955164\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/10 – 8/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=89463\">Dunn, Zach\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">10 - 14\u003C/td>\n    \n        \u003Ctd class=\"\">$535.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2955189\" eventid=\"2955189\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$535.00\" openslots=\"-9\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"2955189\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '7600', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=316545'}
2026-08-05 01:30:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:20 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=316545"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:20 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:20 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:20 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:20 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1640"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1640"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1640/text {}
2026-08-05 01:30:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1640/text HTTP/1.1" 200 0
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Take Great Photos with Your Smartphone\nThe quality of smartphone cameras is improving rapidly. In many situations, they work quite well as stand-ins for 35mm cameras. Therefore, dragging around a heavy camera, hoping not to miss that great picture opportunity, is no longer necessary. A good-quality smartphone camera may work almost as well.\nThis class is for those interested in producing high-quality images with their smartphone cameras. That means learning and understanding the camera controls, as well as when and how to use them. Doing so will put the photographer in better control of their camera—leading to significantly improved photographs.\nEverything necessary for taking great smartphone pictures will be addressed, including:\n·         Learning how to use the camera controls on your specific smartphone\n·         Basic photographic theory\n·         Discussing and, if desired, installing other smartphone camera apps\n·         Suggestions for hand-holding your camera\n·         Specific steps to follow when taking a picture\n·         Useful accessories for your smartphone camera\n·         How to compose your photographs to produce truly wonderful results\nA very complete handout will be distributed on arrival. It contains lots of information and will greatly simplify the process of understanding what’s being taught in class. You’ll also find it quite useful for review after the class ends.\nAdditional Information:\nPlease note: This class will not cover the taking of selfies.\nList of Materials: Don’t forget to bring your fully charged smartphone, the smartphone’s charger, and any accessories you have.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n11/21 – 11/21 Sa 01:00 PM – 04:00 PM Glass, Peter 18 & up $185.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1815', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1640"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1640'}, 'outerHTML']}
2026-08-05 01:30:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"316545\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"316545\" onclick=\"return false;\" href=\"#\">Take Great Photos with Your Smartphone\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/36a85062-3e30-4b8d-a401-db50af67ea45_Take Great Photos with Your Smartphone.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">The quality of smartphone cameras is improving rapidly. In many situations, they work quite well as stand-ins for 35mm cameras. Therefore, dragging around a heavy camera, hoping not to miss that great picture opportunity, is no longer necessary. A good-quality smartphone camera may work almost as well.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This class is for those interested in producing high-quality images with their smartphone cameras. That means learning and understanding the camera controls, as well as when and how to use them. Doing so will put the photographer in better control of their camera—leading to significantly improved photographs.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Everything necessary for taking great smartphone pictures will be addressed, including:\u003C/span>\u003C/p>\u003Cp style=\"margin-left: .5in; text-indent: -.25in\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">·\u003C/span>\u003Cspan style=\"font: 7.0pt &quot;Times New Roman&quot;; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Learning how to use the camera controls on your specific smartphone\u003C/span>\u003C/p>\u003Cp style=\"margin-left: .5in; text-indent: -.25in\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">·\u003C/span>\u003Cspan style=\"font: 7.0pt &quot;Times New Roman&quot;; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Basic photographic theory\u003C/span>\u003C/p>\u003Cp style=\"margin-left: .5in; text-indent: -.25in\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">·\u003C/span>\u003Cspan style=\"font: 7.0pt &quot;Times New Roman&quot;; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Discussing and, if desired, installing other smartphone camera apps\u003C/span>\u003C/p>\u003Cp style=\"margin-left: .5in; text-indent: -.25in\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">·\u003C/span>\u003Cspan style=\"font: 7.0pt &quot;Times New Roman&quot;; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Suggestions for hand-holding your camera\u003C/span>\u003C/p>\u003Cp style=\"margin-left: .5in; text-indent: -.25in\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">·\u003C/span>\u003Cspan style=\"font: 7.0pt &quot;Times New Roman&quot;; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Specific steps to follow when taking a picture\u003C/span>\u003C/p>\u003Cp style=\"margin-left: .5in; text-indent: -.25in\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">·\u003C/span>\u003Cspan style=\"font: 7.0pt &quot;Times New Roman&quot;; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Useful accessories for your smartphone camera\u003C/span>\u003C/p>\u003Cp style=\"margin-left: .5in; text-indent: -.25in\">\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">·\u003C/span>\u003Cspan style=\"font: 7.0pt &quot;Times New Roman&quot;; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">How to compose your photographs to produce truly wonderful results\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">A very complete handout will be distributed on arrival. It contains lots of information and will greatly simplify the process of understanding what’s being taught in class. You’ll also find it quite useful for review after the class ends.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">Please note:\u003C/span>\u003C/strong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\"> This class will \u003C/span>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">not\u003C/span>\u003C/em>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\"> cover the taking of selfies.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-weight: normal; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: Don’t forget to bring your fully charged smartphone, the smartphone’s charger, and any accessories you have.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/21 – 11/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=132646\">Glass, Peter\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$185.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066051\" eventid=\"3066051\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$185.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066051\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '10271', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=190847'}
2026-08-05 01:30:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:24 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=190847"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1645"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1645"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:25 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1645/text {}
2026-08-05 01:30:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1645/text HTTP/1.1" 200 0
2026-08-05 01:30:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Talking Heads: Portrait Painting\nLEVEL: ALL LEVELS\nThis course focuses on producing a more intimate view of a portrait. There will be individual attention as students work from a model in two five-week poses. Throughout the course, there will be short demonstrations and examples of different artist's work. Each session will focus on one pictorial objective, such as tone, composition and color, as well as a focus on individual facial features. It welcomes both beginners and experienced artists.\nAdditional Information:\nList of Materials: H.Harrington Supply List.pdf\n*Class will not meet 11/26*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/24 – 12/3 Th 09:30 AM – 12:30 PM Harrington, Heidi 18 & up $690.00 View 9\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '762', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1645"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1645'}, 'outerHTML']}
2026-08-05 01:30:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"190847\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"190847\" onclick=\"return false;\" href=\"#\">Talking Heads: Portrait Painting\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/a7bc3570-c153-4c07-828f-3f4dba443be9_Kraig Binkowski (Best).jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"background-color: rgb(255, 255, 255); font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This course focuses on producing a more intimate view of a portrait. There will be individual attention as students work from a model in two five-week poses. Throughout the course, there will be short demonstrations and examples of different artist's work. Each session will focus on one pictorial objective, such as tone, composition and color, as well as a focus on individual facial features. It welcomes both beginners and experienced artists.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv>\u003Cp>\u003Cspan style=\"color: black; font-size: 12px; font-family: Arial\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/H.Harrington Talking Heads Portrait Painting.pdf\" target=\"_blank\">\u003Cspan style=\"color: black; font-size: 12px; font-family: Arial\">H.Harrington Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"color: black; font-size: 12px; font-family: Arial\">*Class will not meet 11/26*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/24 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75692\">Harrington, Heidi\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$690.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065972\" eventid=\"3065972\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">9\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$690.00\" openslots=\"9\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065972\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4823', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=321612'}
2026-08-05 01:30:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=321612"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1655"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1655"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1655/text {}
2026-08-05 01:30:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1655/text HTTP/1.1" 200 0
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Teen Painting Studio (Ages: 14-17)\nExplore atmosphere, emotion, and place through observation and  painting. This weeklong intensive invites teen artists to deepen their understanding of landscape painting while developing their individual artistic voice. Campers will study advanced techniques in composition, color theory, and perspective, exploring how artists across time have expressed mood, light, and movement through the natural world. Working both outdoors and in the studio, teens will paint from life and imagination using watercolor, acrylic, and mixed media. Daily demonstrations and critiques will encourage experimentation and personal growth, while sketchbook work will help refine ideas and strengthen drawing skills. By week’s end, each artist will have a small collection of finished works ready for exhibition—capturing their unique vision of the landscapes that inspire them. \nHighlights:\nPainting from life (“plein air”) on our picturesque campus and from sketches\nAdvanced color mixing, layering, and glazing techniques\nLessons in light, atmosphere, and mood         \nStudy of historical and contemporary landscape masters  \nEnd-of-week teen art showcase\nAdditional Information:\nParents: Please pack a water bottle as well as a peanut free snack.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/3 – 8/7 Mo Tu We Th Fr 09:00 AM – 12:00 PM Waters, Nell 14 - 18 $465.00 View 3\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1605', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1655"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1655'}, 'outerHTML']}
2026-08-05 01:30:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"321612\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"321612\" onclick=\"return false;\" href=\"#\">Teen Painting Studio (Ages: 14-17)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/115dca81-099c-412f-87f6-9dea499f443e_Waters.N_PCSummerLandscape.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Explore atmosphere, emotion, and place through observation and\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">painting.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This weeklong intensive invites teen artists to deepen their understanding of landscape painting while developing their individual artistic voice. Campers will study advanced techniques in composition, color theory, and perspective, exploring how artists across time have expressed mood, light, and movement through the natural world. Working both outdoors and in the studio, teens will paint from life and imagination using watercolor, acrylic, and mixed media. Daily demonstrations and critiques will encourage experimentation and personal growth, while sketchbook work will help refine ideas and strengthen drawing skills. By week’s end, each artist will have a small collection of finished works ready for exhibition—capturing their unique vision of the landscapes that inspire them.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;\u003C/span>\u003C/p>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Highlights:\u003C/span>\u003C/p>\u003Cul>\u003Cli>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Painting from life (“plein air”) on our picturesque campus and from sketches\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Advanced color mixing, layering, and glazing techniques\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Lessons in light, atmosphere, and mood \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Study of historical and contemporary landscape masters \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp;\u003C/span>\u003C/p>\u003C/li>\u003Cli>\u003Cp class=\"MsoNormal\">\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">End-of-week teen art showcase\u003C/span>\u003C/p>\u003C/li>\u003C/ul>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Parents: Please pack a water bottle as well as a peanut free snack.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/3 – 8/7\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=132562\">Waters, Nell\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">14 - 18\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2959428\" eventid=\"2959428\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">3\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"3\" registertype=\"register\" onclick=\"return false;\" eventid=\"2959428\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '8780', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328481'}
2026-08-05 01:30:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:31 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328481"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:31 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:31 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:31 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:31 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1664"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1664"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:32 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1664/text {}
2026-08-05 01:30:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1664/text HTTP/1.1" 200 0
2026-08-05 01:30:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"The Art & Craft of Abstract Photography\nThe course is geared to photographers and designed to give participants the skills they need to enter, explore and excel in the realm of abstract photography, and see beyond the reality that lies in front of the lens. The class will:\nLook at the history of abstraction in art and photography;\nExplore the role the elements and principles of design play in abstraction, examining how concepts like color, line, shape and texture function to create compelling imagery;\nDiscover how Gestalt psychology influences the way we perceive compositions; \nLearn how abstraction challenges photographers to think differently and go beyond traditional ways of making images; and\nBecome familiar with specialized techniques, including intentional camera motion, in-camera multiple exposure, and elementalism, as well as select post-processing programs, as a means to creating unique abstract images.\nWEEK 1:       Abstraction in Art & Photography              \nWEEK 2:       Elementalism (minimalism, color, etc)\nWEEK 3:       In-Camera Multiple Exposure\nWEEK 4:       Intentional Camera Motion (ICM)\nWEEK 5:       Abstraction After the Fact\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nList of Materials: Students should bring a camera (traditional, mirrorless or iPhone) for each class.\nFor those using an iPhone, communication regarding necessary applications will be shared in advanced of the program start date.\n*Class will not meet 10/13*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 10/20 Tu 01:00 PM – 04:00 PM Loeb Bohren, Deborah 18 & up $350.00 View 12\nREGISTER NOW\n11/3 – 12/1 Tu 01:00 PM – 04:00 PM Loeb Bohren, Deborah 18 & up $350.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1794', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1664"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1664'}, 'outerHTML']}
2026-08-05 01:30:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328481\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328481\" onclick=\"return false;\" href=\"#\">The Art &amp; Craft of Abstract Photography\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/3228b9c1-be00-49ee-9f14-55ea314a8b8c_ArtandCraftAbstractPhoto1.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">The course is geared to photographers and designed to give participants the skills they need to enter, explore and excel in the realm of abstract photography, and see beyond the reality that lies in front of the lens. The class will:\u003C/span>\u003C/p>\u003Cul style=\"margin-top: 0in\">\u003Cli class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal\">\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Look at the history of abstraction in art and photography;\u003C/span>\u003C/p>\u003C/li>\u003Cli class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal\">\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Explore the role the elements and principles of design play in abstraction, examining how concepts like color, line, shape and texture function to create compelling imagery;\u003C/span>\u003C/p>\u003C/li>\u003Cli class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal\">\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Discover how Gestalt psychology influences the way we perceive compositions;&nbsp;\u003C/span>\u003C/p>\u003C/li>\u003Cli class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal\">\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Learn how abstraction challenges photographers to think differently and go beyond traditional ways of making images; and\u003C/span>\u003C/p>\u003C/li>\u003Cli class=\"MsoNormal\" style=\"margin-bottom: 0in; line-height: normal\">\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Become familiar with specialized techniques, including intentional camera motion, in-camera multiple exposure, and elementalism, as well as select post-processing programs, as a means to creating unique abstract images.\u003C/span>\u003C/p>\u003C/li>\u003C/ul>\u003Cp style=\"margin: 0in\">\u003Cb>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">WEEK 1:\u003C/span>\u003C/b>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\"> \u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Abstraction in Art &amp; Photography&nbsp;\u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\u003C/span>\u003C/p>\u003Cp style=\"margin: 0in\">\u003Cb>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">WEEK 2:\u003C/span>\u003C/b>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\"> \u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Elementalism (minimalism, color, etc)\u003C/span>\u003C/p>\u003Cp style=\"margin: 0in\">\u003Cb>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">WEEK 3: \u003C/span>\u003C/b>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">In-Camera Multiple Exposure\u003C/span>\u003C/p>\u003Cp style=\"margin: 0in\">\u003Cb>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">WEEK 4:\u003C/span>\u003C/b>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\"> \u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Intentional Camera Motion (ICM)\u003C/span>\u003C/p>\u003Cp style=\"margin: 0in\">\u003Cb>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">WEEK 5:\u003C/span>\u003C/b>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\"> \u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \u003C/span>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Abstraction After the Fact\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: Students should bring a camera (traditional, mirrorless or iPhone) for each class.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">For those using an iPhone, communication regarding necessary applications will be shared in advanced of the program start date.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"line-height: 115%; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 10/13*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 10/20\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=139278\">Loeb Bohren, Deborah\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$350.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065907\" eventid=\"3065907\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$350.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065907\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/3 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=139278\">Loeb Bohren, Deborah\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$350.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066030\" eventid=\"3066030\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$350.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066030\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '11281', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=273940'}
2026-08-05 01:30:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=273940"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1669"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1669"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1669/text {}
2026-08-05 01:30:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1669/text HTTP/1.1" 200 0
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"The Art of Still Life Painting\nLEVEL: INTERMEDIATE-ADVANCED\nThe class will investigate various styles of still life painting such as Dutch, French, and Impressionist. Each student will have their own setup which the instructor will help light and compose. Discussions of shape, color, and edges will start off each class. Still life is a great way to engage with the many topics that arise with oil, acrylic, and watercolor. The instructor will give technical demonstrations throughout the semester. Drawing experience is helpful.\nAdditional Information:\nList of Materials: J.Wiest Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 12/1 Tu 01:00 PM – 04:00 PM Wiest, Justin 18 & up $645.00 View 9\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '756', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1669"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1669'}, 'outerHTML']}
2026-08-05 01:30:37 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"273940\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"273940\" onclick=\"return false;\" href=\"#\">The Art of Still Life Painting\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/165790475907353_wiestjstilllife.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: INTERMEDIATE-ADVANCED\u003C/span>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">The class will investigate various styles of still life painting such as Dutch, French, and Impressionist. Each student will have their own setup which the instructor will help light and compose. Discussions of shape, color, and edges will start off each class. Still life is a great way to engage with the many topics that arise with oil, acrylic, and watercolor. The instructor will give technical demonstrations throughout the semester. Drawing experience is helpful. \u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp style=\"color: rgb(21, 42, 74); margin: 0px 0px 8px; padding: 0px; font-size: 14px; font-family: Arial\">\u003Cspan style=\"color: rgb(0, 0, 0); font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">List of Materials:&nbsp;\u003C/span>\u003Ca href=\"files/read?file=media/J.Wiest%20The%20Art%20of%20Still%20Life.pdf\">\u003Cu>\u003Cspan style=\"color: rgb(0, 0, 0); font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">J.Wiest Supply List.pdf\u003C/span>\u003C/u>\u003C/a>\u003Cbr>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75733\">Wiest, Justin\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$645.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065909\" eventid=\"3065909\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">9\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$645.00\" openslots=\"9\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065909\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4819', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:37 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=215027'}
2026-08-05 01:30:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:39 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=215027"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1676"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1676"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1676/text {}
2026-08-05 01:30:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1676/text HTTP/1.1" 200 0
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"The Art of Stone Sculpture\nLEVEL: ALL LEVELS\nStudents will learn, through hands-on experience and demonstrations, this timeless art of sculpting stone and working with various types of stone. Experience hand and power tools while executing a stone piece. You will be taken through the entire process from stone selection to carving and polishing.\nAdditional Information:\nList of Materials: All materials are provided for this offering\n*Class will not meet 11/26*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/17 – 12/3 Th 10:00 AM – 02:00 PM Davis, Andrew 18 & up $740.00 View 4\nREGISTER NOW\n9/17 – 12/3 Th 07:00 PM – 10:00 PM Davis, Andrew 18 & up $590.00 View 5\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '713', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1676"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1676'}, 'outerHTML']}
2026-08-05 01:30:41 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"215027\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"215027\" onclick=\"return false;\" href=\"#\">The Art of Stone Sculpture\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/168305555195037_im000393.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif\">\u003Cspan style=\"font-family: Arial; font-size: 14px\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif\">\u003Cspan style=\"font-family: Arial; font-size: 14px\">Students will learn, through hands-on experience and demonstrations, this timeless art of sculpting stone and working with various types of stone. Experience hand and power tools while executing a stone piece. You will be taken through the entire process from stone selection to carving and polishing.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"letter-spacing: 0.2px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"letter-spacing: 0.2px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">*Class will not meet 11/26*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 02:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75677\">Davis, Andrew\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$740.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065939\" eventid=\"3065939\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">4\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$740.00\" openslots=\"4\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065939\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/17 – 12/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">07:00 PM – 10:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75677\">Davis, Andrew\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$590.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065947\" eventid=\"3065947\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">5\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$590.00\" openslots=\"5\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065947\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5607', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:41 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=316465'}
2026-08-05 01:30:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:43 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=316465"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:43 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:43 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:43 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:43 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1686"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1686"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1686/text {}
2026-08-05 01:30:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1686/text HTTP/1.1" 200 0
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"The Blacksmith's Bench: Forging a Bottle Opener\nBe the life of the party with your own hand-forged iron bottle opener! Class will start with a demonstration on how to use a forge, anvil, and blacksmith’s hammer, after which students will learn how to forge a decorative bottle opener that they will finish and take home that same night. Students should wear cotton clothing, long pants, and closed-toed shoes.\nAdditional Information:\nList of materials: All materials are provided for this offering.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/19 – 9/19 Sa 01:00 PM – 05:00 PM Husock, Leon 14 & up $225.00 View 6\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '657', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1686"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1686'}, 'outerHTML']}
2026-08-05 01:30:44 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"316465\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"316465\" onclick=\"return false;\" href=\"#\">The Blacksmith's Bench: Forging a Bottle Opener\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/40957ddd-d61a-4acc-9bb1-6d6e44f20a12_Husock_BottleOpener.png\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Be the life of the party with your own hand-forged iron bottle opener! Class will start with a demonstration on how to use a forge, anvil, and blacksmith’s hammer, after which students will learn how to forge a decorative bottle opener that they will finish and take home that same night. Students should wear cotton clothing, long pants, and closed-toed shoes.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"margin-bottom: 0px !important; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/19 – 9/19\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 05:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=129946\">Husock, Leon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">14 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$225.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065965\" eventid=\"3065965\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">6\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$225.00\" openslots=\"6\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065965\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4166', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:44 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=316467'}
2026-08-05 01:30:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:46 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=316467"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:46 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:46 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:46 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:46 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1693"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:47 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:47 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:47 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1693"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:47 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:47 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1693/text {}
2026-08-05 01:30:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1693/text HTTP/1.1" 200 0
2026-08-05 01:30:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"The Blacksmith's Bench: Forging a Hook\nAn evening of fire and fun! Students will explore the ancient art of blacksmithing, heating and forging steel with a hammer and anvil to create a decorative wall hook. The class will begin with a demonstration on how to use a forge and anvil, after which you will forge and finish a hook to take home that same night. Students should wear cotton clothing, long pants, and closed-toed shoes.\nAdditional Information:\nList of materials: All materials are provided for this offering.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/10 – 10/10 Sa 01:00 PM – 05:00 PM Husock, Leon 14 & up $225.00 View 6\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '677', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1693"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:48 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1693'}, 'outerHTML']}
2026-08-05 01:30:48 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:48 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"316467\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"316467\" onclick=\"return false;\" href=\"#\">The Blacksmith's Bench: Forging a Hook\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/0f3bd522-ef07-4f0d-80cc-caca33fb2996_Husock_Hook.png\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 14px\">An evening of fire and fun! Students will explore the ancient art of blacksmithing, heating and forging steel with a hammer and anvil to create a decorative wall hook. The class will begin with a demonstration on how to use a forge and anvil, after which you will forge and finish a hook to take home that same night. Students should wear cotton clothing, long pants, and closed-toed shoes.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Ctable class=\"list alt-body-headers no-body-borders no-top-padding less-v-padding no-tt ng-star-inserted\" style=\"border-spacing: 0px; font-size: 0.875rem; font-weight: 400; width: 610.5px; margin-bottom: 0px !important; color: rgb(49, 59, 72); font-family: Nunito, sans-serif; font-style: normal; letter-spacing: normal; orphans: 2; text-align: start; text-transform: none; widows: 2; word-spacing: 0px; white-space: normal; background-color: rgb(255, 255, 255)\">\u003Ctbody style=\"margin-bottom: 0px !important\">\u003Ctr class=\"ng-star-inserted\">\u003Ctd class=\"v-padding ng-star-inserted\" style=\"padding: 4px 0px; border-bottom: none; text-align: left; color: rgb(32, 49, 82); margin-bottom: 0px !important\">\u003Cdiv style=\"display: inline; min-height: 100px; min-width: 30px; width: 335.781px\" class=\"editor asap-editor show-div\">\u003Cp style=\"font-size: 0.8125rem; font-weight: 400; margin-top: 0px; margin-right: 0px; margin-bottom: 0px !important; margin-left: 0px\">\u003Cspan style=\"margin-bottom: 0px !important; font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003C/div>\u003C/td>\u003C/tr>\u003C/tbody>\u003C/table>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/10 – 10/10\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 05:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=129946\">Husock, Leon\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">14 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$225.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065997\" eventid=\"3065997\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">6\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$225.00\" openslots=\"6\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065997\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5224', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:48 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=326055'}
2026-08-05 01:30:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=326055"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:50 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:50 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1700"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1700"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1700/text {}
2026-08-05 01:30:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1700/text HTTP/1.1" 200 0
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"The Digital Portrait: Drawing & Painting the Head on the iPad\nLEVEL: ALL LEVELS\nLearn how to draw and paint the face and head on the iPad using Procreate. Explore how to compose a portrait and build your work with light, color, value, and form. You’ll also learn how to use layers, brushes, and digital tools effectively and avoid common mistakes. We’ll make pixels feel like traditional media - and have fun doing it.  A love of drawing and curiosity about digital tools are all you need. Students may bring their own iPad and stylus or use classroom Wacom tablets and computers provided.\nAdditional Information:\nList of Materials: Students should bring an iPad and Apple Pencil with Procreate.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/30 – 10/30 Fr 06:00 PM – 09:00 PM DeLoca, Jonathan 16 & up $145.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '864', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1700"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1700'}, 'outerHTML']}
2026-08-05 01:30:51 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"326055\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"326055\" onclick=\"return false;\" href=\"#\">The Digital Portrait: Drawing &amp; Painting the Head on the iPad\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/6b84eddb-e338-4820-a01e-66cdea5adc6a_DeLoca_DigitalPortraitDrawingPaintingHeadiPad.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Learn how to draw and paint the face and head on the iPad using Procreate. Explore how to compose a portrait and build your work with light, color, value, and form. You’ll also learn how to use layers, brushes, and digital tools effectively and avoid common mistakes. We’ll make pixels feel like traditional media - and have fun doing it.\u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">&nbsp; \u003C/span>\u003Cspan style=\"font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">A love of drawing and curiosity about digital tools are all you need. Students may bring their own iPad and stylus or use classroom Wacom tablets and computers provided.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: Students should bring an iPad and Apple Pencil with Procreate.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/30 – 10/30\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">06:00 PM – 09:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=135676\">DeLoca, Jonathan\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">16 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$145.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066025\" eventid=\"3066025\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$145.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066025\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4782', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:51 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=176894'}
2026-08-05 01:30:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:53 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=176894"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:53 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:53 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:53 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:53 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1709"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1709"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1709/text {}
2026-08-05 01:30:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1709/text HTTP/1.1" 200 0
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"The Fine Art of Black & White Photography and Darkroom\nLEVEL: ALL LEVELS\nThis is an all level course for those wishing to learn or refine their techniques and ideas. Emphasis is placed on the printing process and presentation of images. Demonstrations, critiques, and slide lecture presentations will be given as a means to investigate creativity, as well as to gain insight into creating ideas and understanding concepts of b/w photographs. Some assignments will be given. Students are encouraged to make their own assignments and do work outside of class.\nAdditional Information:\nList of Materials: The instructor will share details regarding the class supplies during the first class meeting.\nOpen Studio: Open Studio Spring 2026 - Photography.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 12/1 Tu 09:30 AM – 12:30 PM Dunbar, Bruce 18 & up $810.00 View 0\nADD TO WAITLIST"} | headers=HTTPHeaderDict({'Content-Length': '913', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1709"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1709'}, 'outerHTML']}
2026-08-05 01:30:54 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"176894\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"176894\" onclick=\"return false;\" href=\"#\">The Fine Art of Black &amp; White Photography and Darkroom\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/d95ee511-5502-4245-aa55-824e5f5634c1_DunbarB_TheFineArtBlackWhitePhotographyDarkroom.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"background: white; font-size: 10.5pt; font-family: Arial, sans-serif; letter-spacing: 0.15pt; color: #000000\">This is an all level course for those wishing to learn or refine their techniques and ideas. Emphasis is placed on the printing process and presentation of images. Demonstrations, critiques, and slide lecture presentations will be given as a means to investigate creativity, as well as to gain insight into creating ideas and understanding concepts of b/w photographs. Some assignments will be given. Students are encouraged to make their own assignments and do work outside of class.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: The instructor will share details regarding the class supplies during the first class meeting.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Photography_SP2026_REVISED.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Open Studio Spring 2026 - Photography.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=87648\">Dunbar, Bruce\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$810.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065902\" eventid=\"3065902\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">0\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$810.00\" openslots=\"-2\" registertype=\"waitlist\" onclick=\"return false;\" eventid=\"3065902\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small center menu\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Add to Waitlist\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5065', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:54 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=319354'}
2026-08-05 01:30:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:56 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:30:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:30:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=319354"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:30:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:56 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:56 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:56 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:56 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:57 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:57 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:30:57 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:57 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1717"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1717"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1717/text {}
2026-08-05 01:30:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1717/text HTTP/1.1" 200 0
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"The Language of Paint (Ages: 12-15)\nThis class is designed for teens interested in building their painting skills and developing their own artistic style. Students will work with a range of painting materials—such as acrylic, watercolor, and gouache—while exploring color theory, composition, layering, blending, and brush techniques. Through guided projects and individual exploration, teens will create original works inspired by observation, imagination, and influential artists from both past and present. Ideal for both beginners and those looking to expand their skills, this class encourages experimentation, personal expression, and creative growth.\nAdditional Information:\nList of Materials: All materials are provided for this offering\n*Class will not meet 11/6, 11/27*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/18 – 12/4 Fr 04:00 PM – 06:00 PM Waters, Nell 12 - 16 $490.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '942', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:30:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1717"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1717'}, 'outerHTML']}
2026-08-05 01:30:58 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"319354\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"319354\" onclick=\"return false;\" href=\"#\">The Language of Paint (Ages: 12-15)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/6bb0b517-f3d7-415b-9a0f-5622f3b929df_WatersN_TheLanguageofPaint1 Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This class is designed for teens interested in building their painting skills and developing their own artistic style. Students will work with a range of painting materials—such as acrylic, watercolor, and gouache—while exploring color theory, composition, layering, blending, and brush techniques. Through guided projects and individual exploration, teens will create original works inspired by observation, imagination, and influential artists from both past and present. Ideal for both beginners and those looking to expand their skills, this class encourages experimentation, personal expression, and creative growth.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: All materials are provided for this offering\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 11/6, 11/27*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/18 – 12/4\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">04:00 PM – 06:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=132562\">Waters, Nell\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">12 - 16\u003C/td>\n    \n        \u003Ctd class=\"\">$490.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065954\" eventid=\"3065954\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$490.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065954\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4630', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:30:58 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=283509'}
2026-08-05 01:31:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:00 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:31:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=283509"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:31:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:00 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:00 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:00 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:00 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:01 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:01 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:01 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:01 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1725"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1725"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:02 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1725/text {}
2026-08-05 01:31:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1725/text HTTP/1.1" 200 0
2026-08-05 01:31:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"The Portrait in Five Colors\nPortrait in Five Colors Capture the portrait with clarity and economy. We will identify and mark spots of color. By modulating tones we will arrive at a likeness. The limited palette gives the student an opportunity to become more sensitized to chromatic thresholds. We will discuss the right ways in which the palette can be expanded.\nAdditional Information:\nList of Materials: J.Wiest Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/15 – 10/16 Th Fr 01:00 PM – 04:00 PM Wiest, Justin 18 & up $245.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '593', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1725"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:02 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1725'}, 'outerHTML']}
2026-08-05 01:31:02 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:02 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"283509\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"283509\" onclick=\"return false;\" href=\"#\">The Portrait in Five Colors\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/e2d919c9-992d-4e0f-8a8a-49f0abaec568_WiestJ_PortraitFiveColors Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Portrait in Five Colors Capture the portrait with clarity and economy. We will identify and mark spots of color. By modulating tones we will arrive at a likeness. The limited palette gives the student an opportunity to become more sensitized to chromatic thresholds. We will discuss the right ways in which the palette can be expanded.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/J.Wiest The Portrait in Five Colors.pdf\" target=\"_blank\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">J.Wiest Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/15 – 10/16\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75733\">Wiest, Justin\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$245.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066002\" eventid=\"3066002\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$245.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066002\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4408', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:02 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=319357'}
2026-08-05 01:31:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:04 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:31:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=319357"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:31:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:04 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:04 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:04 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:04 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:05 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:05 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:05 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:05 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1732"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1732"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1732/text {}
2026-08-05 01:31:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1732/text HTTP/1.1" 200 0
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"The Young Painter's Studio (Ages: 7-10)\nIn this creative and skill-building painting class, young artists will explore a range of techniques while developing their confidence with color, composition, and brushwork. Students will work with materials such as watercolor, tempera, and acrylics as they learn about layering, blending, color mixing, and using different tools and textures. Lessons will be inspired by nature, imagination, and both classic and contemporary artists. Each project encourages creative thinking while building a strong foundation in painting skills. Perfect for kids who love to experiment and express themselves through art!\nAdditional Information:\nList of Materials: All materials are provided for this offering\n*Class will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/16 – 12/2 We 04:30 PM – 06:30 PM Waters, Nell 7 - 11 $530.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '923', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1732"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1732'}, 'outerHTML']}
2026-08-05 01:31:06 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"319357\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"319357\" onclick=\"return false;\" href=\"#\">The Young Painter's Studio (Ages: 7-10)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/1f39b9ed-31eb-4a75-92a8-22bac86068f9_WatersN_TheYoungPaintersStudio.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 106%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">In this creative and skill-building painting class, young artists will explore a range of techniques while developing their confidence with color, composition, and brushwork. Students will work with materials such as watercolor, tempera, and acrylics as they learn about layering, blending, color mixing, and using different tools and textures. Lessons will be inspired by nature, imagination, and both classic and contemporary artists. Each project encourages creative thinking while building a strong foundation in painting skills. Perfect for kids who love to experiment and express themselves through art!\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: All materials are provided for this offering\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">04:30 PM – 06:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=132562\">Waters, Nell\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">7 - 11\u003C/td>\n    \n        \u003Ctd class=\"\">$530.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065932\" eventid=\"3065932\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$530.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065932\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4606', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:06 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=308415'}
2026-08-05 01:31:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:31:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=308415"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:31:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:08 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:08 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1742"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1742"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1742/text {}
2026-08-05 01:31:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1742/text HTTP/1.1" 200 0
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Topics in Oil Paint (Ages: 12-15)\nWhether you are new to oil painting or have experience, this class will show the wide applications of this medium. Terms such as alla prima and underpainting will become familiar to the students and utilized early in the week. We will learn other advanced techniques the second half of the week and incorporate these into the subjects of still life, landscape, and portrait. With this sampling the student can get an idea of what subject is most interesting to them. Daily critiques and demonstrations accompany individual attention given to students. Some drawing experience is helpful.\nAdditional Information:\nOil paint can stain - Students should wear appropriate clothes that can be stained permanently and/or bring an apron. Please pack peanut-free snack and water bottle.\nCamp forms are required at the time of registration, click here to access.\nPlease review our Summer Art Studio withdrawal & reimbursement policies here.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n8/17 – 8/21 Mo Tu We Th Fr 09:00 AM – 12:00 PM Wiest, Justin 12 - 16 $465.00 View 5\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1136', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1742"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1742'}, 'outerHTML']}
2026-08-05 01:31:09 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"308415\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"308415\" onclick=\"return false;\" href=\"#\">Topics in Oil Paint (Ages: 12-15)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/0e6eec4c-ad81-45c2-adb2-5d72e6933965_WiestJ_TopicsInOil Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Whether you are new to oil painting or have experience, this class will show the wide applications of this medium. Terms such as alla prima and underpainting will become familiar to the students and utilized early in the week. We will learn other advanced techniques the second half of the week and incorporate these into the subjects of still life, landscape, and portrait. With this sampling the student can get an idea of what subject is most interesting to them. Daily critiques and demonstrations accompany individual attention given to students. Some drawing experience is helpful.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"line-height: 107%; letter-spacing: .15pt; background: white; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 12px\">Oil paint can stain - Students should wear appropriate clothes that can be stained permanently and/or bring an apron. \u003C/span>\u003Cspan style=\"line-height: 107%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 12px\">Please pack \u003C/span>\u003Cb>\u003Cu>\u003Cspan style=\"line-height: 107%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 12px\">peanut-free\u003C/span>\u003C/u>\u003C/b>\u003Cspan style=\"line-height: 107%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; font-size: 12px\"> snack and water bottle.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Camp forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/SAC Summer Art Studios Forms 2026.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-size: 12px; color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\"> to access.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">Please review our Summer Art Studio withdrawal &amp; reimbursement policies \u003C/span>\u003C/em>\u003C/strong>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/Summer Art Policies PDF-1-7-26.pdf\" target=\"_blank\">\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">here\u003C/span>\u003C/em>\u003C/strong>\u003C/a>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000; background-color: #ffffff; font-size: 13px\">.\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">8/17 – 8/21\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Mo Tu We Th Fr\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:00 AM – 12:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75733\">Wiest, Justin\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">12 - 16\u003C/td>\n    \n        \u003Ctd class=\"\">$465.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=2956844\" eventid=\"2956844\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">5\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$465.00\" openslots=\"5\" registertype=\"register\" onclick=\"return false;\" eventid=\"2956844\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6646', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:09 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=190840'}
2026-08-05 01:31:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:11 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:31:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=190840"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:31:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:11 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:11 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:11 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:11 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1750"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1750"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1750/text {}
2026-08-05 01:31:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1750/text HTTP/1.1" 200 0
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Watercolor Landscapes\nLEVEL: ALL LEVELS\nThe fundamentals of watercolor will be taught and the emphasis will be on becoming comfortable with the spontaneous nature of the medium. We will focus on how to capture light filled landscape paintings by using the white of the watercolor paper. Demonstrations will be given at the beginning of each class. Bring your own landscape photographs as a reference.\nAdditional Information:\nList of Materials: W.MacCordy Supply List.pdf\n*Class will not meet 9/22, 10/13*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 12/1 Tu 09:30 AM – 12:30 PM MacCordy, Wendy 18 & up $555.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '667', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1750"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1750'}, 'outerHTML']}
2026-08-05 01:31:12 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"190840\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"190840\" onclick=\"return false;\" href=\"#\">Watercolor Landscapes\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/168305584124069_maccordy-sail-away.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cdiv style=\"color: rgb(0, 0, 0); font-family: -webkit-standard; letter-spacing: normal\" title=\"Page 5\" class=\"page\">\u003Cdiv class=\"layoutArea\">\u003Cdiv class=\"column\">\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal\">\u003Cspan style=\"font-family: Arial; font-size: 14px\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif; letter-spacing: normal\">\u003Cspan style=\"font-family: Arial; font-size: 14px\">The fundamentals of watercolor will be taught and the emphasis will be on becoming comfortable with the spontaneous nature of the medium. We will focus on how to capture light filled landscape paintings by using the white of the watercolor paper. Demonstrations will be given at the beginning of each class. Bring your own landscape photographs as a reference.\u003C/span>\u003C/p>\u003C/div>\u003C/div>\u003C/div>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials:&nbsp;\u003C/span>\u003Ca href=\"files/read?file=files/W.MacCordy Watercolor Landscapes.pdf\" target=\"_blank\">\u003Cu>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">W.MacCordy Supply List.pdf\u003C/span>\u003C/u>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">*Class will not meet 9/22, 10/13*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">09:30 AM – 12:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75703\">MacCordy, Wendy\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$555.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065903\" eventid=\"3065903\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$555.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065903\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5041', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:12 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328484'}
2026-08-05 01:31:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:14 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:31:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328484"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:31:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:14 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:14 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:14 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:14 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:15 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:15 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:15 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:15 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1757"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1757"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1757/text {}
2026-08-05 01:31:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1757/text HTTP/1.1" 200 0
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Wax + Surface: Texture in Encaustics\nThis hands-on workshop explores how to build rich surface texture with encaustic paint. Participants will learn how layering, scraping, mark-making, and heat can create depth, movement, and dimensional effects in their paintings. The class is suitable for artists who want to expand their encaustic practice and experiment with expressive surfaces, tactile finishes, and new ways of thinking about form.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: H.Levy Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n11/14 – 11/14 Sa 01:00 PM – 04:00 PM Levy, Holli 18 - 99 $165.00 View 8\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '733', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1757"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1757'}, 'outerHTML']}
2026-08-05 01:31:16 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328484\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328484\" onclick=\"return false;\" href=\"#\">Wax + Surface: Texture in Encaustics\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/717674f6-ee2e-43af-affc-327caf23b1cb_LevyH_WaxSurfaceTextureEncaustic.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">This hands-on workshop explores how to build rich surface texture with encaustic paint. Participants will learn how layering, scraping, mark-making, and heat can create depth, movement, and dimensional effects in their paintings. The class is suitable for artists who want to expand their encaustic practice and experiment with expressive surfaces, tactile finishes, and new ways of thinking about form.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/H.Levy Wax and Surface Texture in Encaustics.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">H.Levy Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">11/14 – 11/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=139222\">Levy, Holli\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 - 99\u003C/td>\n    \n        \u003Ctd class=\"\">$165.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066045\" eventid=\"3066045\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">8\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$165.00\" openslots=\"8\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066045\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4726', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:16 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=319313'}
2026-08-05 01:31:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:31:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=319313"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:31:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:18 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:18 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1763"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1763"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1763/text {}
2026-08-05 01:31:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1763/text HTTP/1.1" 200 0
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Wearable Art: 2D Felting on Denim\nAdd colorful, textured detail to your well loved denim clothing in this fun felting workshop. We’ll create illustrative designs and carefully lay them into our clothing pieces. This two-day workshop is perfect for anyone who loves creativity, sustainability, and a pop of personality in their wardrobe!\nAdditional Information:\nList of Materials: S.Giuliano Supply List.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n10/2 – 10/3 Fr Sa 01:00 PM – 04:00 PM Giuliano, Samantha 18 & up $205.00 View 18\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '575', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1763"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1763'}, 'outerHTML']}
2026-08-05 01:31:19 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"319313\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"319313\" onclick=\"return false;\" href=\"#\">Wearable Art: 2D Felting on Denim\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/cbb537c1-a2d5-4062-a982-ade12f6356ee_Giuliano2DFelting Smaller.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Ca>\u003Cspan style=\"line-height: 106%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Add colorful, textured detail to your well loved denim clothing in this fun felting workshop. We’ll create illustrative designs and carefully lay them into our clothing pieces. This two-day workshop is \u003C/span>\u003C/a>\u003Cspan style=\"line-height: 106%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">perfect for anyone who loves creativity, sustainability, and a pop of personality in their wardrobe!\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/S.Giuliano Wearable Art 2D Felting on Denim.pdf\" target=\"_blank\">\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">S.Giuliano Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">10/2 – 10/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Fr Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=137073\">Giuliano, Samantha\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$205.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065984\" eventid=\"3065984\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">18\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$205.00\" openslots=\"18\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065984\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4559', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:19 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=209835'}
2026-08-05 01:31:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:21 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:31:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=209835"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:31:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:21 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:21 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:21 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:21 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1770"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1770"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1770/text {}
2026-08-05 01:31:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1770/text HTTP/1.1" 200 0
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Wheel Throwing for Beginners\nEver wanted to spend a day learning the basics of the pottery wheel? If so, this class is for you. Come spend the day with fellow beginners as they learn to create on the wheel. We will make plates, bowls and cylinders. All pieces will be bisque fired in the studio kiln and glaze fired as well. Clay and firing costs are included in the cost of the workshop.\nAdditional Information:\nList of Materials: All materials are provided for this offering\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/12 – 9/12 Sa 10:00 AM – 04:00 PM Hower, Wendy 18 & up $285.00 View 10\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '634', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1770"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1770'}, 'outerHTML']}
2026-08-05 01:31:22 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"209835\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"209835\" onclick=\"return false;\" href=\"#\">Wheel Throwing for Beginners\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/992a8a78-4ae0-4858-9fc8-15acc3219558_IMG_8422.JPG\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"color: rgb(0, 0, 0); font-size: medium; font-family: &quot;Times New Roman&quot;, serif\">\u003Cspan style=\"background-color: white; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">Ever wanted to spend a day learning the basics of the pottery wheel? If so, this class is for you. Come spend the day with fellow beginners as they learn to create on the wheel. We will make plates, bowls and cylinders. All pieces will be bisque fired in the studio kiln and glaze fired as well. Clay and firing costs are included in the cost of the workshop.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"font-size: 12px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">List of Materials: All materials are provided for this offering\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/12 – 9/12\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10:00 AM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75694\">Hower, Wendy\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$285.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066078\" eventid=\"3066078\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$285.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066078\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4205', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:22 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328485'}
2026-08-05 01:31:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:24 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:31:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328485"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:31:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:24 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:24 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:24 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:24 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:25 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:25 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:25 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:25 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1776"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1776"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1776/text {}
2026-08-05 01:31:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1776/text HTTP/1.1" 200 0
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Wheel Works: Throwing, Altering & Assembling\nLEVEL: INTERMEDIATE-ADVANCED\nDesigned for intermediate to advanced wheel throwers, this course invites students to expand their technical skills while beginning to develop a more personal style and creative voice in clay. Students will explore thrown and altered forms, assembled vessels, and alternative approaches to working on the wheel, with opportunities to experiment, problem-solve, and push their work in new directions. Advanced techniques, individual guidance, and personalized support will be emphasized, making this a dynamic class for students ready to refine their practice and have fun exploring what’s possible beyond the basics.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nA firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\nList of Materials: Tool Kits & Clay are available for purchase in class\nOpen Studio: Open Studio Fall 2026 - Ceramics.pdf\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 12/1 Tu 12:30 PM – 03:30 PM Dunn, Zach 18 & up $780.00 View 3\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1341', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1776"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1776'}, 'outerHTML']}
2026-08-05 01:31:26 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328485\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328485\" onclick=\"return false;\" href=\"#\">Wheel Works: Throwing, Altering &amp; Assembling\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/5e19fa22-a6e2-4e57-8afd-2ab35b4c0387_DunnZ_WheelWorks.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">LEVEL: INTERMEDIATE-ADVANCED\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Designed for intermediate to advanced wheel throwers, this course invites students to expand their technical skills while beginning to develop a more personal style and creative voice in clay. Students will explore thrown and altered forms, assembled vessels, and alternative approaches to working on the wheel, with opportunities to experiment, problem-solve, and push their work in new directions. Advanced techniques, individual guidance, and personalized support will be emphasized, making this a dynamic class for students ready to refine their practice and have fun exploring what’s possible beyond the basics.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"color: rgb(0, 0, 0); font-family: Arial; font-size: 12px; letter-spacing: 0.2px; background-color: rgb(255, 255, 255)\">A firing fee deposit is included in the price. Additional fees apply for students who exceed the deposit amount. Credits will be applied for students who do not meet the firing fee deposit total. Firing fees are not refundable regardless of the outcome of the piece of artwork.\u003C/span>\u003C/p>\u003Cp style=\"background-color: rgb(255, 255, 255)\">\u003Cspan style=\"font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">List of Materials:&nbsp;\u003C/span>\u003Cspan style=\"line-height: 12.84px; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Tool Kits &amp; Clay are available for purchase in class\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio: \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf\" target=\"_blank\">\u003Cspan style=\"letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif\">Open Studio Fall 2026 - Ceramics.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 12/1\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12:30 PM – 03:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=89463\">Dunn, Zach\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$780.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065904\" eventid=\"3065904\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">3\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$780.00\" openslots=\"3\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065904\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '6078', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:26 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328486'}
2026-08-05 01:31:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:31:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328486"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:31:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:28 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:28 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:29 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:29 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:29 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:29 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1786"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1786"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:30 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1786/text {}
2026-08-05 01:31:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1786/text HTTP/1.1" 200 0
2026-08-05 01:31:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Winter Holiday Clay Ornaments (Ages: 6-9)\nCreate exciting holiday-themed ceramic ornaments to kick off December! Inspired by winter celebrations and motifs, students will use carved texture, stamps, and colorful underglaze to decorate ornaments they cut out from clay slabs. These creations will be the perfect hanging decorations for the home, or to give as gifts! Student’s work will be glazed and kiln-fired.\nAdditional Information:\nExplore our new workshops at 15% off! Discount applied at checkout.\nList of Materials: All materials are provided for this offering.\nAll artwork will be available two to three weeks after the program has occurred and the School Office will contact participants via email with pick up instructions.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n12/5 – 12/5 Sa 01:00 PM – 04:00 PM Long, Charlotte 6 - 10 $165.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '897', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1786"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:30 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1786'}, 'outerHTML']}
2026-08-05 01:31:30 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:30 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328486\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328486\" onclick=\"return false;\" href=\"#\">Winter Holiday Clay Ornaments (Ages: 6-9)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/0935f2b5-06ae-431f-aab5-4ebf03ad1a01_Long_Winter_Ornaments.jpeg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Create exciting holiday-themed ceramic ornaments to kick off December! Inspired by winter celebrations and motifs, students will use carved texture, stamps, and colorful underglaze to decorate ornaments they cut out from clay slabs. These creations will be the perfect hanging decorations for the home, or to give as gifts! Student’s work will be glazed and kiln-fired.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new workshops at 15% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">All artwork will be available two to three weeks after the program has occurred and the School Office will contact participants via email with pick up instructions.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">12/5 – 12/5\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>Long, Charlotte\u003C/td>\n    \n        \u003Ctd class=\"\">6 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$165.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3066060\" eventid=\"3066060\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$165.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3066060\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4675', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:30 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=288987'}
2026-08-05 01:31:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:31:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=288987"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:31:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:32 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:32 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1795"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1795"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1795/text {}
2026-08-05 01:31:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1795/text HTTP/1.1" 200 0
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"WOW! The Many Facets of Pen, Ink & Watercolor\nLEVEL: ALL LEVELS\nThis course introduces you to the many possibilities inherent in using pen and ink along with watercolor! The focus will be on teaching you not only the basic techniques of each medium, but also to assist each student in creating work that is truly their own voice, not the voice of the instructor or anyone else! From landscape to floral to portraiture to abstraction, to illustrated writing/journaling, all genres of interest are welcome. My passion lies in bringing out the artist in YOU! Artists, dabblers, writers are all welcome to explore the virtues of pen and ink and watercolor, both separately and together, all while learning, sharing and having FUN!!! No experience required...just your energy and interest!\nAdditional Information:\nList of Materials: N.McTague-Stock Supply List.pdf\n*Class will not meet 11/25*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/16 – 12/2 We 01:00 PM – 02:30 PM McTague-Stock, Nancy 18 & up $635.00 View 10\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '1055', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1795"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1795'}, 'outerHTML']}
2026-08-05 01:31:33 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"288987\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"288987\" onclick=\"return false;\" href=\"#\">WOW! The Many Facets of Pen, Ink &amp; Watercolor\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/c989882f-8624-46ff-a159-7f12e34050a9_N.Mctague-Stock_PenInk1.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"font-size: 10.5pt; font-family: Arial, sans-serif; letter-spacing: 0.15pt; color: #000000\">LEVEL: ALL LEVELS\u003C/span>\u003C/p>\u003Cp style=\"background: white\">\u003Cspan style=\"font-size: 10.5pt; font-family: Arial, sans-serif; letter-spacing: 0.15pt; color: #000000\">This course introduces you to the many possibilities inherent in using pen and ink along with watercolor! The focus will be on teaching you not only the basic techniques of each medium, but also to assist each student in creating work that is truly their own voice, not the voice of the instructor or anyone else! From landscape to floral to portraiture to abstraction, to illustrated writing/journaling, all genres of interest are welcome. My passion lies in bringing out the artist in YOU! Artists, dabblers, writers are all welcome to explore the virtues of pen and ink and watercolor, both separately and together, all while learning, sharing and having FUN!!! No experience required...just your energy and interest!\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cspan style=\"color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">List of Materials:&nbsp;\u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/N.McTague-Stock Wow Facets of Pen Ink  Watercolor.pdf\" target=\"_blank\">\u003Cspan style=\"color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">N.McTague-Stock Supply List.pdf\u003C/span>\u003C/a>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"color: #000000; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px\">*Class will not meet 11/25*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/16 – 12/2\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">We\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">01:00 PM – 02:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75708\">McTague-Stock, Nancy\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">18 &amp; up\u003C/td>\n    \n        \u003Ctd class=\"\">$635.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065928\" eventid=\"3065928\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">10\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$635.00\" openslots=\"10\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065928\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5238', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:33 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=328487'}
2026-08-05 01:31:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:31:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=328487"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:31:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:35 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:35 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1803"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1803"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1803/text {}
2026-08-05 01:31:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1803/text HTTP/1.1" 200 0
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Youth Ceramics: Clay Handbuilding Studio (Ages: 7-9)\nIn this beginner-friendly course, students will engage their creativity through various 3-D clay projects, both sculptural and functional! Each class will explore the basics of different building techniques, including slabs, pinch pots, and coils. Students will have the opportunity to utilize texture and colorful underglazes to decorate their pieces. All projects will be glazed and kiln-fired, ready to enjoy! Materials and tools will be provided by the school.\nAdditional Information:\nExplore our new courses at 10% off! Discount applied at checkout.\nList of Materials: All materials are provided for this offering.\n*Class will not meet 11/7*\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/15 – 11/3 Tu 04:30 PM – 06:30 PM Long, Charlotte 7 - 10 $365.00 View 11\nREGISTER NOW\n9/19 – 11/14 Sa 02:00 PM – 04:00 PM Long, Charlotte 7 - 10 $365.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '955', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1803"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1803'}, 'outerHTML']}
2026-08-05 01:31:36 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"328487\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"328487\" onclick=\"return false;\" href=\"#\">Youth Ceramics: Clay Handbuilding Studio (Ages: 7-9)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/db7d3425-af06-4c74-b3bb-fc9eefcb270f_Long_Youth_Ceramics.jpeg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"line-height: 115%; font-size: 14px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; color: #000000\">In this beginner-friendly course, students will engage their creativity through various 3-D clay projects, both sculptural and functional! Each class will explore the basics of different building techniques, including slabs, pinch pots, and coils. Students will have the opportunity to utilize texture and colorful underglazes to decorate their pieces. All projects will be glazed and kiln-fired, ready to enjoy! Materials and tools will be provided by the school.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cp>\u003Cstrong>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #46860F\">Explore our new courses at 10% off! Discount applied at checkout.\u003C/span>\u003C/strong>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003Cp>\u003Cstrong>\u003Cem>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">*Class will not meet 11/7*\u003C/span>\u003C/em>\u003C/strong>\u003C/p>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/15 – 11/3\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Tu\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">04:30 PM – 06:30 PM\u003C/td>\n    \n        \u003Ctd>Long, Charlotte\u003C/td>\n    \n        \u003Ctd class=\"\">7 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$365.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065912\" eventid=\"3065912\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">11\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$365.00\" openslots=\"11\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065912\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/19 – 11/14\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Sa\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">02:00 PM – 04:00 PM\u003C/td>\n    \n        \u003Ctd>Long, Charlotte\u003C/td>\n    \n        \u003Ctd class=\"\">7 - 10\u003C/td>\n    \n        \u003Ctd class=\"\">$365.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065966\" eventid=\"3065966\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$365.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065966\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '5720', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:36 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {'url': 'https://silvermineart.asapconnected.com/#CourseID=166010'}
2026-08-05 01:31:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:38 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/url {}
2026-08-05 01:31:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/url HTTP/1.1" 200 0
2026-08-05 01:31:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"https://silvermineart.asapconnected.com/#CourseID=166010"} | headers=HTTPHeaderDict({'Content-Length': '68', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': 'return document.readyState', 'args': []}
2026-08-05 01:31:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"complete"} | headers=HTTPHeaderDict({'Content-Length': '20', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:38 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:38 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:38 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:38 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:39 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:39 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 404 0
2026-08-05 01:31:39 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=404 | data={"value":{"error":"no such element","message":"no such element: Unable to locate element: {\"method\":\"css selector\",\"selector\":\"article\"}\n  (Session info: chrome=150.0.7871.128)","stacktrace":"#0 0x5bfe1b758c0a \u003Cunknown>\n#1 0x5bfe1b14d649 \u003Cunknown>\n#2 0x5bfe1b1a2037 \u003Cunknown>\n#3 0x5bfe1b1a2361 \u003Cunknown>\n#4 0x5bfe1b1ed244 \u003Cunknown>\n#5 0x5bfe1b1ea3e2 \u003Cunknown>\n#6 0x5bfe1b1956d9 \u003Cunknown>\n#7 0x5bfe1b1964f1 \u003Cunknown>\n#8 0x5bfe1b71e5db \u003Cunknown>\n#9 0x5bfe1b71d2e4 \u003Cunknown>\n#10 0x5bfe1b709974 \u003Cunknown>\n#11 0x5bfe1b71da82 \u003Cunknown>\n#12 0x5bfe1b6f34f7 \u003Cunknown>\n#13 0x5bfe1b745378 \u003Cunknown>\n#14 0x5bfe1b745566 \u003Cunknown>\n#15 0x5bfe1b757777 \u003Cunknown>\n#16 0x7b35bd63daa4 \u003Cunknown>\n#17 0x7b35bd6cac6c \u003Cunknown>\n"}} | headers=HTTPHeaderDict({'Content-Length': '824', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:39 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1813"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1813"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: GET http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1813/text {}
2026-08-05 01:31:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "GET /session/6da96bd5e711106170043987a6fdb485/element/f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1813/text HTTP/1.1" 200 0
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"Youth Oil Painting (Ages: 13-17)\nStudents will learn about the beautiful and unique qualities of painting in oil. We will learn about setting up a palette, color mixing, mediums and glazing, layering and care of materials. Working both in the studio and plein air to create a still-life and landscape, the areas of sighting, linear and aerial perspective will be covered, allowing students to accurately paint what they see.\nAdditional Information:\nList of Materials: All materials are provided for this offering.\nForms are required at the time of registration, click here to access.\nDATES DAYS TIMES INSTRUCTOR AGES FEES DETAILS OPEN\n9/24 – 10/29 Th 04:30 PM – 06:30 PM Guerin, C.J. 13 - 18 $340.00 View 12\nREGISTER NOW"} | headers=HTTPHeaderDict({'Content-Length': '743', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/element {'using': 'css selector', 'value': 'article'}
2026-08-05 01:31:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/element HTTP/1.1" 200 0
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":{"element-6066-11e4-a52e-4f735466cecf":"f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1813"}} | headers=HTTPHeaderDict({'Content-Length': '128', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: POST http://localhost:46573/session/6da96bd5e711106170043987a6fdb485/execute/sync {'script': '/* getAttribute */return (function(){return (function(){var d=this||self;function f(a,b){function c(...', 'args': [{'element-6066-11e4-a52e-4f735466cecf': 'f.371569DE2EAF6D0FBABA86F5293446BA.d.EBA2A018CDC523185D10540DC8FA7548.e.1813'}, 'outerHTML']}
2026-08-05 01:31:40 [urllib3.connectionpool] DEBUG: http://localhost:46573 "POST /session/6da96bd5e711106170043987a6fdb485/execute/sync HTTP/1.1" 200 0
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":"\u003Carticle id=\"166010\">\n            \u003Ch2>\u003Ca class=\"lnkCourseDetails\" courseid=\"166010\" onclick=\"return false;\" href=\"#\">Youth Oil Painting (Ages: 13-17)\u003C/a>\u003C/h2>\n            \u003Cdiv>\u003C/div>\n            \u003Cdiv class=\"thumbnail\" style=\"display: block;\">\n                \u003Ca href=\"#\">\u003Cimg src=\"files/read?file=/images/course/161402802438859_youth oil.jpg\" alt=\"\" class=\"lnkCourseDetails\" onerror=\"this.style.display='none';\">\u003C/a>\n            \u003C/div>\n            \u003Cdiv class=\"description\">\n                \u003Cp>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; color: #000000\">Students will learn about the beautiful and unique qualities of painting in oil. We will learn about setting up a palette, color mixing, mediums and glazing, layering and care of materials. Working both in the studio and plein air to create a still-life and landscape, the areas of sighting, linear and aerial perspective will be covered, allowing students to accurately paint what they see.\u003C/span>\u003C/p>\u003Cp>\u003C/p>\n                \u003Cp>\u003C/p>\u003Ch3 class=\"black\">Additional Information:\u003C/h3>\u003Cdiv style=\"font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255)\">\u003Cp>\u003Cspan style=\"letter-spacing: 0.2px; font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">List of Materials: All materials are provided for this offering.\u003C/span>\u003C/p>\u003Cp>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">Forms are required at the time of registration, click \u003C/span>\u003Ca style=\"color: blue !important; text-decoration: underline blue !important\" href=\"files/read?file=files/School Year Youth Program Forms.pdf\" target=\"_blank\">\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\">here\u003C/span>\u003C/a>\u003Cspan style=\"font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px; color: #000000\"> to access.\u003C/span>\u003C/p>\u003C/div>\u003Cp>\u003C/p>\n            \u003C/div>\n            \n            \n            \n            \u003Ctable class=\"course-details\">\n                \u003Cthead>\n                    \u003Ctr>\n                        \n        \u003Cth scope=\"col\" class=\"dates show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Dates\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"days show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Days\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"times show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Times\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"instructor\">\u003Ca onclick=\"return false;\" href=\"#\">Instructor\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Ages\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Fees\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"\">\u003Ca onclick=\"return false;\" href=\"#\">Details\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\" class=\"show-on-mobile\">\u003Ca onclick=\"return false;\" href=\"#\">Open\u003C/a>\u003C/th>\n    \n        \u003Cth scope=\"col\">\u003C/th>\n    \n                    \u003C/tr>\n                \u003C/thead>\n                \u003Ctbody>\n                    \u003Ctr>\n        \u003Ctd class=\"show-on-mobile\">9/24 – 10/29\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">Th\u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">04:30 PM – 06:30 PM\u003C/td>\n    \n        \u003Ctd>\u003Ca href=\"#FacultyDetail=75691\">Guerin, C.J.\u003C/a>\u003C/td>\n    \n        \u003Ctd class=\"\">13 - 18\u003C/td>\n    \n        \u003Ctd class=\"\">$340.00\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca id=\"lnkViewDetails\" href=\"#EventID=3065974\" eventid=\"3065974\">View\u003C/a>\n    \u003C/td>\n    \n        \u003Ctd class=\"show-on-mobile\">12\u003C/td>\n    \n        \u003Ctd class=\"\">\n        \u003Ca href=\"#\" id=\"lnkAddToShopCart\" itemtype=\"event\" hasrecurringfees=\"false\" data-recurring=\"\" defaultfeesum=\"$340.00\" openslots=\"12\" registertype=\"register\" onclick=\"return false;\" eventid=\"3065974\" isdetail=\"false\" scheduledeventfeeassnid=\"0\" class=\"button small check-2\" hasflexibleschedule=\"false\" ispickaday=\"false\" maxdays=\"0\">Register Now\u003C/a>\n    \u003C/td>\n    \u003C/tr>\n                \u003C/tbody>\n            \u003C/table>\n        \u003C/article>"} | headers=HTTPHeaderDict({'Content-Length': '4949', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:40 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:42 [selenium.webdriver.remote.remote_connection] DEBUG: DELETE http://localhost:46573/session/6da96bd5e711106170043987a6fdb485 {}
2026-08-05 01:31:42 [urllib3.connectionpool] DEBUG: http://localhost:46573 "DELETE /session/6da96bd5e711106170043987a6fdb485 HTTP/1.1" 200 0
2026-08-05 01:31:42 [selenium.webdriver.remote.remote_connection] DEBUG: Remote response: status=200 | data={"value":null} | headers=HTTPHeaderDict({'Content-Length': '14', 'Content-Type': 'application/json; charset=utf-8', 'cache-control': 'no-cache'})
2026-08-05 01:31:42 [selenium.webdriver.remote.remote_connection] DEBUG: Finished Request
2026-08-05 01:31:42 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:42 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:42 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:42 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=319166',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="319166">\n'
             '<h2><a class="lnkCourseDetails" courseid="319166" href="#" '
             'onclick="return false;">3D Felting: Sculpt Your Own Felted '
             'Creatures &amp; Creations</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/fa56da9b-7f05-444e-902f-73ccb970f700_GiulianoS_3DFeltingSculptFeltedCreaturesCreations.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Bring your imagination to life in this hands-on "
             'felting workshop! Learn how to build three-dimensional animals, '
             'characters, or decorative shapes using wool and felting tools. '
             'You’ll explore techniques for shaping, detailing, and adding '
             'personality to your creations—perfect for beginners and '
             'experienced makers alike.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/S.Giuliano 3D Felting '
             'Sculpt Your Own.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>S.Giuliano Supply List.pdf</span></a></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/21</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=137073">Giuliano, Samantha</a></td>\n'
             '<td class="">0 &amp; up</td>\n'
             '<td class="">$205.00</td>\n'
             '<td class="">\n'
             '<a eventid="3006464" href="#EventID=3006464" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$205.00" eventid="3006464" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">11/13</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=137073">Giuliano, Samantha</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$205.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066041" href="#EventID=3066041" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$205.00" eventid="3066041" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:42 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:42 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:42 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:42 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=243611',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="243611">\n'
             '<h2><a class="lnkCourseDetails" courseid="243611" href="#" '
             'onclick="return false;">A Lunch Bunch Experience</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/167148535674517_youth camp '
             '(93).jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style="text-align: left"><strong><em><span '
             "style='text-decoration: underline; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Enrollment in this program IS NOT automatic. You must "
             'call the office if you would like to enroll your '
             'child.</span></em></strong></p><p style="text-align: left"><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>A Lunch Bunch Experience "
             "is available\xa0</span><strong><em><span style='text-decoration: "
             'underline; font-size: 14px; font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; color: #000000\'>free of charge to '
             'campers participating in a full-day of camp '
             "only</span></em></strong><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>. Students participating in a half-day camp may "
             'enroll in the lunch period for a fee of $125, if spots are '
             "remaining.\xa0</span><strong><span style='text-decoration: "
             'underline; font-size: 14px; font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; color: #000000\'>Priority '
             'registration is given to full day campers.</span></strong></p><p '
             'style="text-align: left"><span style=\'font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>The period will be held in an outdoor setting "
             'allowing campers to eat lunch in a safe and supervised '
             'environment. If there is bad weather, students will eat '
             'indoors.\xa0Children will be able to have lunch, engage in free '
             'draw, small art projects and board games during the hour. The '
             'campers will be escorted to and from their lunch period by a '
             "camp assistant. </span><strong><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Campers should bring a nut-free lunch and "
             "something to drink. </span><u><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Silvermine Arts Center does not provide lunch or "
             'snacks.</span></u></strong></p><p></p>\n'
             '<p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/3</td>\n'
             '\n'
             '<td class="show-on-mobile">12:00 PM – 01:00 PM</td>\n'
             '<td>, </td>\n'
             '<td class="">3 - 18</td>\n'
             '<td class="">$0.00</td>\n'
             '<td class="">\n'
             '<a eventid="2961770" href="#EventID=2961770" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">4</td>\n'
             '<td class="">\n'
             '<span class="button disabled-2 small full center noicon" '
             'isdetail="false">READ ONLY</span>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">8/10</td>\n'
             '\n'
             '<td class="show-on-mobile">12:00 PM – 01:00 PM</td>\n'
             '<td>, </td>\n'
             '<td class="">3 - 18</td>\n'
             '<td class="">$0.00</td>\n'
             '<td class="">\n'
             '<a eventid="2961774" href="#EventID=2961774" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">1</td>\n'
             '<td class="">\n'
             '<span class="button disabled-2 small full center noicon" '
             'isdetail="false">READ ONLY</span>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">8/17</td>\n'
             '\n'
             '<td class="show-on-mobile">12:00 PM – 01:00 PM</td>\n'
             '<td>, </td>\n'
             '<td class="">3 - 18</td>\n'
             '<td class="">$0.00</td>\n'
             '<td class="">\n'
             '<a eventid="2961776" href="#EventID=2961776" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<span class="button disabled-2 small full center noicon" '
             'isdetail="false">READ ONLY</span>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:42 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:42 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:42 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:42 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=286312',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="286312">\n'
             '<h2><a class="lnkCourseDetails" courseid="286312" href="#" '
             'onclick="return false;">Abstract Landscapes &amp; '
             'Beyond</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/168313843820538_karpinskaianabstlandscp.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Abstract landscapes are inspired by what exists in real "
             'life but are intentionally different, with a focus on basic '
             'forms rather than literal interpretations. The natural world has '
             'always been a source of wonder and abstract landscapes offer a '
             'new way to see it. The approaches to creating an abstract '
             'landscape can include simplifying, flattening, or distorting the '
             'shapes: reducing the elements, changing naturalistic color to '
             'non-literal or symbolic choices, etc. No prior experience '
             'required. Suitable for artists who never painted landscapes and '
             'for experienced landscape painters.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='color: rgb(51, 51, 51); background-color: rgb(255, 255, "
             '255); letter-spacing: 0.2px; font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 12px\'>List of '
             'Materials:\xa0</span><a href="files/read?file=files/Summer 2023 '
             '/N.Karpinskaia Abstract Landscape  Beyond.pdf" style="color: '
             'blue !important; text-decoration: underline blue !important" '
             'target="_blank"><span style=\'color: rgb(51, 51, 51); '
             'background-color: rgb(255, 255, 255); letter-spacing: 0.2px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px'>N.Karpinskaia Supply "
             'List.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/22</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 03:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75698">Karpinskaia, '
             'Natasha</a></td>\n'
             '<td class="">18 - 99</td>\n'
             '<td class="">$305.00</td>\n'
             '<td class="">\n'
             '<a eventid="3006467" href="#EventID=3006467" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$305.00" eventid="3006467" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:42 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:42 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:42 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:42 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=168511',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="168511">\n'
             '<h2><a class="lnkCourseDetails" courseid="168511" href="#" '
             'onclick="return false;">Abstract Painting</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/177013530937881_karpinskiain_abstractpainting.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page" style="color: rgb(0, 0, 0); '
             'font-family: -webkit-standard; letter-spacing: normal"><div '
             'class="layoutArea"><div class="column"><p style="color: rgb(0, '
             '0, 0); font-family: -webkit-standard"><span style=\'font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>LEVEL: INTERMEDIATE - "
             "ADVANCED</span></p><div><p><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>This course will explore intellectual elements "
             'of abstraction, it is about ideas that are at the core of '
             'abstract imagery. It’s objective is to learn how to transfer '
             'experiences, concepts and perception of the real world into '
             'abstract images. We will experiment with color, shapes, lines, '
             'and texture. Some demos, exercises and discussions will also be '
             'included. The class is suitable for those who have taken '
             'introductory painting courses and have the desire to explore '
             'abstraction.</span><br/></p></div></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><div><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/N.Karpinskaia Abstract Painting.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'font-size: 12px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>N.Karpinskaia Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet 11/6, "
             '11/27*</span></em></strong></p></div><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/18</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75698">Karpinskaia, '
             'Natasha</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$555.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065949" href="#EventID=3065949" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$555.00" eventid="3065949" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:42 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:43 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:43 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=260018',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="260018">\n'
             '<h2><a class="lnkCourseDetails" courseid="260018" href="#" '
             'onclick="return false;">Abstract Painting: Dynamics of Symbols '
             'and Color in Composition</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/d33f1749-7e2c-4dfc-bd4b-336438aa0a54_6.9.2023(2).jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "ALL LEVELS</span></p><p><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Develop your own unique personal vision as an "
             'abstract painter and explore new ideas via the art of the '
             'creative process. Focus will be on the abstracted from the '
             'representative \xa0- figure, landscape or floral in applying '
             'one’s personal perception, temperament and aesthetical beauty '
             'for more expressive freedom in chosen subject. There will be '
             'presentations of color and compositional theory, in addition to '
             'playful exercises in working large.\xa0</span><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>S</span><i><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>tudents at all levels are welcome to work in any medium "
             'of their choice. Bring an Artist Journal and any supplies you '
             'are already working in.</span></i></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: rgb(0, 0, 0)'>List of "
             'Materials:\xa0</span><a href="files/read?file=files/D.Wright '
             'Courses.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: rgb(0, 0, 0)'>D.Wright Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: rgb(0, 0, 0)'>*Class will not meet "
             '11/25*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75734">Wright, Dmitri</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$605.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065915" href="#EventID=3065915" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$605.00" eventid="3065915" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75734">Wright, Dmitri</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$605.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065922" href="#EventID=3065922" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">9</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$605.00" eventid="3065922" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="9" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:43 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:43 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=191690',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="191690">\n'
             '<h2><a class="lnkCourseDetails" courseid="191690" href="#" '
             'onclick="return false;">Acrylic Abstract Painting</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/164391884478245_01_aleksandr_razin_abstractpainting.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page" style="color: rgb(0, 0, 0); '
             'letter-spacing: normal"><div class="layoutArea"><div '
             'class="column"><p style="font-family: -webkit-standard"><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>LEVEL: INTERMEDIATE - "
             "ADVANCED</span></p><p><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Students will develop a working knowledge of abstract "
             'painting that challenges them to see and interpret in new ways. '
             'Using acrylics students will learn color, line, texture, '
             'movement, and form, through individual instruction. </span><span '
             "style='background: white; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Creating a new painting is a challenging\xa0and unique "
             'experience, involving constant experimentation with intuition '
             'and automatism, taking you on a multidimensional journey of '
             'self-discovery.</span></p></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><div '
             'class="page"><div class="layoutArea"><div '
             'class="column"><div><p><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>List of Materials:\xa0</span><a "
             'href="files/read?file=files/A.Razin Acrylic Abstract '
             'Painting.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>A.Razin Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>*Class will not meet "
             '11/26*</span></em></strong></p></div></div></div></div><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75720">Razin, Aleksandr</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$605.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065940" href="#EventID=3065940" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$605.00" eventid="3065940" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:43 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:43 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321509',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321509">\n'
             '<h2><a class="lnkCourseDetails" courseid="321509" href="#" '
             'onclick="return false;">Acrylic Painting: Still Life (Ages: '
             '12-14)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/5a4038ea-0768-45b1-91d4-8620fc5a60e0_E.Harvey4.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Beginner to intermediate acrylic painting class "
             'going over the basics of acrylic paint, how to start and '
             'manipulate this medium. Create a composition from life '
             'observation, a classic painting study. Students use brushes, '
             'palette knives, analyze color, and mix paint to create their own '
             'image. The course encourages group critique and discussion, and '
             'provides one on one instructor feedback.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Please pack a water "
             'bottle as well as a peanut free snack</span></p><p '
             'class="MsoNormal" style="line-height: normal"><span '
             "style='letter-spacing: .15pt; background: white; font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Studio Attire: Acrylic paint can "
             'stain clothing, please wear clothing you do not mind painting in '
             'or wear an apron. Additionally, please wear closed toed '
             "shoes.</span></p><p><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Camp forms are required at the time of registration, "
             'click </span><a href="files/read?file=files/SAC Summer Art '
             'Studios Forms 2026.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; color: #000000; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>Please review our Summer Art Studio withdrawal "
             '&amp; reimbursement policies </span></em></strong><a '
             'href="files/read?file=files/Summer Art Policies PDF-1-7-26.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/3</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=125261">Harvey, Evelyn</a></td>\n'
             '<td class="">12 - 15</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2957942" href="#EventID=2957942" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">6</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2957942" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="6" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:43 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:43 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=191532',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="191532">\n'
             '<h2><a class="lnkCourseDetails" courseid="191532" href="#" '
             'onclick="return false;">All Levels: Metal Sculpture</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/634a1628-ff71-4456-a3bc-13f45d431fa7_Artwork.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page" style="color: rgb(0, 0, 0); '
             'font-family: -webkit-standard; letter-spacing: normal"><div '
             'class="layoutArea"><div class="column"><p><span '
             "style='letter-spacing: normal; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>LEVEL: ALL LEVELS</span></p><p><span "
             "style='letter-spacing: normal; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>All levels will learn the methods and techniques to "
             'create traditional, contemporary and functional '
             'three-dimensional pieces of art. There will be demonstrations of '
             'various pieces of equipment, including oxy-acetylene and '
             'electric arc welding. Among many other lessons, forging, will '
             'introduce students to the concept of annealing and hardening of '
             'metal. Students should wear work boots, long sleeved cotton '
             'clothing, and bring work gloves. Long hair must be tied back. '
             'Materials will be discussed at the first class.\xa0'
             '</span></p></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             'Materials for a first-day guided project are included. For '
             'subsequent projects, students will supply their own metals, with '
             'a vendor list provided by the instructor to support purchasing '
             'appropriate materials for personalized '
             "projects.</span></p><p><strong><em><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>*Monday's classes will not meet 9/21, "
             "Wednesday's classes will not meet "
             '11/25*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/14</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=138340">Perucci, Robert</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$660.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066085" href="#EventID=3066085" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">3</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$660.00" eventid="3066085" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="3" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/14</td>\n'
             '\n'
             '<td class="show-on-mobile">06:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=138340">Perucci, Robert</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$660.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065896" href="#EventID=3065896" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">5</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$660.00" eventid="3065896" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="5" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=138340">Perucci, Robert</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$660.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065916" href="#EventID=3065916" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">2</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$660.00" eventid="3065916" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="2" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=138340">Perucci, Robert</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$660.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065923" href="#EventID=3065923" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">2</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$660.00" eventid="3065923" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="2" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:43 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:43 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=316561',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="316561">\n'
             '<h2><a class="lnkCourseDetails" courseid="316561" href="#" '
             'onclick="return false;">Art Explorers: Mixed Media Adventures '
             '(Ages: 6-9)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/175553014338856_watersn_explorersmixedmedia.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Young artists will dive into a world of "
             'creativity in this playful and engaging mixed media course. '
             'Using materials like paint, pencil, pastels, fabric, and clay, '
             'students will explore painting, drawing, collage, and sculpture '
             'while learning about different themes and art styles. Each '
             'project encourages imagination and self-expression, while gently '
             'building technical skills in a fun, supportive studio '
             'environment. Perfect for curious minds who love to make, mix, '
             'and create!</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: All "
             'materials are provided for this '
             "offering.</span></p><p><strong><em><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>*Class will not meet "
             '11/26*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">04:30 PM – 06:30 PM</td>\n'
             '<td><a href="#FacultyDetail=132562">Waters, Nell</a></td>\n'
             '<td class="">6 - 10</td>\n'
             '<td class="">$530.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065944" href="#EventID=3065944" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$530.00" eventid="3065944" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:43 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:43 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328453',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328453">\n'
             '<h2><a class="lnkCourseDetails" courseid="328453" href="#" '
             'onclick="return false;">Art Mashup Mondays (Ages: '
             '8-11)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: none;">\n'
             '<a href="#"><img alt="{imageAltText}" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" src="" style="display: '
             'none;"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Get ready to mix it up and get creative! Art "
             'Mashup Mondays is a fun, hands-on art class where young artists '
             'explore a different medium and project each week. From painting '
             'and drawing to sculpture, collage, mixed media, and more, every '
             'class offers a new creative adventure. Students will learn about '
             'a variety of artists, art styles, and cultural art forms, '
             'drawing inspiration from everything under the sun! Students will '
             'experiment with a variety of materials and techniques while '
             'developing artistic skills, self-expression, problem-solving, '
             'and confidence. Projects are designed to be engaging, '
             'age-appropriate, and open-ended, allowing each child to bring '
             'their own unique ideas to life. Whether your child loves to '
             'paint, build, draw, or simply create, Art Mashup Mondays '
             'provides a supportive environment where imagination can thrive '
             'and every week brings something new to '
             'discover.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             "checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: All materials are provided "
             'for this offering.</span></p><p><strong><em><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>*Class will not meet "
             '10/12, 10/19*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/28</td>\n'
             '\n'
             '<td class="show-on-mobile">04:30 PM – 06:30 PM</td>\n'
             '<td><a href="#FacultyDetail=132562">Waters, Nell</a></td>\n'
             '<td class="">8 - 12</td>\n'
             '<td class="">$420.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065981" href="#EventID=3065981" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$420.00" eventid="3065981" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:43 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:43 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321425',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321425">\n'
             '<h2><a class="lnkCourseDetails" courseid="321425" href="#" '
             'onclick="return false;">August Light in Landscape Painting: '
             'Mixed Media Painting on Canvas, Drawing, Clay (Ages: '
             '5-10)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/b8d279e1-e490-4730-bd7d-479b8672b7b9_KotM_AugustLightLandscapePainting '
             'Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Where '
             "painting and clay sculpting are included every week, mARTa's "
             'Summer Art Studio encourages open ended experimentation, '
             'creative expression, exploration, and appreciation, of art. '
             'While building friendships and learning about the properties of '
             'art materials, children are guided to engage with imagination, '
             'and to contribute meaning to artwork. They will be introduced to '
             'a variety of techniques while exploring play in art, and they '
             'will develop their creative abilities to self-express and see '
             'and experience the world in new ways. Each day will include a '
             'variety of materials, surprises, outdoor recess with games and '
             'stories about well-known artists. Art materials may include '
             'watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, '
             'things that shine, beads, paint markers, more. Gentle '
             'discussions about the artwork in progress and art history will '
             'be introduced.</span></p><p class="MsoNormal"><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Throughout the week "
             'children may work in the art studio, explore the lush Silvermine '
             'outdoor environment, and visit the Silvermine galleries &amp; '
             "exhibitions. mARTa's sensory rich studio environment is designed "
             "to make one's learning more complex while supporting imagination "
             "and play in a caring environment. It's a place where children "
             'will develop meaningful connections to self and their '
             'ever-changing surrounding environment. All materials will be '
             'supplied.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Please pack a peanut free "
             'snack and drink. Please bring a sturdy container or box, labeled '
             'with student’s first &amp; last name to transport clay objects '
             "home.</span></p><p><span style='font-size: 12px; color: #000000; "
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Camp forms are required at the time of registration, "
             'click </span><a href="files/read?file=files/SAC Summer Art '
             'Studios Forms 2026.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; color: #000000; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>Please review our Summer Art Studio withdrawal "
             '&amp; reimbursement policies </span></em></strong><a '
             'href="files/read?file=files/Summer Art Policies PDF-1-7-26.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/17</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2957236" href="#EventID=2957236" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2957236" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="0" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:43 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:43 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328454',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328454">\n'
             '<h2><a class="lnkCourseDetails" courseid="328454" href="#" '
             'onclick="return false;">Autumn Flowers: Mixed Media Painting '
             '(Ages: 5-10)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/8fba0117-3c1b-4ab1-b271-98e94682a047_KotM_AutumnFlowersMixedMedia '
             'Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Practice sketching and drawing and create a "
             'beautiful painting using a variety of materials. Seasonal '
             'flowers will be taken apart with personal meaning and '
             'imagination.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>List of Materials: All materials are provided "
             'for this offering. Please bring a peanut '
             'free-snack.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/17</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$175.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066005" href="#EventID=3066005" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">15</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$175.00" eventid="3066005" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="15" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:43 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:43 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=322668',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="322668">\n'
             '<h2><a class="lnkCourseDetails" courseid="322668" href="#" '
             'onclick="return false;">Bas Relief Casting from Nature</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/8393a2e5-2ce4-4560-bdf0-ed5465ff6eb2_HyonN_BasReliefCasting.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000; font-size: 14px'>During "
             'this one day workshop students will be introduced to bas (low) '
             'relief casting using clay, plaster and actual plant materials. '
             'The form and texture of the plant emerges from a smooth '
             'background creating a subtle impression. Each student will '
             'create one 5" x 7" relief - display and finishing will also be '
             'covered.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>Students should "
             "bring:</span></p><ul><li><p><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>Small vegetable oil or "
             "Vaseline</span></p></li><li><p><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>Plant materials</span></p></li><li><p><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>Face "
             "masks</span></p></li><li><p><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>Nice to have: </span><span style='line-height: 107%; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px; color: #000000'>tweezers, "
             "hammer</span></p></li><li><p><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>Tape</span></p></li></ul><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/15</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 03:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$300.00</td>\n'
             '<td class="">\n'
             '<a eventid="3006460" href="#EventID=3006460" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">9</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$300.00" eventid="3006460" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="9" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">10/3</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 03:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$300.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065988" href="#EventID=3065988" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">9</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$300.00" eventid="3065988" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="9" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:43 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:44 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:44 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=191505',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="191505">\n'
             '<h2><a class="lnkCourseDetails" courseid="191505" href="#" '
             'onclick="return false;">Basic Drawing &amp; Painting</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/4bdfd9b2-4d2a-425c-ae7f-4b01770bc5e8_Guerin.C.J_BasicDrawingPainting.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p style='color: rgb(0, 0, 0); font-size: medium; "
             'font-family: "Times New Roman", serif; letter-spacing: '
             "normal'><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>LEVEL: '
             "BEGINNER</span></p><p style='color: rgb(0, 0, 0); font-size: "
             'medium; font-family: "Times New Roman", serif; letter-spacing: '
             "normal'><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>This course is for the '
             'beginner or returning student to learn the fundamentals of '
             'drawing and painting. We begin with basic sketching techniques '
             'enabling students to accurately record what they see, and the '
             'second half of the course will introduce painting, color mixing, '
             'paint application, glazing, texture, and aerial and linear '
             'perspective. These sessions will be aimed at creating a still '
             'life and landscape.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><div><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials:\xa0</span><a "
             'href="files/read?file=files/C.Guerin Basic Painting  '
             'Drawing.pdf" style="text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>C.Guerin Supply List.pdf</span></a></p></div><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/24</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75691">Guerin, C.J.</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$365.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065973" href="#EventID=3065973" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$365.00" eventid="3065973" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 201 5966
2026-08-05 01:31:44 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=166014',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="166014">\n'
             '<h2><a class="lnkCourseDetails" courseid="166014" href="#" '
             'onclick="return false;">Basic Jewelry &amp; '
             'Silversmithing</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/164381336788002_capture.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='letter-spacing: 0.2px; white-space: "
             'pre-wrap; background-color: rgb(255, 255, 255); font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>LEVEL: BEGINNER</span></p><p><span "
             "style='letter-spacing: 0.2px; white-space: pre-wrap; "
             'background-color: rgb(255, 255, 255); font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>This introductory class is perfect for anyone "
             'who wishes to explore the art of jewelry fabrication. Through '
             'demonstrations and hands-on experience, students will be taught '
             'basic metalsmithing and jewelry skills. The focus will be on '
             'learning these fundamentals – sawing, drilling, filing, '
             'riveting, soldering, basic bezel construction, and finishing. '
             'Sawing, one of the first tasks can be initially challenging - '
             'however, it is a critical element of metal fabrication. '
             '<br/>Projects are tailored to build proficiency with techniques '
             'and tools. The first is a cold connection, riveted design for '
             'acquiring basic competence with tools and processes, followed by '
             'bezel fabrication for a cabochon. No experience necessary. '
             'Students who already have some skills will be able to expand '
             'their craft with new and different projects.  '
             '</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><div><p><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>List of Materials: </span><a "
             'href="files/read?file=files/G.Bradshaw Basic Jewelry  '
             'Silversmithing.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>G.Bradshaw Supply List.pdf</span></a></p></div><p><span "
             "style='letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Open Studio: </span><a "
             'href="files/read?file=files/OpenStudio_Jewelry_SP2026.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'letter-spacing: '
             '0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>Open Studio '
             'Spring 2026 - Jewelry.pdf</span></a></p><p><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>*Monday's class "
             'will not meet 9/21, '
             '10/12*</span></em></strong></p><p><strong><em><span '
             "style='letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>*Thursday's class will not meet "
             '11/26*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/14</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75667">Bradshaw, Gail</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$575.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066017" href="#EventID=3066017" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">5</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$575.00" eventid="3066017" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="5" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=103494">Henriques, Maureen</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$625.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065937" href="#EventID=3065937" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">5</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$625.00" eventid="3065937" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="5" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:44 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:44 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=196359',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="196359">\n'
             '<h2><a class="lnkCourseDetails" courseid="196359" href="#" '
             'onclick="return false;">Basic Techniques of '
             'Watercolors</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/92d1ed5c-0f2a-45ea-b492-90a1cc64aeb6_WC_Beach_View_Smaller '
             'for watercolor.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "BEGINNER - INTERMEDIATE</span></p><p><span style='font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>This course is for beginners and "
             'experienced students who want to progress.\xa0Watercolor '
             'painting is about technical skills that can be learned.\xa0There '
             'will be a demonstration at the beginning of each class.\xa0How '
             'to relax and be comfortable while using watercolors is '
             'encouraged.\xa0In addition, inventive compositions for still '
             'life, figure and landscape will be '
             'encouraged.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><div><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials:\xa0</span><a "
             'href="files/read?file=files/A.McFarlane%20%20Basic%20Techniques%20of%20Watercolors.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'font-size: 12px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>A.McFarlane Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet "
             '9/21*</span></em></strong></p></div><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/14</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75707">McFarlane, Alex</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$605.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066080" href="#EventID=3066080" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$605.00" eventid="3066080" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:44 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:44 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=280406',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="280406">\n'
             '<h2><a class="lnkCourseDetails" courseid="280406" href="#" '
             'onclick="return false;">Beginner Metalsmithing Camp (Ages: '
             '10-14)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/167180973397502_img_6491.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='letter-spacing: 0.2px; background-color: "
             'rgb(255, 255, 255); font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Learn '
             'the basics of metalsmithing and jewelry making! We will explore '
             'techniques including sawing, filing, texturing, fusing, '
             'soldering, and finishing of metal pieces. You will also learn '
             'about cold connections, such as riveting and wire wrapping. '
             'Studio safety, setup, and guidelines for all techniques taught '
             'will be stressed throughout the week.\xa0</span><em><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Students are required to "
             'wear closed-toed shoes, and long hair must be tied '
             "back.</span></em></p><p><em><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Required "
             "Attire:</span></em></p><ul><li><p><em><span style='font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Close toed shoes (no "
             "sandals)</span></em></p></li><li><p><em><span style='font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Tee shirts (no tank "
             "tops)</span></em></p></li><li><p><em><span style='font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Pants (no "
             "shorts)</span></em></p></li><li><p><em><span style='font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Long hair must be tied "
             'back</span></em></p></li></ul><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><div><p><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Camp forms are required at the time of registration, "
             'click </span><a href="files/read?file=files/SAC Summer Art '
             'Studios Forms 2026.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; color: #000000; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>Please review our Summer Art Studio withdrawal "
             '&amp; reimbursement policies </span></em></strong><a '
             'href="files/read?file=files/Summer Art Policies PDF-1-7-26.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p></div><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/17</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=103494">Henriques, Maureen</a></td>\n'
             '<td class="">10 - 15</td>\n'
             '<td class="">$515.00</td>\n'
             '<td class="">\n'
             '<a eventid="2957007" href="#EventID=2957007" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$515.00" eventid="2957007" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-7" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:44 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:44 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328455',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328455">\n'
             '<h2><a class="lnkCourseDetails" courseid="328455" href="#" '
             'onclick="return false;">Beginner\'s Sketchbook</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/c03e2600-ff8f-4fc8-9d70-f0b132395aaa_HarveryE_BeginnersSketchbook.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>LEVEL: BEGINNER</span></p><p><span "
             "style='line-height: 115%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Find a '
             'medium the speaks to you! In this 5 week course, explore the '
             'variety of drawing mediums and mark making tools with charcoal, '
             'pen, ink, and pencil. The course focuses on the expressive '
             'sensation of creating the line, as well as, reviewing technical '
             'skills of observational drawing. Each week focuses on a new '
             'medium and/or technique such as line quality, value, relative '
             'scale, and composition. One on one feedback is given, and group '
             'discussion is encouraged.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             "checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/E.Harvey Beginners Sketchbook.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'font-size: 12px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>E.Harvey Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet "
             '11/25*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=125261">Harvey, Evelyn</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$325.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065924" href="#EventID=3065924" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$325.00" eventid="3065924" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">10/28</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=125261">Harvey, Evelyn</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$325.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066023" href="#EventID=3066023" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$325.00" eventid="3066023" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:44 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:44 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=168502',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="168502">\n'
             '<h2><a class="lnkCourseDetails" courseid="168502" href="#" '
             'onclick="return false;">Beyond a Pretty Picture</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/144900_electric_room.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page" style="color: rgb(0, 0, 0); '
             'font-family: -webkit-standard; letter-spacing: normal"><div '
             'class="layoutArea"><div class="column"><p><span style=\'color: '
             'rgb(0, 0, 0); letter-spacing: normal; font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>LEVEL: ALL LEVELS</span></p><p><span style='color: "
             'rgb(0, 0, 0); letter-spacing: normal; font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>You know you are good, but how do you get your "
             'painting to look like the vision in your head? This is tailored '
             'to the individual, from how you think about art to how you '
             'develop a personalized statement. Learn to analyze your vision '
             'and find a seamless balance between concept, composition and '
             'technique.</span></p></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><div><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: rgb(0, 0, 0)'>List of Materials:\xa0</span><a "
             'href="files/read?file=files/A.McFarlane%20Beyond%20a%20Pretty%20Picture.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'font-size: 12px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: rgb(0, 0, 0)'>A.McFarlane Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: rgb(0, 0, 0)'>*Class will not meet "
             '11/26*</span></em></strong></p></div><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 10:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75707">McFarlane, Alex</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$605.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065945" href="#EventID=3065945" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$605.00" eventid="3065945" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:44 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:44 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=302318',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="302318">\n'
             '<h2><a class="lnkCourseDetails" courseid="302318" href="#" '
             'onclick="return false;">Beyond Basics: Going Further in your '
             'Metalsmithing Journey</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/05aa9d55-5e8b-44ea-961b-25d6e19d0266_Henriques.M_BeyondBasics.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "BEGINNER-INTERMEDIATE</span></p><p><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Want to take your skills further, but not sure "
             'if you are ready to dive into full intermediate? Then the class '
             'is for you!</span></p><p class="p1" style="margin: 0in; '
             'margin-bottom: .0001pt"><span style=\'font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>This class guides students as they transition "
             'from beginner level metalsmithing techniques, to a more advanced '
             'level of design and fabrication. Building upon foundational '
             'metalsmithing techniques, this class will elevate your existing '
             'skills and prepare you for intermediate jewelry projects. '
             'Students will work on more complex, instructor-guided projects, '
             'furthering their fabrication skills, craftsmanship and design '
             'sense. Projects will be more challenging, and may include '
             'mechanisms such as hinges, clasps, findings, and surface design '
             'techniques.</span></p><p class="p1" style="margin: 0in; '
             'margin-bottom: .0001pt"><span style=\'font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             'color: #000000\'>\xa0</span></p><p class="p1" style="margin: '
             '0in; margin-bottom: .0001pt"><span style=\'font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>We will move through assigned projects but there "
             'will be plenty of room for creativity and exploration of what is '
             'specifically interesting to you. Be prepared to learn tips and '
             'tricks that will help you span the gap between beginner and '
             'intermediate levels!</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><b><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Please "
             "note:</span></b><span style='font-size: 12px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>\xa0Students MUST have completed at least two terms of "
             'Beginner Metalsmithing to take this class.</span></p><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/G.Bradshaw Basic Jewelry  '
             'Silversmithing.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>M.Henriques Supply List.pdf</span></a></p><p><span "
             "style='letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Open Studio: </span><a "
             'href="files/read?file=files/Open Studio Winter 2025 - '
             'Jewelry.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             "style='letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Open Studio Winter 2025 - "
             'Jewelry.pdf</span></a></p><p><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>*Class will not "
             'meet 11/27*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/18</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=103494">Henriques, Maureen</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$610.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065950" href="#EventID=3065950" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">4</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$610.00" eventid="3065950" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="4" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:44 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:44 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=326040',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="326040">\n'
             '<h2><a class="lnkCourseDetails" courseid="326040" href="#" '
             'onclick="return false;">Big Ink!</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/820976e3-0979-40fb-b0db-5228e403dd82_McTagueStockN_BigInk.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style="margin-top: 0in; margin-right: 0in; '
             'margin-bottom: .1pt; margin-left: 0in; line-height: '
             '20.0pt"><span style=\'font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Join '
             'me as we explore using different tools to create larger scale '
             'ink compositions in abstract formats! I will introduce you to '
             'new thoughts to assist you in broadening your horizons working '
             'in black on white paper!</span></p><p style="margin-top: 0in; '
             'margin-right: 0in; margin-bottom: .1pt; margin-left: 0in; '
             'line-height: 20.0pt"><span style=\'font-size: 14px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>This workshop is perfect for people wishing to expand "
             '(literally!) the sizes of their pen &amp; ink drawing work in a '
             'way that is loose, intuitive and contemporary. Perfect for '
             'beginners or for those who have enjoyed my realism ink '
             'courses!</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new programs at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/N.McTague-Stock Big Ink.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'font-size: 12px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>N.McTague-Stock Supply "
             'List.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/20</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75708">McTague-Stock, '
             'Nancy</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$115.00</td>\n'
             '<td class="">\n'
             '<a eventid="3006463" href="#EventID=3006463" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">17</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$115.00" eventid="3006463" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="17" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:44 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:44 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=168503',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="168503">\n'
             '<h2><a class="lnkCourseDetails" courseid="168503" href="#" '
             'onclick="return false;">Big Picture: Choose Your Theme Figure, '
             'Landscape, or Still Life</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/145427_the_last_supper.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page"><div class="layoutArea"><div '
             'class="column"><p><span style="font-size: 14px; color: '
             '#000000">LEVEL: ALL LEVELS</span></p><p><span style=\'font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>This course is ideal for someone who "
             'wants to start, execute and finish a major painting or drawing. '
             'For the still life artist, there will be an individual set-up '
             'tailored to meet his or her needs.\xa0The landscape artist will '
             'learn how to create compelling compositions while developing '
             'atmosphere and mood – summer, winter, day, night.\xa0The figural '
             'artist will be personally guided through the narrative process '
             'using photographic resources.\xa0There will be regular '
             'demonstrations throughout the '
             'course.</span></p></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><div><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: rgb(0, 0, 0)'>List of Materials:\xa0</span><a "
             'href="files/read?file=files/A.McFarlane%20Big%20Picture.pdf" '
             'style="text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>A.McFarlane '
             'Supply List.pdf</span></a></p><p><strong><em><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>*Class will not meet "
             '11/25*</span></em></strong></p></div><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75707">McFarlane, Alex</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$605.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065925" href="#EventID=3065925" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$605.00" eventid="3065925" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:44 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:44 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321409',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321409">\n'
             '<h2><a class="lnkCourseDetails" courseid="321409" href="#" '
             'onclick="return false;">Blooming Fairy Gardens (Ages: '
             '4-7)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/9d72b3a4-1262-408a-b19e-978b12006d90_BloomL_BloomingFairyGardens.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Step into an enchanted world where imagination "
             'blooms! Young dreamers are invited to explore a magical Fairy '
             'World as they spend the week designing, building, and nurturing '
             'their very own fairy gardens. Campers will create potions, craft '
             'whimsical treasures, and discover the magic hidden in nature. '
             'End the week with Slime Time Friday!</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Parents: Please pack a "
             'water bottle as well as a peanut free snack.</span></p><p><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Camp forms are '
             'required at the time of registration, click </span><a '
             'href="files/read?file=files/SAC Summer Art Studios Forms '
             '2026.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>here</span></a><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'> to '
             "access.</span></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "background-color: #ffffff; font-size: 13px'>Please review our "
             'Summer Art Studio withdrawal &amp; reimbursement policies '
             '</span></em></strong><a href="files/read?file=files/Summer Art '
             'Policies PDF-1-7-26.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><strong><em><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             'background-color: #ffffff; font-size: '
             "13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/3</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=113806">Bloom, Lori</a></td>\n'
             '<td class="">4 - 8</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2956962" href="#EventID=2956962" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">3</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2956962" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="3" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:44 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:45 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:45 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=309086',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="309086">\n'
             '<h2><a class="lnkCourseDetails" courseid="309086" href="#" '
             'onclick="return false;">Botanical Printing: An Exploration of '
             'Eco Printing</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/a8f02f03-10b4-43a5-a118-abb97bf1470e_Pecquex '
             'B._ Exploration of Eco Printing Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "ALL LEVELS</span></p><p><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Plant materials offer an abundant and inspiring "
             'source for artistic creation, with endless possibilities to '
             'incorporate the beauty of nature into creative projects. In this '
             'course, we will explore a variety of techniques to integrate '
             'botanical elements into art, focusing on methods that produce '
             'the most vibrant and successful prints. Through an in-depth '
             'study of Eco Printing, the classes will cover; creating natural '
             'plant dyes, bundle dyeing, and the processes of scouring and '
             'mordanting fabric to prepare it for bonding with plant '
             'materials. The result will be stunning, one-of-a-kind prints '
             'that celebrate the artistry of nature.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Please view additional "
             'course details </span><a href="files/read?file=files/B.Pecquex '
             'Botanical Printing Exploration of Eco-Printing Additional '
             'Info.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>here</span></a><span "
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>.</span></p><p><span "
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>All materials are "
             'provided and included in the class price for this '
             'offering.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">02:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=128327">Pecquex, Bonnee</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$385.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065910" href="#EventID=3065910" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$385.00" eventid="3065910" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">10/27</td>\n'
             '\n'
             '<td class="show-on-mobile">02:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=128327">Pecquex, Bonnee</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$385.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066021" href="#EventID=3066021" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$385.00" eventid="3066021" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:45 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:45 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=197762',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="197762">\n'
             '<h2><a class="lnkCourseDetails" courseid="197762" href="#" '
             'onclick="return false;">Broaden the View - Exploring '
             'Mediums</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/8c342b6e-19b1-4f11-a338-1ba1091ad4de_GuerinCJ_BroadentheViewExploringMediums.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='color: rgb(0, 0, 0); letter-spacing: "
             'normal; font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif'>LEVEL: ALL LEVELS</span></p><p><span "
             "style='line-height: 106%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>This '
             'class will move beyond the usual ways of image making in '
             'landscape and still life. We’ll expand our ways of “seeing” '
             'through drawing, painting, collage, and 3D giving new '
             'possibilities to our inner expression. There will be time, '
             'during the sessions, for students to pursue their own work with '
             'the teacher’s guidance . This class is an opportunity to '
             'overcome any artist block, and explore. All levels welcome in '
             'oil, or any water based mediums.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials:\xa0"
             'Your usual sketch tools and painting materials, including any '
             'photo images (printed out please) that you wish to explore. The '
             'teacher will supply any additionally needed '
             'materials.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/24</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75691">Guerin, C.J.</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$365.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065971" href="#EventID=3065971" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$365.00" eventid="3065971" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:45 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:45 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328747',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328747">\n'
             '<h2><a class="lnkCourseDetails" courseid="328747" href="#" '
             'onclick="return false;">Bronze Casting Class</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/df0e71f5-8c0f-4a6d-85b6-a80ba39cfcb5_PerucciR_BronzeCastingClass.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Master '
             'the art of transforming wax into stunning bronze sculptures and '
             'functional pieces. Learn small scale mold-making, pouring '
             'techniques, finishing, and patina application. Perfect for '
             'artists, hobbyists, and makers looking to explore this timeless '
             'metalworking craft. Limited spots available.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             'checkout.</span></strong></p><p><span style="color: rgb(0, 0, '
             '0); font-family: Arial; font-size: 12px; letter-spacing: 0.2px; '
             'background-color: rgb(255, 255, 255)">A bronze fee '
             "deposit</span><span style='font-size: 12px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'> is '
             '</span><span style="color: rgb(0, 0, 0); font-family: Arial; '
             'font-size: 12px; letter-spacing: 0.2px; background-color: '
             'rgb(255, 255, 255)">included in the price. Additional fees apply '
             'for students who exceed the deposit amount. Credits will be '
             'applied for students who do not meet the firing fee deposit '
             "total. </span><span style='font-size: 12px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Fee is '
             'for all bronze including gating once your artwork is poured. Fee '
             'depends on weight and market value of the bronze. Additional '
             'fees must be paid at the end of the semester.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=138340">Perucci, Robert</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$1,105.00</td>\n'
             '<td class="">\n'
             '<a eventid="3072600" href="#EventID=3072600" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">3</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$1,105.00" eventid="3072600" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="3" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:45 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:45 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=294702',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="294702">\n'
             '<h2><a class="lnkCourseDetails" courseid="294702" href="#" '
             'onclick="return false;">Building a House of Hogwarts: Wood, '
             'Paint, &amp; Clay (Ages: 5-10)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/efabd37f-4cf2-477a-ae57-396a9b6edb79_KotM_BuilingHouseofHogwart.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>Where "
             "painting and clay sculpting are included every week, mARTa's "
             'Summer Art Studio encourages open ended experimentation, '
             'creative expression, exploration, and appreciation, of art. '
             'While building friendships and learning about the properties of '
             'art materials, children are guided to engage with imagination, '
             'and to contribute meaning to artwork. They will be introduced to '
             'a variety of techniques while exploring play in art, and they '
             'will develop their creative abilities to self-express and see '
             'and experience the world in new ways. Each day will include a '
             'variety of materials, surprises, outdoor recess with games and '
             'stories about well-known artists. Art materials may include '
             'watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, '
             'things that shine, beads, paint markers, more. Gentle '
             'discussions about the artwork in progress and art history will '
             'be introduced.</span></p><p class="MsoNormal"><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 14px; color: #000000'>Throughout the week "
             'children may work in the art studio, explore the lush Silvermine '
             'outdoor environment, and visit the Silvermine galleries &amp; '
             "exhibitions. mARTa's sensory rich studio environment is designed "
             "to make one's learning more complex while supporting imagination "
             "and play in a caring environment. It's a place where children "
             'will develop meaningful connections to self and their '
             'ever-changing surrounding environment. All materials will be '
             'supplied.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Please pack a peanut free "
             'snack and drink. Please bring a sturdy container or box, labeled '
             'with student’s first &amp; last name to transport clay objects '
             "home.</span></p><p><span style='font-size: 12px; color: #000000; "
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Camp forms are required at the time of registration, "
             'click </span><a href="files/read?file=files/SAC Summer Art '
             'Studios Forms 2026.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; color: #000000; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>Please review our Summer Art Studio withdrawal "
             '&amp; reimbursement policies </span></em></strong><a '
             'href="files/read?file=files/Summer Art Policies PDF-1-7-26.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/3</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2957252" href="#EventID=2957252" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2957252" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-4" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:45 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:45 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=277878',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="277878">\n'
             '<h2><a class="lnkCourseDetails" courseid="277878" href="#" '
             'onclick="return false;">Center Yourself! Clear your Mind and '
             'Create with Clay</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/166697733534562_dreypottery2.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style="background: white"><span style=\'font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>LEVEL: BEGINNER</span></p><p "
             'style="background: white"><span style=\'color: rgb(32, 33, 36); '
             'letter-spacing: 0.15pt; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif\'>This class is designed '
             'for both the beginner with a desire to learn the basics of '
             'working with clay, and any other students who may feel like they '
             "don't quite fit into an intermediate class just yet. We will "
             "explore the fundamentals of using the potter's wheel to create "
             'thrown forms and offer those with some experience a great space '
             'to hone and reinforce their skills. This class will also provide '
             'some guidance on basic hand building techniques that will allow '
             "students to create pieces without the potter's wheel. Thrown, "
             'pinched, coiled, or slab built. Clear your mind and create with '
             'clay!</span></p><p style="background: white"><strong><span '
             "style='color: rgb(32, 33, 36); letter-spacing: 0.15pt; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 14px'>This program is for students in the early "
             'stages of ceramic education. Those with two or more years of '
             'experience should consider other programs. </span><span '
             "style='text-decoration: underline; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: '
             "14px'>Intermediate and advanced students should not enroll and "
             'may be removed from the roster if '
             'necessary</span></strong></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style="color: rgb(0, 0, 0); font-family: Arial; font-size: 12px; '
             'letter-spacing: 0.2px; background-color: rgb(255, 255, 255)">A '
             'firing fee deposit is included in the price. Additional fees '
             'apply for students who exceed the deposit amount. Credits will '
             'be applied for students who do not meet the firing fee deposit '
             'total. Firing fees are not refundable regardless of the outcome '
             'of the piece of artwork.</span></p><p style="background-color: '
             'rgb(255, 255, 255)"><span style=\'font-size: 12px; color: rgb(0, '
             '0, 0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>List of Materials:\xa0</span><span "
             "style='line-height: 12.84px; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Tool Kits &amp; Clay are available for purchase in "
             "class</span></p><p><span style='letter-spacing: 0.15pt; "
             'font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif\'>Open Studio: </span><a '
             'href="files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'letter-spacing: '
             '0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>Open Studio '
             'Fall 2026 - Ceramics.pdf</span></a></p><p><strong><em><span '
             "style='letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>*Class will not meet 9/30, "
             '11/25*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">04:00 PM – 07:00 PM</td>\n'
             '<td><a href="#FacultyDetail=113836">Reynolds, Don</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$690.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065930" href="#EventID=3065930" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$690.00" eventid="3065930" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:45 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:45 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328408',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328408">\n'
             '<h2><a class="lnkCourseDetails" courseid="328408" href="#" '
             'onclick="return false;">Ceramics at Andrews Hall Studio '
             'Membership</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/178353686611021_img_7228.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style=\'font-family: "Open Sans", sans-serif; color: '
             'rgb(51, 51, 51); margin: 0px 0px 20px; border: 0px; font-size: '
             "18px; background-color: rgb(255, 255, 255)'><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Silvermine Arts Center is "
             'pleased to introduce Ceramics at Andrews Hall, a shared studio '
             'membership for experienced ceramic artists seeking an '
             'independent, well-equipped studio environment. Andrews Hall '
             'offers an atmosphere to support serious creative work within a '
             'respectful and collaborative communal studio.</span></p><p '
             'style=\'font-family: "Open Sans", sans-serif; color: rgb(51, 51, '
             '51); margin: 0px 0px 20px; border: 0px; font-size: 18px; '
             "background-color: rgb(255, 255, 255)'><span style='font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>This membership is intended for "
             'ceramic artists who can work safely, follow studio policies, and '
             'contribute positively to the studio community. Members have '
             'access to a workspace that supports ongoing practice, '
             'experimentation, and artistic growth.</span></p><p '
             'style=\'font-family: "Open Sans", sans-serif; color: rgb(51, 51, '
             '51); margin: 0px 0px 20px; border: 0px; font-size: 18px; '
             "background-color: rgb(255, 255, 255)'><span style='font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Artists interested in becoming part "
             'of the Andrews Hall ceramics community are invited to </span><a '
             'href="https://www.silvermineart.org/ceramics-at-andrews-hall/"><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>complete an application "
             "for consideration</span></a><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>. Space is limited. Applications reviewed on a "
             'rolling basis.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>This independent and "
             "communal ceramics studio is </span><span style='text-decoration: "
             'underline; font-size: 12px; font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; color: #000000\'>open to Members '
             "only</span><span style='font-size: 12px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>, '
             'Tuesday - Sunday, with 24 hour access. Monthly Membership fees '
             "apply. </span><strong><span style='text-decoration: underline; "
             'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>L</span></strong><a "
             'href="https://www.silvermineart.org/ceramics-at-andrews-hall/"><strong><span '
             "style='text-decoration: underline; font-size: 12px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>earn more Today!</span></strong></a></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/1</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 AM – 11:59 PM</td>\n'
             '<td>, </td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$0.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065050" href="#EventID=3065050" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<span class="button disabled-2 small full center noicon" '
             'isdetail="false">READ ONLY</span>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:45 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:45 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328456',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328456">\n'
             '<h2><a class="lnkCourseDetails" courseid="328456" href="#" '
             'onclick="return false;">Clay Pumpkin Lanterns (Ages: '
             '6-9)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/4b5dc19d-2505-4969-a43b-e5885900cf7a_Long_Pumpkin_Lanterns.jpeg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Wishing your carved pumpkins could last forever? "
             'This workshop is for you! Students will use pinch-pot techniques '
             'to create their own ceramic pumpkin candle holders to liven up '
             'the spooky season. Students will have the opportunity to carve '
             'these creations with a classic Jack-O-Lantern face or their own '
             'imaginative design. Pieces will be kiln-fired after being '
             'finished with colorful underglaze and glaze.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: All materials are provided "
             "for this offering.</span></p><p><span style='line-height: 115%; "
             'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Pieces will be kiln-fired "
             'after being finished with colorful underglaze and glaze. All '
             'pieces will be available two to three weeks after the program '
             'has occurred and the School Office will contact participants via '
             'email with pick up instructions.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/10</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td>Long, Charlotte</td>\n'
             '<td class="">6 - 10</td>\n'
             '<td class="">$165.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065994" href="#EventID=3065994" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$165.00" eventid="3065994" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:45 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:45 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321523',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321523">\n'
             '<h2><a class="lnkCourseDetails" courseid="321523" href="#" '
             'onclick="return false;">Collage &amp; Composition Studio (Ages: '
             '10-13)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/b1e490dc-7301-4a5c-84ae-f6a31ffd16ad_WatersN_CollageCompositionStudioAges10-13.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Where creativity meets composition—turning "
             'everyday materials into works of art. In this dynamic weeklong '
             'studio, young artists will explore collage as a powerful form of '
             'visual expression. Using paper, fabric, photos, and found '
             'materials, campers will experiment with layering, texture, and '
             'balance to create both abstract and narrative works of art. '
             'They’ll learn techniques for cutting, assembling, and combining '
             'materials while exploring themes like identity, nature, and '
             'storytelling. Lessons will include inspiration from modern and '
             'contemporary collage artists, as well as opportunities to mix '
             'drawing, painting, and printmaking into their pieces. By the end '
             'of the week, campers will have developed a strong sense of '
             'design and a personal collection of mixed-media artworks to '
             'share in a final showcase.</span></p><p class="MsoNormal"><span '
             "style='line-height: 106%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Highlights:</span></p><ul><li><p><span "
             "style='line-height: 115%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Advanced collage and mixed-media techniques</span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>\xa0\xa0\xa0\xa0\xa0\xa0"
             '</span></p></li><li><p class="MsoListParagraphCxSpMiddle" '
             'style="text-indent: -.25in"><span style=\'font: 7.0pt "Times New '
             'Roman"; font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>\xa0\xa0\xa0\xa0\xa0\xa0"
             "</span><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Lessons in composition, balance, and "
             'storytelling</span></p></li><li><p '
             'class="MsoListParagraphCxSpMiddle" style="text-indent: '
             '-.25in"><span style=\'font: 7.0pt "Times New Roman"; font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>\xa0\xa0\xa0\xa0\xa0\xa0</span><span "
             "style='line-height: 115%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Exploration of materials and found-object "
             "art</span><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>\xa0\xa0</span></p></li><li><p "
             'class="MsoListParagraphCxSpMiddle" style="text-indent: '
             '-.25in"><span style=\'font: 7.0pt "Times New Roman"; font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>\xa0\xa0\xa0\xa0\xa0\xa0</span><span "
             "style='line-height: 115%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Inspiration from modern and contemporary "
             'artists</span></p></li><li><p class="MsoListParagraphCxSpLast" '
             'style="text-indent: -.25in"><span style=\'font: 7.0pt "Times New '
             'Roman"; font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>\xa0\xa0\xa0\xa0\xa0\xa0"
             "</span><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>End-of-week gallery-style "
             'exhibition</span></p></li></ul><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Parents: Please pack a "
             'water bottle as well as a peanut free snack.</span></p><p><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Camp forms are '
             'required at the time of registration, click </span><a '
             'href="files/read?file=files/SAC Summer Art Studios Forms '
             '2026.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>here</span></a><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'> to '
             "access.</span></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "background-color: #ffffff; font-size: 13px'>Please review our "
             'Summer Art Studio withdrawal &amp; reimbursement policies '
             '</span></em></strong><a href="files/read?file=files/Summer Art '
             'Policies PDF-1-7-26.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><strong><em><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             'background-color: #ffffff; font-size: '
             "13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/10</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=132562">Waters, Nell</a></td>\n'
             '<td class="">10 - 14</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2958030" href="#EventID=2958030" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">7</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2958030" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="7" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:45 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:45 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321525',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321525">\n'
             '<h2><a class="lnkCourseDetails" courseid="321525" href="#" '
             'onclick="return false;">Collage Explorers (Ages: 6-9)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/ba3bc484-ba1d-4c5e-8118-f0948ca0e40f_WatersN_CollageExplorersAges6-9.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Cut, layer, and glue your way into a world of "
             "color, imagination and expression!</span><span style='font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>\xa0 </span><span style='font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>In this lively weeklong camp, young "
             'artists will dive into the playful world of collage—creating art '
             'with paper, fabric, textures, and found materials. Campers will '
             'learn how to build images and stories by layering shapes, '
             'colors, and patterns, exploring both abstract and '
             "representational styles.</span><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>\xa0 </span><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Each day will bring new projects inspired by "
             'nature, imagination, and famous collage artists. Using scissors, '
             'glue, and a wide range of materials, campers will experiment '
             'with composition, texture, and mixed media while developing '
             "confidence and creativity.</span><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>\xa0 </span><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>By week’s end, they’ll have a vibrant collection "
             'of collages to share in a mini-gallery show for family and '
             'friends.</span></p><p class="MsoNormal"><span '
             "style='line-height: 106%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Activities include:</span></p><ul><li><p "
             'class="MsoNormal"><span style=\'line-height: 106%; font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Paper, fabric, and mixed-media "
             'collages</span></p></li><li><p class="MsoNormal"><span '
             "style='line-height: 106%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Texture and color exploration</span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             'Helvetica, sans-serif; color: '
             "#000000'>\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0</span></p></li><li><p "
             'class="MsoNormal"><span style=\'line-height: 106%; font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Collaborative group "
             "mural</span><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>\xa0\xa0\xa0\xa0</span></p></li><li><p "
             'class="MsoNormal"><span style=\'line-height: 106%; font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Inspiration from artists like Henri "
             'Matisse and Romare Bearden</span></p></li><li><p '
             'class="MsoNormal"><span style=\'line-height: 106%; font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>End-of-week art "
             'show</span></p></li></ul><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Parents: Please pack a "
             'water bottle as well as a peanut free '
             "snack.</span></p><p><strong><span style='letter-spacing: 0.15pt; "
             'color: rgb(0, 0, 0); font-size: 12px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif\'>**NOTE**\xa0Any summer '
             'art studio programs taking place in Week 3: June 29 – July 2 '
             'will only be 4 days\xa0due to the '
             "Holiday.</span></strong></p><p><span style='font-size: 12px; "
             'color: #000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Camp forms are required at the time of registration, "
             'click </span><a '
             'href="https://www.silvermineart.org/summer-art-studios-important-information-and-required-forms/" '
             'title=""><span style=\'font-size: 12px; color: #000000; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here </span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>to access.</span></p><p><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>Please review our Summer Art Studio withdrawal "
             '&amp; reimbursement policies </span></em></strong><a '
             'href="files/read?file=files/Summer Art Policies PDF-1-7-26.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/17</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=132562">Waters, Nell</a></td>\n'
             '<td class="">6 - 10</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2958035" href="#EventID=2958035" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">13</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2958035" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="13" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:45 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:45 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328457',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328457">\n'
             '<h2><a class="lnkCourseDetails" courseid="328457" href="#" '
             'onclick="return false;">Comic Book Design Studio (Ages: '
             '10-14)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/43e3d3d3-536c-473c-a1c6-babcf1694073_WilsonS_ComicBookDesignStudio.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Students will develop, draw, and complete their "
             'own original comic book over the course of 12 weeks. Through '
             'sequential storytelling, character design, panel composition, '
             'inking, and hand-lettering, each student leaves with a finished, '
             'bound comic they can call their own.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             "checkout.</span></strong></p><p><span style='line-height: 115%; "
             'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Students can either "
             'create their comic book digitally or physically and all '
             'artmaking materials will be provided. </span><b><span '
             "style='line-height: 115%; font-size: 12px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Students who wish to work digitally should bring their "
             'personal iPad.</span></b></p><p><strong><em><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>*Class will not meet "
             '10/9, 11/6, 11/27*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/18</td>\n'
             '\n'
             '<td class="show-on-mobile">04:30 PM – 06:30 PM</td>\n'
             '<td><a href="#FacultyDetail=138237">Wilson, Samuel</a></td>\n'
             '<td class="">10 - 15</td>\n'
             '<td class="">$385.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065955" href="#EventID=3065955" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$385.00" eventid="3065955" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:45 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:45 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321690',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321690">\n'
             '<h2><a class="lnkCourseDetails" courseid="321690" href="#" '
             'onclick="return false;">Comic Lab: Create Your Own Comic Book '
             '(Ages: 10-14)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/a4cd700d-7ba5-45aa-8d5a-5106498a7be7_WilsonS_ComicLabCreateYourOwnComicBook.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #060606'>In Comic Lab, young artists become comic "
             'creators! They will design original characters, develop engaging '
             'stories, and produce their own mini comic book from start to '
             'finish. Students will explore how pictures and words work '
             'together to tell exciting stories, and they will also learn to '
             'use digital tools like Photoshop. Those who have an iPad are '
             'encouraged to bring it for digital drawing.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='line-height: 115%; background: white; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>Students should pack a water bottle and peanut free "
             "snack.</span></p><p><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Camp forms are required at the time of registration, "
             'click </span><a href="files/read?file=files/SAC Summer Art '
             'Studios Forms 2026.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; color: #000000; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>Please review our Summer Art Studio withdrawal "
             '&amp; reimbursement policies </span></em></strong><a '
             'href="files/read?file=files/Summer Art Policies PDF-1-7-26.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/10</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=138237">Wilson, Samuel</a></td>\n'
             '<td class="">10 - 15</td>\n'
             '<td class="">$445.00</td>\n'
             '<td class="">\n'
             '<a eventid="2961649" href="#EventID=2961649" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">1</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$445.00" eventid="2961649" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="1" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:45 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:46 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:46 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=191691',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="191691">\n'
             '<h2><a class="lnkCourseDetails" courseid="191691" href="#" '
             'onclick="return false;">Contemporary Impressionism and Beyond: '
             'Experience to Expression</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/48c99911-a3b0-4c7d-8d7a-9604fbe0e866_6.9.2023.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page" style="color: rgb(0, 0, 0); '
             'letter-spacing: normal"><div class="layoutArea"><div '
             'class="column"><p style="color: rgb(0, 0, 0); letter-spacing: '
             'normal"><span style=\'font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             'ALL LEVELS</span></p><p style=\'font-family: "Times New Roman", '
             'serif; color: rgb(0, 0, 0); font-size: medium; letter-spacing: '
             "normal'><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Develop our own unique style while discovering the "
             'philosophy and techniques used by the impressionist masters. '
             'Such methods used by the impressionists were taken from the '
             'classical and today used by the modernists are the tools you '
             'will learn from illustrative to the abstract. Students from all '
             'levels and interests, as well as those working in all materials '
             'and methods are welcomed from classical to '
             'abstract.</span></p></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><div><p><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>List of Materials:</span><a "
             'href="files/read?file=files/D.Wright%20Courses.pdf" '
             'style="text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>\xa0D.Wright Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>*Class will not meet 11/6, "
             '11/27*</span></em></strong></p></div><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/18</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75734">Wright, Dmitri</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$555.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065948" href="#EventID=3065948" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$555.00" eventid="3065948" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/18</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75734">Wright, Dmitri</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$555.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065953" href="#EventID=3065953" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">17</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$555.00" eventid="3065953" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="17" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:46 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:46 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=190816',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="190816">\n'
             '<h2><a class="lnkCourseDetails" courseid="190816" href="#" '
             'onclick="return false;">Copying from the Masters</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/d29bd799-b79b-40c7-a599-6eeec2ba7b00_Wiest-Flaming-June-after-Leighton-1.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page" style="color: rgb(0, 0, 0); '
             'letter-spacing: normal"><div class="layoutArea"><div '
             'class="column"><p><span style=\'font-size: 14px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>LEVEL: INTERMEDIATE - ADVANCED</span></p><p "
             'style="font-family: -webkit-standard"><span '
             "style='letter-spacing: normal; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Copying old master works was a time-tested tradition "
             'throughout the ages. Students will work from high quality '
             'reproductions and be led through a step-by-step approach to '
             'thinking and working in the old master manner. Beginning with '
             'the drawing, then capturing and slowly building the layers of '
             'paint with glazes mixed with chalk and oil, students will learn '
             'the full process, which they can the introduce into their own '
             'methods of painting. Reproductions will be provided for the '
             'students.\xa0</span></p></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials:\xa0"
             '</span><a href="files/read?file=files/J.Wiest Copying from the '
             'Masters.pdf" style="text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>J.Wiest Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet "
             '9/21*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/14</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75733">Wiest, Justin</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$605.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066081" href="#EventID=3066081" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">6</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$605.00" eventid="3066081" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="6" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:46 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:46 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328458',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328458">\n'
             '<h2><a class="lnkCourseDetails" courseid="328458" href="#" '
             'onclick="return false;">Cozy Forest Friends in Clay (Ages: '
             '6-9)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/daaf1b9c-9401-44c9-923e-b721979a8399_Long_Cozy_Forest_Friends.jpeg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Join us for this adorable fall clay workshop! As "
             'the weather gets chillier, students will imagine their favorite '
             'fall animals, such as foxes, owls, and squirrels in clay with '
             'seasonal details! Using handbuilding techniques, students will '
             'add texture to their critters, as well as dress them up in cozy '
             'clay scarves and hats. This workshop centers on playful skill '
             'building using imagination, nature, and fall fun. Students will '
             'add color using underglaze to their piece, which will be glazed '
             'and finished through kiln-firing.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>List of Materials: All materials are provided "
             "for this offering.</span></p><p><span style='line-height: 115%; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px; color: #000000'>All artwork will be available "
             'two to three weeks after the program has occurred and the School '
             'Office will contact participants via email with pick up '
             'instructions.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">11/22</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td>Long, Charlotte</td>\n'
             '<td class="">6 - 10</td>\n'
             '<td class="">$165.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066052" href="#EventID=3066052" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$165.00" eventid="3066052" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:46 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:46 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328461',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328461">\n'
             '<h2><a class="lnkCourseDetails" courseid="328461" href="#" '
             'onclick="return false;">Create a Magical Winter Forest - Mixed '
             'Media Painting on Canvas (Ages: 5-10)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/9fefda2e-faae-49cd-9dac-01fbb9b9876d_KotM_MagicalWinterForest '
             'Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Use a variety of materials, glistening "
             'imagination and holiday inspiration and create a winter '
             'wonderland. See ways in which artists have painted snowy fields '
             'and animals in the natural world. Wrap your painting with '
             'personally decorated paper if you will bring your artwork home '
             "as a holiday gift.</span><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>\xa0 </span><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>All materials will be supplied. Please bring a "
             'peanut free snack.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='line-height: "
             '115%; font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Students should bring a "
             'peanut free hearty snack &amp; water bottle.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">12/20</td>\n'
             '\n'
             '<td class="show-on-mobile">11:00 AM – 03:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$205.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066070" href="#EventID=3066070" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">15</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$205.00" eventid="3066070" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="15" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:46 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:46 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=280394',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="280394">\n'
             '<h2><a class="lnkCourseDetails" courseid="280394" href="#" '
             'onclick="return false;">Create in Clay (Ages: 7-9)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/df762aa3-e9eb-47e1-8302-207c6785c9ae_Z.Dunn_CreateClay2.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p class="gmail-p1" style="background-color: rgb(255, '
             '255, 255)"><span style=\'font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>During '
             'this week-long studio, your child will create multiple 3-D works '
             'of art from clay. Each day will involve making different objects '
             'from their imagination through various projects and guidelines. '
             'Slabs, pinch pots, coils, and additional techniques will be '
             'utilized and explored. The artworks created will have underglaze '
             'applied to add color and excitement to their finished '
             'creations.</span></p><p class="gmail-p1" '
             'style="background-color: rgb(255, 255, 255)"><em><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Clay pieces take three to "
             'four weeks to be fired. The school office will notify parents '
             'when pieces are ready to be picked up.\xa0'
             '</span></em></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='letter-spacing: 0.15pt; "
             'color: rgb(0, 0, 0); font-size: 12px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif\'>**NOTE**\xa0Any summer '
             'art studio programs taking place in Week 3: June 29 – July 2 '
             'will only be 4 days\xa0due to the '
             "Holiday.</span></strong></p><p><span style='font-size: 12px; "
             'color: #000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Camp forms are required at the time of registration, "
             'click </span><a '
             'href="https://www.silvermineart.org/summer-art-studios-important-information-and-required-forms/" '
             'title=""><span style=\'font-size: 12px; color: #000000; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>Please review our Summer Art Studio withdrawal "
             '&amp; reimbursement policies </span></em></strong><a '
             'href="files/read?file=files/Summer Art Policies PDF-1-7-26.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/3</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=89463">Dunn, Zach</a></td>\n'
             '<td class="">7 - 10</td>\n'
             '<td class="">$515.00</td>\n'
             '<td class="">\n'
             '<a eventid="2954949" href="#EventID=2954949" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$515.00" eventid="2954949" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">8/10</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=89463">Dunn, Zach</a></td>\n'
             '<td class="">7 - 10</td>\n'
             '<td class="">$515.00</td>\n'
             '<td class="">\n'
             '<a eventid="2954955" href="#EventID=2954955" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$515.00" eventid="2954955" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-5" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:46 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:46 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321422',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321422">\n'
             '<h2><a class="lnkCourseDetails" courseid="321422" href="#" '
             'onclick="return false;">Creative Digital Photography and Digital '
             'Darkroom (Ages: 12-17)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/e2306882-0878-4b21-836f-489858a907b9_DunbarB_CreativeDigitalPhotoDigitalDarkroom.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Get '
             'creative with new camera techniques. Explore nature, abstract '
             'and still-life photography. Use Adobe Photoshop to add '
             'creatively to your pictures.</span></p><p class="MsoNormal" '
             'style="line-height: normal"><span style=\'font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Students provide a digital camera preferably a "
             'DSLR.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Camp forms are '
             'required at the time of registration, click </span><a '
             'href="files/read?file=files/SAC Summer Art Studios Forms '
             '2026.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>here</span></a><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'> to '
             "access.</span></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "background-color: #ffffff; font-size: 13px'>Please review our "
             'Summer Art Studio withdrawal &amp; reimbursement policies '
             '</span></em></strong><a href="files/read?file=files/Summer Art '
             'Policies PDF-1-7-26.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><strong><em><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             'background-color: #ffffff; font-size: '
             "13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/3</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=87648">Dunbar, Bruce</a></td>\n'
             '<td class="">12 - 18</td>\n'
             '<td class="">$510.00</td>\n'
             '<td class="">\n'
             '<a eventid="2957003" href="#EventID=2957003" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$510.00" eventid="2957003" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-4" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:46 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:46 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328460',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328460">\n'
             '<h2><a class="lnkCourseDetails" courseid="328460" href="#" '
             'onclick="return false;">Creative Layers: Gel Plate Prints &amp; '
             'Collage on Canvas</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: none;">\n'
             '<a href="#"><img alt="{imageAltText}" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" src="" style="display: '
             'none;"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>LEVEL: BEGINNER</span></p><p><span "
             "style='line-height: 115%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>No '
             'experience needed! Explore making gel plate prints, collaging '
             'them onto canvas and adding paint, markers, stencils, etc. to '
             'create a finished painting. this method of working allows for a '
             'lot of fun, flexibility and change during the process to give '
             'you confidence in your creative decisions.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             "checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/N.Hyon Creative Layers Gel Plate and '
             'Collage on Canvas.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>N.Hyon Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet "
             '11/26*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/15</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 - 99</td>\n'
             '<td class="">$275.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066001" href="#EventID=3066001" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$275.00" eventid="3066001" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:46 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:46 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321641',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321641">\n'
             '<h2><a class="lnkCourseDetails" courseid="321641" href="#" '
             'onclick="return false;">Creative Photography: Film and Darkroom '
             '(Ages: 12-17)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/8fa81a94-72da-4d2a-adc2-aee608c0e4b1_DunbarD_CreativePhotographyFilmDarkroom.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Explore new ways of making prints from your film "
             'negatives. Embrace the magic of the darkroom to make creative '
             'pictures. We’ll try different processes to add imagination and '
             'innovation. Film cameras will be available for students to use '
             'during class sessions. Film and photographic paper will be '
             'supplied.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Parents: Please pack a "
             'water bottle as well as a peanut free snack.</span></p><p><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Camp forms are '
             'required at the time of registration, click </span><a '
             'href="files/read?file=files/SAC Summer Art Studios Forms '
             '2026.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>here</span></a><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'> to '
             "access.</span></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "background-color: #ffffff; font-size: 13px'>Please review our "
             'Summer Art Studio withdrawal &amp; reimbursement policies '
             '</span></em></strong><a href="files/read?file=files/Summer Art '
             'Policies PDF-1-7-26.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><strong><em><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             'background-color: #ffffff; font-size: '
             "13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/10</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=87648">Dunbar, Bruce</a></td>\n'
             '<td class="">12 - 18</td>\n'
             '<td class="">$510.00</td>\n'
             '<td class="">\n'
             '<a eventid="2960229" href="#EventID=2960229" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">5</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$510.00" eventid="2960229" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="5" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:46 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:46 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328459',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328459">\n'
             '<h2><a class="lnkCourseDetails" courseid="328459" href="#" '
             'onclick="return false;">Creepy Clay Creatures (Ages: '
             '8-10)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/2b832441-8199-4eda-9347-a8d13d73ce94_Long_Creepy_Creatures.jpeg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Celebrate Halloween with clay! In this workshop, "
             'students will use clay to sculpt their own creepy Halloween '
             'creatures of choices, from silly ghosts and monsters to creepy '
             'bats and cats. With this project, basic hand-building techniques '
             'will be utilized to bring student’s imaginative creations to '
             'life. Pieces will be kiln-fired after being finished with '
             'colorful underglaze and glaze.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>List of Materials: All materials are provided "
             "for this offering.</span></p><p><span style='line-height: 115%; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px; color: #000000'>All artwork will be available "
             'two to three weeks after the program has occurred and the School '
             'Office will contact participants via email with pick up '
             'instructions.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/24</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td>Long, Charlotte</td>\n'
             '<td class="">8 - 11</td>\n'
             '<td class="">$165.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066014" href="#EventID=3066014" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$165.00" eventid="3066014" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:46 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:46 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321413',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321413">\n'
             '<h2><a class="lnkCourseDetails" courseid="321413" href="#" '
             'onclick="return false;">Cute &amp; Crafty Critters (Ages: '
             '4-7)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/2f0a4d52-91a0-4de7-b9c1-ec6916bc21d0_BloomL_CuteCraftyCritters.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Calling all animal lovers to dive into the "
             'adorable world of baby creatures! Students will create squishy '
             'animals, animal masks, and clay critters. Each afternoon, '
             'campers will explore how animals grow and play through hands-on '
             'activities and imaginative crafts. And to top it all off—Slime '
             'Time Friday!</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Parents: Please pack a "
             'water bottle as well as a peanut free snack.</span></p><p><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Camp forms are '
             'required at the time of registration, click </span><a '
             'href="files/read?file=files/SAC Summer Art Studios Forms '
             '2026.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>here</span></a><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'> to '
             "access.</span></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "background-color: #ffffff; font-size: 13px'>Please review our "
             'Summer Art Studio withdrawal &amp; reimbursement policies '
             '</span></em></strong><a href="files/read?file=files/Summer Art '
             'Policies PDF-1-7-26.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><strong><em><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             'background-color: #ffffff; font-size: '
             "13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/17</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=113806">Bloom, Lori</a></td>\n'
             '<td class="">4 - 8</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2956974" href="#EventID=2956974" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">5</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2956974" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="5" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:46 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:47 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:47 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=302803',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="302803">\n'
             '<h2><a class="lnkCourseDetails" courseid="302803" href="#" '
             'onclick="return false;">Darkroom Printing - Large!</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/a1ac11b3-5036-4ebc-acd4-f04360d95a7e_bdunbar_Large '
             'Printing_Fall24.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Ever '
             'wonder what your negatives would look like printed extremely '
             'large? This class will investigate the darkroom print in 20 x '
             '24” format using 35mm, 120mm or 4x5” film negatives. An overview '
             'of archival processing will be demonstrated. Bring your own '
             'negatives and we will make big exhibition quality prints. '
             'Limited to 5 students.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             'Students should bring Photographic Enlarging Paper 20”x24” '
             'largest size (Fiber or RC) and Negatives to Print (35mm – '
             '4”x5”)</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">12/11</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 03:00 PM</td>\n'
             '<td><a href="#FacultyDetail=87648">Dunbar, Bruce</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$225.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066064" href="#EventID=3066064" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$225.00" eventid="3066064" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:47 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:47 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328462',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328462">\n'
             '<h2><a class="lnkCourseDetails" courseid="328462" href="#" '
             'onclick="return false;">Design an Autumn Habitat for Fairies, '
             'Trolls, Critters - Mixed Media Clay (Ages: 5-10)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/719a25a7-938c-439f-b110-46e0d4bc30d4_KotM_DesignAutumnHabitatFairiesTrollsCrittersMixedMedia '
             'Clay Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Create a special habitat with New England Autumn "
             'flair for miniature critters/fairies using clay, flowers, '
             'materials from nature, more.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='line-height: "
             '115%; font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Students should bring a "
             "hearty peanut free snack &amp; </span><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000\'>\xa0a 16" x 16" sturdy box to '
             'transfer their artwork home</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">11/21</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$195.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066049" href="#EventID=3066049" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$195.00" eventid="3066049" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:47 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:47 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328445',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328445">\n'
             '<h2><a class="lnkCourseDetails" courseid="328445" href="#" '
             'onclick="return false;">Digital Illustration Jump Start: '
             'Procreate on the iPad</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/7db8c948-3ad8-4c3d-8624-0f4edb55e23d_DeLocaJ_DigitalIllustrationJumpStartProcreateiPad.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><a><span style='line-height: 115%; letter-spacing: "
             '.15pt; background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Ready '
             'to start drawing digitally but not sure where to begin? This '
             'one-night workshop is designed as a practical introduction to '
             "creating artwork with </span><b><span style='line-height: 115%; "
             'letter-spacing: .15pt; background: white; font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>**Procreate, the Apple Pencil, and the "
             "iPad**.</span></b><span style='line-height: 115%; "
             'letter-spacing: .15pt; background: white; font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'> Students will learn the essential tools, "
             'settings, brushes, layers, and shortcuts that make digital '
             'drawing feel intuitive and enjoyable. Through live '
             "demonstrations and guided exercises, we'll explore how Procreate "
             'can function as a complete portable sketchbook, painting studio, '
             'and illustration workspace. Perfect for beginners and '
             'traditional artists making the transition to digital media, this '
             'workshop focuses on building confidence rather than technical '
             'overwhelm. Students will learn how to sketch, ink, paint, and '
             'organize artwork using a simple professional workflow while '
             'discovering techniques that make the Apple Pencil feel natural '
             'and responsive. By the end of the evening, participants will '
             'have completed a finished digital illustration and gained the '
             'knowledge needed to continue creating artwork on their '
             "own</span></a><span style='line-height: 115%; letter-spacing: "
             '.15pt; background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>.</span></p><p></p>\n"
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='line-height: "
             '115%; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000; font-size: 12px'>List of Materials: "
             'Students should bring in their personal iPad and will need an '
             'Apple Pencil.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">11/13</td>\n'
             '\n'
             '<td class="show-on-mobile">06:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=135676">DeLoca, Jonathan</a></td>\n'
             '<td class="">16 - 99</td>\n'
             '<td class="">$145.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066042" href="#EventID=3066042" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$145.00" eventid="3066042" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:47 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:47 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=168501',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="168501">\n'
             '<h2><a class="lnkCourseDetails" courseid="168501" href="#" '
             'onclick="return false;">Drawing &amp; Painting in '
             'Combination</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/158471687971258_chemical_pond.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p style='color: rgb(0, 0, 0); font-size: medium; "
             'font-family: "Times New Roman", serif; letter-spacing: '
             'normal\'><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px'>LEVEL: ALL "
             "LEVELS</span></p><p style='color: rgb(0, 0, 0); font-size: "
             'medium; font-family: "Times New Roman", serif; letter-spacing: '
             'normal\'><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px'>This course is designed "
             'to instruct students in the fundamentals of drawing, composition '
             'and the basic techniques of painting. Mixing and applying paint '
             'will be demonstrated. Subjects such as still life, figure and '
             'landscape will be covered. Those who wish to draw exclusively '
             'are guided from a beginning thumbnail to a finished '
             'presentation. Likewise, the painters will learn their craft '
             'step-by-step.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style="font-size: 12px; font-family: Arial; color: rgb(0, 0, '
             '0)">List of Materials:\xa0</span><a '
             'href="files/read?file=files/A.McFarlane%20Drawing%20%20Painting%20in%20Combination.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style="font-size: 12px; '
             'font-family: Arial; color: rgb(0, 0, 0)">A.McFarlane Supply '
             'List.pdf</span></a></p><p><strong><em><span style="font-size: '
             '12px; font-family: Arial; color: rgb(0, 0, 0)">*Class will not '
             'meet 11/7*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/19</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75707">McFarlane, Alex</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$605.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065958" href="#EventID=3065958" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$605.00" eventid="3065958" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:47 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:47 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=316559',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="316559">\n'
             '<h2><a class="lnkCourseDetails" courseid="316559" href="#" '
             'onclick="return false;">Drawing Basics: Composition and the '
             'Still Life</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/0b59520a-6122-4395-bb61-d64c730a8125_Harvey_drawingbasics.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>A beginner drawing class designed to develop "
             'basic drawing skills to create a three dimensional illusion onto '
             'a flat surface using drawing tools and paper. The class explores '
             'line expression, line variation, scale and proportion, depth, '
             'composition, and value to render an image. Utilizing a still '
             'life to draw from and instructor demonstrations, student '
             'implement these drawing skills into their own work. The course '
             'encourages group critique and discussion, and provides one on '
             'one instructor feedback.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/E.Harvey Drawing Basics '
             'Composition and the Still Life.pdf" style="color: blue '
             '!important; text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>E.Harvey Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet "
             '11/25*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/7</td>\n'
             '\n'
             '<td class="show-on-mobile">06:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=125261">Harvey, Evelyn</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065993" href="#EventID=3065993" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$465.00" eventid="3065993" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:47 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:47 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328443',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328443">\n'
             '<h2><a class="lnkCourseDetails" courseid="328443" href="#" '
             'onclick="return false;">Drawing for Illustration</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/604a02ac-2af4-4a43-a5b2-f6c460ea5221_CroninT_DrawingForIllustration.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000; font-size: 14px'>LEVEL: "
             "ALL LEVELS</span></p><p><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "font-size: 14px'>In this course we will work in the traditional "
             'method of many of the illustration greats. Using models we will '
             'stage a ‘scene’ for students to make direct observational '
             'drawings. We will work with live models for 2 sessions. In the '
             'following 2 sessions, students will use their drawings with the '
             'premise of combining elements to make fine personal '
             'compositions. We will then focus on bringing our drawings to a '
             "finish using students' preferred materials. (eg. acrylic, "
             'watercolor, pastels, markers, collage etc.) Our goal over an 8 '
             'week course is to create two finished pieces. Experimentation '
             'and creative expression is encouraged. This class is for anyone '
             'wanting to create finished pieces from their drawings, students '
             'and adults creating portfolio pieces and experienced artists '
             'looking to challenge themselves.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='line-height: 115%; font-size: 12px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>List '
             'of Materials: Drawing boards are recommended. Sketch pads and '
             'soft pencils for the first sessions and whatever mediums the '
             'students prefer going forward.</span></p><p><strong><em><span '
             "style='line-height: 115%; font-size: 12px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>*Class '
             'will not meet 9/22, 10/20*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">06:30 PM – 08:30 PM</td>\n'
             '<td><a href="#FacultyDetail=121566">Cronin, Timothy</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$410.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065913" href="#EventID=3065913" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$410.00" eventid="3065913" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:47 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:47 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=322736',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="322736">\n'
             '<h2><a class="lnkCourseDetails" courseid="322736" href="#" '
             'onclick="return false;">Drawing Materials and Process: '
             'Portraiture</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/ad848a43-09eb-4053-9e54-7d9b2abddea8_WiestJ_DrawingMaterialsTechniquesPortraiture '
             'Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Take '
             'your time and engage the model with measurements and '
             'construction lines. The likeness and spirit will begin to reveal '
             'themselves as your focus is rewarded. We will look at the '
             'underlying structure of the head as well as surface events. '
             'Graphite, red chalk, charcoal, and ink wash will be explored. '
             'Demonstrations at various points of the process will be given as '
             'well as advice on drawings the student may be working on outside '
             'class.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             "Students should bring </span><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Drawing paper 16x20 or bigger, Graphite pencils: "
             'hb,2b, Eraser, Straight edge</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/27</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75733">Wiest, Justin</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$395.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066019" href="#EventID=3066019" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$395.00" eventid="3066019" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:47 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:47 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=316596',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="316596">\n'
             '<h2><a class="lnkCourseDetails" courseid="316596" href="#" '
             'onclick="return false;">Drawing Materials and Process: '
             'Sketchbook Development</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/ec9f0715-2ed6-4716-bbcc-d6267298b5a5_WiestJ_DrawingMaterialsTechniquesSketchbookDevelopment '
             'Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; background: white; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 14px; color: #000000'>LEVEL: ALL "
             "LEVELS</span></p><p><span style='line-height: 115%; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 14px; '
             "color: #000000'>Sketchbook Drawing is how our brain visually "
             'reveals itself. Initial sketches begin the creative process. The '
             'class will investigate still life, landscape (perspective), and '
             'people (model). Contours, shading, and hatching are some of the '
             'topics that will be covered. Conte, ink, charcoal, and graphite '
             'are some of the materials that will be used.</span><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 14px; color: #000000'>\xa0 </span><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 14px; color: #000000'>The initial "
             'sketches will be worked up into more refined drawings. Students '
             'will be given weekly prompts to investigate '
             'graphically.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='line-height: 115%; background: white; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>A model will be present for one class "
             'day.</span></p><p><span style=\'font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>List of Materials: </span><a "
             'href="files/read?file=files/J.Wiest Drawing Materials and '
             'Process Sketchbook Development.pdf" style="color: blue '
             '!important; text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>J.Wiest Supply List.pdf</span></a></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75733">Wiest, Justin</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$340.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065898" href="#EventID=3065898" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$340.00" eventid="3065898" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:47 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:48 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:48 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=308866',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="308866">\n'
             '<h2><a class="lnkCourseDetails" courseid="308866" href="#" '
             'onclick="return false;">Drawing on Location: Urban and Natural '
             'Landscapes</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/9c5468dc-bb28-4767-89f0-324328cf0b9e_CroninT_DrawingLocationUrbanNaturalLandscapes '
             'Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "ALL LEVELS</span></p><p><span style='line-height: 106%; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>This class will take "
             'place at various locations around Lower Fairfield County, with a '
             'focus on enhancing on-site drawing skills. Students will learn '
             'to use composition, line, and value to capture the mood and '
             'story of each unique place. Each session will begin with a brief '
             'instructional overview, followed by individual work time where '
             'the instructor offers personalized feedback and support. At the '
             'end of each class, students will share their work and engage in '
             'a group discussion to reflect on their progress and '
             'insights.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><em><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Recommended that students bring a folding chair "
             "and drawing board</span></em></p><p><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/T.Cronin Drawing on Location.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'font-size: 12px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>T.Cronin Supply List.pdf</span></a></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/19</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=121566">Cronin, Timothy</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$245.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065959" href="#EventID=3065959" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$245.00" eventid="3065959" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:48 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:48 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=264889',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="264889">\n'
             '<h2><a class="lnkCourseDetails" courseid="264889" href="#" '
             'onclick="return false;">Dream Home: Sculpting with Wood, Paint '
             'and Clay (Ages: 5-10)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/802de313-3da1-4e8f-aa62-2577371fc21a_KotM_DreamHome.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Where '
             "painting and clay sculpting are included every week, mARTa's "
             'Summer Art Studio encourages open ended experimentation, '
             'creative expression, exploration, and appreciation, of art. '
             'While building friendships and learning about the properties of '
             'art materials, children are guided to engage with imagination, '
             'and to contribute meaning to artwork. They will be introduced to '
             'a variety of techniques while exploring play in art, and they '
             'will develop their creative abilities to self-express and see '
             'and experience the world in new ways. Each day will include a '
             'variety of materials, surprises, outdoor recess with games and '
             'stories about well-known artists. Art materials may include '
             'watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, '
             'things that shine, beads, paint markers, more. Gentle '
             'discussions about the artwork in progress and art history will '
             'be introduced.</span></p><p class="MsoNormal"><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Throughout the week "
             'children may work in the art studio, explore the lush Silvermine '
             'outdoor environment, and visit the Silvermine galleries &amp; '
             "exhibitions. mARTa's sensory rich studio environment is designed "
             "to make one's learning more complex while supporting imagination "
             "and play in a caring environment. It's a place where children "
             'will develop meaningful connections to self and their '
             'ever-changing surrounding environment. All materials will be '
             'supplied.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Please pack a peanut free "
             'snack and drink. Please bring a sturdy container or box, labeled '
             'with student’s first &amp; last name to transport clay objects '
             "home.</span></p><p><span style='font-size: 12px; color: #000000; "
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Camp forms are required at the time of registration, "
             'click </span><a href="files/read?file=files/SAC Summer Art '
             'Studios Forms 2026.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; color: #000000; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>Please review our Summer Art Studio withdrawal "
             '&amp; reimbursement policies </span></em></strong><a '
             'href="files/read?file=files/Summer Art Policies PDF-1-7-26.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/10</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2957686" href="#EventID=2957686" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2957686" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-4" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:48 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:48 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328463',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328463">\n'
             '<h2><a class="lnkCourseDetails" courseid="328463" href="#" '
             'onclick="return false;">Dreamscapes in Watercolor</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/62d99a5d-33fc-40cb-8158-b207e772ec77_GiulianoS_DreamscapesWatercolor.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>LEVEL: ALL LEVELS</span></p><p><span "
             "style='line-height: 115%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Step '
             'into the world of soft gradients and atmosphere in Dreamscapes, '
             'a five-week watercolor course designed for artists of all '
             'experience levels. Through subtle washes, layered color, and '
             'wet-into-wet techniques, students will create ethereal '
             'landscapes and surreal scenes inspired by nature. </span><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>This course encourages "
             'experimentation and creative play in a supportive studio '
             'environment. By the end of the session, students will complete a '
             'series of original landscape paintings, gaining greater '
             'confidence in using watercolor as a medium for expressive '
             'storytelling.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             "checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/S.Giuliano Dreamscapes in '
             'Watercolor.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>S.Giuliano Supply "
             'List.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=137073">Giuliano, Samantha</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$325.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065941" href="#EventID=3065941" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$325.00" eventid="3065941" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:48 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:48 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=264800',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="264800">\n'
             '<h2><a class="lnkCourseDetails" courseid="264800" href="#" '
             'onclick="return false;">Early Years: Exploration &amp; Process '
             'Art (Ages: 3-6)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/6b774a2d-63e5-42ae-b206-7e0863c65cab_BloomL_EarlyYears '
             'Cropped.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style="background: white"><span style="color: rgb(32, '
             '33, 36); font-size: 10.5pt; font-family: Arial; letter-spacing: '
             '0.15pt"><span style="color: rgb(0, 0, 0); background: white; '
             'font-size: 14px; font-family: Arial; letter-spacing: '
             '0.15pt">Process art is a way of exploring materials without '
             'being overly concerned about the final project. It’s a time to '
             'play, create, get messy and just have fun! Your Amazing Little '
             'Artists will use a variety of materials to explore with in this '
             'studio class. Students will be exposed to story books, paint, '
             'oil pastels, watercolors, tissue paper, cutting, gluing and '
             'more! Friday is slime day! This class is hands on and can be '
             'super messy! Please send an extra set of clothes in with your '
             'child, along with a water bottle and a peanut free '
             'snack!</span></span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='background: white; letter-spacing: 0.15pt; font-size: "
             '12px; color: #000000; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif'>We kindly ask that all children attending "
             'this program be potty trained and those who may need it come '
             'prepared with extra clothing.</span></p><p><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Camp forms are '
             'required at the time of registration, click </span><a '
             'href="files/read?file=files/SAC Summer Art Studios Forms '
             '2026.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>here</span></a><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'> to '
             "access.</span></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "background-color: #ffffff; font-size: 13px'>Please review our "
             'Summer Art Studio withdrawal &amp; reimbursement policies '
             '</span></em></strong><a href="files/read?file=files/Summer Art '
             'Policies PDF-1-7-26.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><strong><em><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             'background-color: #ffffff; font-size: '
             "13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/3</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=113806">Bloom, Lori</a></td>\n'
             '<td class="">3 - 7</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2951587" href="#EventID=2951587" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2951587" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-3" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">8/10</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=113806">Bloom, Lori</a></td>\n'
             '<td class="">3 - 7</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2951625" href="#EventID=2951625" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2951625" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-2" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">8/17</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=113806">Bloom, Lori</a></td>\n'
             '<td class="">3 - 7</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2951635" href="#EventID=2951635" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2951635" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-4" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:48 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:48 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=253769',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="253769">\n'
             '<h2><a class="lnkCourseDetails" courseid="253769" href="#" '
             'onclick="return false;">Enameling on the Edge: Intermediate '
             'Level</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/164381380360584_capture.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style="background: white"><span style=\'font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>LEVEL: "
             'INTERMEDIATE-ADVANCED</span></p><p style="background: '
             'white"><span style=\'letter-spacing: 0.15pt; font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>This intermediate technique-based course will "
             'continue the exploration of traditional enamel skills, such as '
             'cloisonné and champlevé. In addition, newer enameling procedures '
             'will be introduced. Classes are small so register early. Open to '
             'only experienced enamelists.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><div><p><span style='color: rgb(0, 0, 0); "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px'>List of Materials:\xa0</span><a "
             'href="files/read?file=files/G.Bradshaw Enameling on the '
             'Edge.pdf" style="color: blue !important" '
             'target="_blank"><u><span style=\'color: #000000; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: '
             "12px'>G.Bradshaw Supply "
             "List.pdf</span></u></a></p></div><p><span style='letter-spacing: "
             '0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>Open Studio: '
             '</span><a '
             'href="files/read?file=files/OpenStudio_Jewelry_SP2026.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'letter-spacing: '
             '0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>Open Studio '
             'Spring 2026 - Jewelry.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75667">Bradshaw, Gail</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$650.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066020" href="#EventID=3066020" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">1</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$650.00" eventid="3066020" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="1" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:48 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:48 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=296149',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="296149">\n'
             '<h2><a class="lnkCourseDetails" courseid="296149" href="#" '
             'onclick="return false;">Encaustic (Hot Wax) Painting for '
             'Beginners</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/b86780fa-7d71-4f5f-822d-0560ee9067dd_Hyon.N_EncausticBeginner.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; background: white; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>LEVEL: "
             "BEGINNER</span></p><p><span style='line-height: 107%; "
             'background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Explore the medium that works with a mixture of beeswax "
             'and pigment, giving your paintings a beautiful surface and '
             'depth. Learn the techniques, methods and history of the medium. '
             'A demonstration will start each class, followed by time to '
             'experiment or create your own painting, with individual '
             'instruction. No painting experience necessary. The school will '
             'supply major equipment. Other supplies can be purchased locally '
             'or online. This is a small class that gives students individual '
             'attention.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/N.Hyon Painting with '
             'Encaustics UPDATED.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>N.Hyon Supply List.pdf</span></a></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/28</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$325.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065982" href="#EventID=3065982" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">6</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$325.00" eventid="3065982" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="6" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:48 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:48 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328464',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328464">\n'
             '<h2><a class="lnkCourseDetails" courseid="328464" href="#" '
             'onclick="return false;">Encaustic Basics: Painting with Wax, '
             'Fire &amp; Color</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/d0bb73f0-096a-46ed-baf6-b2478f34d1fa_LevyH_EncausticBasicsWaxFireColor.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Discover the luminous, tactile world of "
             'encaustic painting. In this beginner-friendly course, you will '
             "explore the unique qualities of</span><span style='font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>\xa0 </span><span style='font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>encaustic paint (beeswax, damar "
             'resin, and pigment), and heat as you build rich, layered '
             'surfaces full of depth and texture. Each week introduces '
             'essential techniques, including preparing your surface, applying '
             'and fusing paint, building layers, creating both smooth and '
             'textured finishes, carving and scraping, and incorporating mixed '
             'media elements. Designed to encourage both skill-building and '
             'personal exploration, this five week class will give you the '
             'confidence and foundation to continue experimenting with this '
             'dynamic and versatile medium on your own artistic '
             'journey.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             "checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/H.Levy Encaustic Basics Painting '
             'with Wax Fire and Color.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>H.Levy Supply List.pdf</span></a></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=139222">Levy, Holli</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$355.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065933" href="#EventID=3065933" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">6</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$355.00" eventid="3065933" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="6" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:48 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:48 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=288858',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="288858">\n'
             '<h2><a class="lnkCourseDetails" courseid="288858" href="#" '
             'onclick="return false;">Experimental Darkroom Projects</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/76e04552-a78c-44c6-b923-f06a04f6d27e_Dunbar_Experimental_Darkroom_Fall23.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>LEVEL: "
             'ALL LEVELS</span></p><p style="background: white"><span '
             'style=\'line-height: 106%; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>In this "
             'analog film photography class, the emphasis will be on '
             'experimental processes in the darkroom. Techniques and processes '
             'introduced include plant-based developers, Multiple Exposure, '
             'Advanced Photograms, Sabettier Effect, Watergrams and more. '
             'Demonstrations on the techniques and artist’s examples will be '
             'shared. No previous darkroom experience needed, come ready to '
             'play and experiment in the darkroom.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: rgb(0, 0, 0)'>List of "
             'Materials: The instructor will share details regarding the class '
             'supplies during the first class '
             "meeting.</span></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: rgb(0, 0, '
             "0); font-size: 12px'>*Class will not meet "
             '11/26*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=87648">Dunbar, Bruce</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$750.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065934" href="#EventID=3065934" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">6</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$750.00" eventid="3065934" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="6" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:48 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:48 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=308494',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="308494">\n'
             '<h2><a class="lnkCourseDetails" courseid="308494" href="#" '
             'onclick="return false;">Experimental Photo Processes (Ages: '
             '8-12)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/4e9310c7-0d5e-4e4e-85e1-f3a9f3858ecc_B '
             'Dunbar Experimental Photo Camp 8-11 Smmr 2025.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Want '
             'to make unique and one of a kind photographic prints? Over the '
             'week different methods of camera and camera-less photography '
             'will be investigated. Emphasis is placed on creativity and '
             'exploration of image making and print making. Come ready to play '
             'and experiment with photographic methods like watergrams, '
             'chemigrams, silver gelatin and more. Student should bring a '
             'digital or smartphone camera if possible.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Student should bring a "
             "digital or smartphone camera. </span><span style='line-height: "
             '107%; font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Please pack a peanut-free "
             "snack and bottle of water.</span></p><p><span style='font-size: "
             '12px; color: #000000; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif'>Camp forms are required at the time of "
             'registration, click </span><a href="files/read?file=files/SAC '
             'Summer Art Studios Forms 2026.pdf" style="color: blue '
             '!important; text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; color: #000000; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>Please review our Summer Art Studio withdrawal "
             '&amp; reimbursement policies </span></em></strong><a '
             'href="files/read?file=files/Summer Art Policies PDF-1-7-26.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/17</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=87648">Dunbar, Bruce</a></td>\n'
             '<td class="">8 - 13</td>\n'
             '<td class="">$510.00</td>\n'
             '<td class="">\n'
             '<a eventid="2954893" href="#EventID=2954893" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$510.00" eventid="2954893" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-1" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:48 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:49 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:49 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=253630',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="253630">\n'
             '<h2><a class="lnkCourseDetails" courseid="253630" href="#" '
             'onclick="return false;">Exploring Drawing, Painting and More! '
             '(Ages: 10-13)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/31f2eb75-ffad-483b-adad-e2f0fcb175e1_Siegel_rabbit.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page" style="color: rgb(0, 0, 0); '
             'font-family: -webkit-standard; letter-spacing: normal"><div '
             'class="layoutArea"><div class="column"><p style=\'color: rgb(0, '
             '0, 0); font-size: medium; font-family: "Times New Roman", '
             'serif\'><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>In this "
             'course students will explore the elements of art (color, form, '
             'line, shape, space, texture, and value) through various artistic '
             'media. Subject matter will include still-life, landscape, '
             'abstraction and more. A different art technique will be '
             'introduced each week giving the young artist a chance to have '
             'fun exploring a variety of '
             'materials.</span></p></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: All "
             'materials are provided for this offering.</span></p><p><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Forms are required at '
             'the time of registration, click </span><a '
             'href="files/read?file=files/School Year Youth Program Forms.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'font-size: 12px; '
             'color: #000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p><strong><em><span "
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>*Class will not meet '
             '11/25*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">04:30 PM – 06:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75726">Siegel, Karen</a></td>\n'
             '<td class="">10 - 14</td>\n'
             '<td class="">$530.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065931" href="#EventID=3065931" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$530.00" eventid="3065931" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:49 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:49 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=190933',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="190933">\n'
             '<h2><a class="lnkCourseDetails" courseid="190933" href="#" '
             'onclick="return false;">Exploring Drawing, Painting and More! '
             '(Ages: 7-9)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/177015447953283_pop '
             'portrait.png"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page" style="color: rgb(0, 0, 0); '
             'font-family: -webkit-standard; letter-spacing: normal"><div '
             'class="layoutArea"><div class="column"><p style=\'color: rgb(0, '
             '0, 0); font-size: medium; font-family: "Times New Roman", '
             'serif\'><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>In this "
             'course students will explore the elements of art (color, form, '
             'line, shape, space, texture, and value) through various artistic '
             'media. Subject matter will include still-life, landscape, '
             'abstraction and more. A different art technique will be '
             'introduced each week giving the young artist a chance to have '
             'fun exploring a variety of '
             'materials.</span></p></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: All "
             'materials are provided for this offering.\xa0</span></p><p><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Forms are required at '
             'the time of registration, click </span><a '
             'href="files/read?file=files/School Year Youth Program Forms.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'font-size: 12px; '
             'color: #000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">04:30 PM – 06:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75726">Siegel, Karen</a></td>\n'
             '<td class="">7 - 10</td>\n'
             '<td class="">$310.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065911" href="#EventID=3065911" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$310.00" eventid="3065911" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">10/27</td>\n'
             '\n'
             '<td class="show-on-mobile">04:30 PM – 06:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75726">Siegel, Karen</a></td>\n'
             '<td class="">7 - 10</td>\n'
             '<td class="">$340.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066022" href="#EventID=3066022" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$340.00" eventid="3066022" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:49 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:49 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=219014',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="219014">\n'
             '<h2><a class="lnkCourseDetails" courseid="219014" href="#" '
             'onclick="return false;">Exploring Soda Firing</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/164442060276174_exploring.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style="color: rgb(0, 0, 0); font-family: '
             '-webkit-standard"><span style=\'font-size: 14px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>LEVEL: INTERMEDIATE - ADVANCED</span></p><div><p><span "
             "style='letter-spacing: 0.15pt; background-color: white; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Create work, glaze and "
             'fire your pottery in our newly built Soda Kiln and learn about '
             'this unique firing process from beginning to end. During the '
             'beginning of the semester we design work with this firing method '
             'in mind. Weekly demos will refine your skills and individual '
             'instruction. Mid semester, we will explore flashing slips and 7 '
             'new glazes, including new crystalline matte and ash glazes. As a '
             'class we will then prep for the firing and strategically load '
             'the kiln. At the end of the semester, we will fire the kiln '
             'collectively and participate in adding wood, baking soda and '
             'salt through the kilning. The class will also have access to the '
             'gas reduction kiln.</span><br/></p></div><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p '
             'style="background-color: rgb(255, 255, 255)"><span style="color: '
             'rgb(0, 0, 0); font-family: Arial; font-size: 12px; '
             'letter-spacing: 0.2px; background-color: rgb(255, 255, 255)">A '
             'firing fee deposit is included in the price. Additional fees '
             'apply for students who exceed the deposit amount. Credits will '
             'be applied for students who do not meet the firing fee deposit '
             'total. Firing fees are not refundable regardless of the outcome '
             'of the piece of artwork.</span></p><p style="background-color: '
             'rgb(255, 255, 255)"><span style=\'font-size: 12px; color: rgb(0, '
             '0, 0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>List of Materials:\xa0</span><span "
             "style='line-height: 12.84px; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Tool Kits &amp; Clay are available for purchase in "
             "class</span></p><p><span style='letter-spacing: 0.15pt; "
             'font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif\'>Open Studio: </span><a '
             'href="files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'letter-spacing: '
             '0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>Open Studio '
             'Fall 2026 - Ceramics.pdf</span></a></p><p><strong><em><span '
             "style='letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>*Class will not meet "
             '9/21*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/14</td>\n'
             '\n'
             '<td class="show-on-mobile">04:00 PM – 07:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$820.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065894" href="#EventID=3065894" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$820.00" eventid="3065894" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-3" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:49 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:49 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=316494',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="316494">\n'
             '<h2><a class="lnkCourseDetails" courseid="316494" href="#" '
             'onclick="return false;">Expressive Abstract Landscapes</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/13364d14-0691-47ce-a105-8e846a0d11a4_NeilsonH_ExpressiveAbstractLandscape.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>In this hands-on workshop, you'll paint on "
             'high-quality archival paper while exploring the expressive '
             'possibilities of abstract landscape art. Guided by artist and '
             'instructor Heather, you’ll learn how to work with GOLDEN fluid '
             'acrylics and mediums to build layered compositions with depth '
             'and vibrancy. Special emphasis will be placed on understanding '
             'and applying color principles—how to mix, balance, and use color '
             'intentionally to create atmosphere, contrast, and emotion in '
             "your work. Whether you're new to abstract painting or looking to "
             'deepen your creative practice, this workshop offers practical '
             'skills, color confidence, and an opportunity to develop your own '
             'expressive style.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/H.Neilson Expressive '
             'Abstract Landscape.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>H.Neilson Supply List.pdf</span></a></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/18</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 03:30 PM</td>\n'
             '<td><a href="#FacultyDetail=105614">Neilson, Heather</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$240.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066008" href="#EventID=3066008" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$240.00" eventid="3066008" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:49 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:49 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321527',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321527">\n'
             '<h2><a class="lnkCourseDetails" courseid="321527" href="#" '
             'onclick="return false;">Faces &amp; Figures! (Ages: '
             '6-9)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/0579851a-e167-4a20-aca8-35281906b747_WatersN_FacesFiguresAges6-9.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Explore faces, figures, and the art of seeing "
             'people through an artist’s eyes! In this fun and expressive '
             'weeklong camp, young artists will learn how to draw and paint '
             'people—starting with simple shapes and growing into full '
             'portraits and figures. Campers will explore how artists capture '
             'personality, movement, and emotion through line, color, and '
             'gesture. Each day introduces a new way to see and represent face '
             'and form —through self-portraits, silhouettes, and lively figure '
             'studies. Using materials like watercolor, acrylic and pastel, '
             'campers will experiment with proportion, expression, and '
             'creative backgrounds that bring their portraits to '
             "life.</span><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>\xa0 '
             "</span><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>By '
             'week’s end, each artist will have a colorful collection of '
             'portraits and figure drawings to share in a cheerful end-of-week '
             'art show.</span></p><p class="MsoNormal"><span '
             "style='line-height: 106%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Activities include:</span></p><ul><li><p><span "
             "style='line-height: 106%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Drawing faces and figures using fun observation "
             'games</span></p></li><li><p class="MsoNormal"><span '
             "style='line-height: 106%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Exploring emotion, gesture, and proportion</span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>\xa0\xa0\xa0\xa0\xa0"
             '</span></p></li><li><p class="MsoNormal"><span '
             "style='line-height: 106%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Creating self-portraits and group "
             'compositions</span></p></li><li><p class="MsoNormal"><span '
             "style='line-height: 106%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Learning from famous portrait and figure "
             "artists</span><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>\xa0\xa0\xa0\xa0\xa0\xa0\xa0</span></p></li><li><p "
             'class="MsoNormal"><span style=\'line-height: 106%; font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>End-of-week art show for family and "
             'friends</span></p></li></ul><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Parents: Please pack a "
             'water bottle as well as a peanut free snack.</span></p><p><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Camp forms are '
             'required at the time of registration, click </span><a '
             'href="files/read?file=files/SAC Summer Art Studios Forms '
             '2026.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>here</span></a><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'> to '
             "access.</span></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "background-color: #ffffff; font-size: 13px'>Please review our "
             'Summer Art Studio withdrawal &amp; reimbursement policies '
             '</span></em></strong><a href="files/read?file=files/Summer Art '
             'Policies PDF-1-7-26.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><strong><em><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             'background-color: #ffffff; font-size: '
             "13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/10</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=132562">Waters, Nell</a></td>\n'
             '<td class="">6 - 10</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2958039" href="#EventID=2958039" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2958039" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-3" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:49 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:49 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=166018',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="166018">\n'
             '<h2><a class="lnkCourseDetails" courseid="166018" href="#" '
             'onclick="return false;">Figure Drawing</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/158472801892202_mercedes.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='color: rgb(0, 0, 0); letter-spacing: "
             'normal; font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif'>LEVEL: "
             "INTERMEDIATE-ADVANCED</span></p><p><span style='color: rgb(0, 0, "
             '0); letter-spacing: normal; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif\'>Learn the human '
             'figure’s complex construction while heightening your ability to '
             'draw a figure from observation. Working from the model, emphasis '
             'on gesture, balance and proportion will be stressed throughout '
             'to aid in the illusion of credibility posed figures. Students '
             'should leave this class with a better understanding of the '
             'figure’s key landmarks, form sense and construction as well as a '
             'greater ability to render a figure from life and from '
             'memory.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials:\xa0"
             '</span><a href="files/read?file=files/J.Wiest Figure '
             'Drawing.pdf" style="text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>J.Wiest Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet "
             '11/26*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75733">Wiest, Justin</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$755.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065935" href="#EventID=3065935" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">14</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$755.00" eventid="3065935" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="14" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:49 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:49 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328446',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328446">\n'
             '<h2><a class="lnkCourseDetails" courseid="328446" href="#" '
             'onclick="return false;">Figure Drawing Basics: Clothed &amp; '
             'Costumed Quick Sketch</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/3052799d-f55f-4fae-899a-543ec643b467_DeLocaJ_FigureDrawingBasicsClothedCostumedQuickSketch.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>LEVEL: ALL LEVELS</span></p><p><span "
             "style='line-height: 115%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Loosen '
             'up your figure drawing and build strong foundations through '
             'clothed and costumed figure studies in a fun, energetic studio '
             'environment. Using quick sketch exercises, short poses, and '
             'clear demos, students will learn a structural-gesture approach '
             'to drawing the human figure with confidence. Topics include '
             'rhythm lines, core forms, drapery, folds, and shadow mapping. '
             'Students will also work through longer lay-ins designed to '
             'strengthen observation, structure, and drawing '
             "organization.</span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>\xa0 </span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Every week will feature artist spotlights, course "
             'handouts, instructor demos, and lectures designed to help '
             'students see clearly, simplify complex forms, and create more '
             'dynamic drawings. All levels welcome.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             "checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/J.DeLoca Quick Sketch Gesture '
             'Drawing.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>J.DeLoca Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet "
             '10/7*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=135676">DeLoca, Jonathan</a></td>\n'
             '<td class="">18 - 99</td>\n'
             '<td class="">$420.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065917" href="#EventID=3065917" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">9</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$420.00" eventid="3065917" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="9" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:49 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:49 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=316563',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="316563">\n'
             '<h2><a class="lnkCourseDetails" courseid="316563" href="#" '
             'onclick="return false;">Figure Drawing Basics: Quick '
             'Sketch</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/13ec1ca5-9df3-4244-b64f-e921d1dfa1b1_DeLocaJ_Quick '
             'Sketch Gesture Drawing.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "ALL LEVELS</span></p><p><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Loosen up your figure drawing and build strong "
             'foundations in a fun, energetic environment.</span><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>\xa0</span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Through quick sketch "
             'exercises, short poses, and clear demos, you’ll learn a '
             'structural, gestural approach to drawing the human figure. Based '
             'on the Frank Reilly method - simplified to demystify the process '
             '- this class helps you see clearly, simplify, and build '
             "confidence.</span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>\xa0</span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>All levels welcome.</span></p><p></p>\n"
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='line-height: 115%; background: white; font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Open to students ages 16 and "
             "older</span></p><p><span style='font-size: 12px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>List of Materials: </span><a "
             'href="files/read?file=files/J.DeLoca Quick Sketch Gesture '
             'Drawing.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>J.DeLoca Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet "
             '11/25*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">11/4</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=135676">DeLoca, Jonathan</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$350.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066031" href="#EventID=3066031" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">9</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$350.00" eventid="3066031" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="9" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:49 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:49 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=269915',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="269915">\n'
             '<h2><a class="lnkCourseDetails" courseid="269915" href="#" '
             'onclick="return false;">Figure Sculpture Revisited</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/41fd1972-5011-4858-b7d4-1b0a91f68e9e_MurphyJ_FigureSculptureRevisited.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "ALL LEVELS</span></p><p><span style='line-height: 107%; "
             'background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>This '
             'course\xa0encourages students to create their own reality of a '
             'live model in\xa0clay. Guided by the fundamentals of building '
             'the human figure, students will learn a practical\xa0approach to '
             'anatomy, proportion, and design. Students may choose their\xa0'
             'own approach to their projects, including bas-relief or '
             '3-dimensional images of the full figure, head, or fragment. The '
             'sculpture will be modeled in terra cotta clay, hollowed, air '
             'dried and fired. There will be an additional fee for firing '
             "pieces.\xa0\xa0</span></p><p><span style='line-height: 107%; "
             'background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>IMPORTANT: An armature designed specifically for fired "
             "ceramic sculpture is </span><b><span style='line-height: 107%; "
             'background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>mandatory for the first day of class, </span></b><span "
             "style='line-height: 107%; background: white; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>and any student without one will be unable to "
             "begin</span><b><span style='line-height: 107%; background: "
             'white; font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>. </span></b><span "
             "style='line-height: 107%; background: white; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Armatures are built on demand and may be ordered "
             "directly from the instructor </span><b><span style='line-height: "
             '107%; background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>up to '
             'one week prior to course start</span></b><span '
             "style='line-height: 107%; background: white; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>. To request an armature, please contact the "
             'school office by phone at (203) 966-9700 x 2 or by email at '
             'Kelly@Silvermineart.org.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><div><p><span style='letter-spacing: 0.2px; "
             'background-color: rgb(255, 255, 255); font-size: 12px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>A firing fee deposit is included in the price. "
             'Additional fees apply for students who exceed the deposit '
             'amount. Reimbursements will be applied for students who do not '
             'meet the firing fee deposit total. </span><span style="color: '
             'rgb(0, 0, 0); font-family: Arial; font-size: 12px; '
             'letter-spacing: 0.2px; background-color: rgb(255, 255, '
             '255)">Firing fees are not refundable regardless of the outcome '
             "of the piece of artwork.</span></p><p><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/J.Murphy Figure Sculpture '
             'Updated.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>J.Murphy Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet "
             '11/3*</span></em></strong></p></div><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/22</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=117109">Murphy, Julia</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$695.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065968" href="#EventID=3065968" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">5</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$695.00" eventid="3065968" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="5" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:49 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:50 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:50 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328404',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328404">\n'
             '<h2><a class="lnkCourseDetails" courseid="328404" href="#" '
             'onclick="return false;">Firing Orientation &amp; Certification '
             'Workshop</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/178353333150957_firing '
             'orientation image.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='color: #060606; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: '
             "14px'>Designed specifically for Members of the communal &amp; "
             'independent studio, </span><a '
             'href="https://www.silvermineart.org/ceramics-at-andrews-hall/" '
             'title=""><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #051FF9'>Ceramics "
             "at Andrews Hall</span></a><span style='color: #060606; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 14px'>, this workshop introduces members to "
             'Silvermine’s kiln procedures, safety expectations, loading '
             'standards, approved materials, and firing protocols. Members '
             'will review best practices for preparing work, loading electric '
             'kilns, and build the skills needed to fire confidently and '
             'responsibly in a communal studio setting.</span></p><p><span '
             'style=\'color: #060606; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px'>At the completion of the "
             'workshop, members will receive one of the following '
             'certification outcomes: </span></p><ul style="list-style-type: '
             'square"><li><p><span style=\'color: #060606; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; font-size: '
             "14px'>1.)\xa0Approved for independent "
             "firing</span></p></li><li><p><span style='color: #060606; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 14px'>2.)\xa0Provisionally approved with the first "
             'firing supervised or reviewed</span></p></li><li><p><span '
             'style=\'color: #060606; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px'>3.)\xa0Not yet approved "
             'with additional training required.</span></p></li></ul><p><span '
             'style=\'color: #060606; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px'>Our goal is to support "
             'each member in developing the knowledge, confidence, and care '
             'needed to safely use the kilns while respecting the studio, '
             'equipment, and work of fellow members.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='color: rgb(0, 0, 0); font-size: 12px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>This workshop is open '
             "</span><strong><span style='color: rgb(0, 0, 0); font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>only</span></strong><span style='color: rgb(0, 0, "
             '0); font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif'> to Members of </span><a "
             'href="https://www.silvermineart.org/ceramics-at-andrews-hall/"><span '
             "style='color: rgb(0, 0, 0); font-size: 12px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Ceramics at Andrews '
             "Hall</span></a><span style='color: rgb(0, 0, 0); font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>. </span><a "
             'href="https://www.silvermineart.org/ceramics-at-andrews-hall/" '
             'title=""><strong><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "background-color: #ffffff; color: #0013FF'>Learn more about this "
             'independent &amp; communal pottery '
             'studio!</span></strong></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/3</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$45.00</td>\n'
             '<td class="">\n'
             '<a eventid="3064902" href="#EventID=3064902" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">4</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$45.00" eventid="3064902" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="4" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/28</td>\n'
             '\n'
             '<td class="show-on-mobile">01:30 PM – 03:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$45.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065177" href="#EventID=3065177" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">6</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$45.00" eventid="3065177" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="6" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">10/19</td>\n'
             '\n'
             '<td class="show-on-mobile">01:30 PM – 03:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$45.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065187" href="#EventID=3065187" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">7</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$45.00" eventid="3065187" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="7" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">11/23</td>\n'
             '\n'
             '<td class="show-on-mobile">01:30 PM – 03:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$45.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066054" href="#EventID=3066054" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$45.00" eventid="3066054" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">12/7</td>\n'
             '\n'
             '<td class="show-on-mobile">01:30 PM – 03:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$45.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065219" href="#EventID=3065219" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$45.00" eventid="3065219" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:50 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:50 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=319170',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="319170">\n'
             '<h2><a class="lnkCourseDetails" courseid="319170" href="#" '
             'onclick="return false;">Floral Explorations in '
             'Watercolor</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/1b411605-2275-4a8e-a0a3-a7da045d2b42_Giuliano-S-FloralExplorations.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>LEVEL: ALL LEVELS</span></p><p><span "
             "style='line-height: 106%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Expand '
             'your watercolor skill set in Floral Explorations. Over the '
             'course of six weeks, we will work with different flowers, '
             'studying their composition, structure, and texture through '
             'playful loose studies and refined pieces. We will practice '
             'gradients, wet into wet, wet into damp, layering, and '
             'translucent techniques with a variety of materials. This course '
             'is an opportunity to play, experiment, and hone your watercolor '
             "painting practices</span><span style='line-height: 106%; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>. </span><span "
             "style='line-height: 115%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Repeat '
             'students are welcome and will explore new &amp; different '
             'florals each week!</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/S.Giuliano Floral '
             'Explorations in Watercolor.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>S.Giuliano Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet "
             '7/14*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=137073">Giuliano, Samantha</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$365.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065899" href="#EventID=3065899" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">9</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$365.00" eventid="3065899" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="9" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:50 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:50 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328465',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328465">\n'
             '<h2><a class="lnkCourseDetails" courseid="328465" href="#" '
             'onclick="return false;">Fluid Impressions: Encaustic '
             'Monoprinting Workshop</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/579a4021-92d7-4e12-9d98-8c09cbcf114b_LevyH_FluidImpressionsMonoprintingEncaustic.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Discover the expressive possibilities of "
             'encaustic monoprinting in this hands-on workshop.</span><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>\xa0</span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Encaustic paint (wax, "
             'damar resin and pigment) is melted on a hot pallet in a variety '
             'of ways where you can influence the design and the way the paint '
             'moves before pulling a one of a kind print. This workshop is '
             'suitable for both beginners and experienced artists interested '
             'in expanding their encaustic practice. All materials and tools '
             'will be introduced, along with demonstrations and guided '
             "experimentation.</span><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>\xa0</span><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Emphasis will be placed on process over "
             'perfection, allowing each print to reveal its own unique '
             "character. By the end of the session, you'll leave with a "
             'collection of original monoprints and a deeper understanding of '
             'how to integrate encaustic printing into your creative '
             'process.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/H.Levy Fluid Impressions Encaustic '
             'Monoprinting Workshop.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>H.Levy Supply List.pdf</span></a></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/3</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=139222">Levy, Holli</a></td>\n'
             '<td class="">18 - 99</td>\n'
             '<td class="">$165.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065987" href="#EventID=3065987" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">7</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$165.00" eventid="3065987" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="7" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:50 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:50 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=326084',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="326084">\n'
             '<h2><a class="lnkCourseDetails" courseid="326084" href="#" '
             'onclick="return false;">Folk Art Meditation in '
             'Watercolor</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/7cb338d5-f37e-44e1-b989-60e2b10c3fd0_GiulianoFolkArt '
             'Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "ALL LEVELS</span></p><p><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>This five-week course explores watercolor "
             'painting as a reflective, meditative practice inspired by global '
             'folk art traditions. Students will study the visual language of '
             'folk art: its patterns, symbols, and story, while using '
             'watercolor as a fluid, expressive medium to cultivate focus and '
             'creative presence. Each session integrates observation and '
             'intentional mark-making, encouraging students to slow down and '
             'engage their senses.</span></p><p class="MsoNormal"><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Students will develop "
             'foundational watercolor skills including washes, gradients, '
             'shape study, the wet into wet method, and color blending, '
             'developing an illustrative body of work that displays their '
             'individual folk-inspired aesthetics and storytelling. '
             'Restorative, relaxing, and fun! Open to beginner and experienced '
             'painters.\xa0</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/S.Giuliano Folk Art '
             'Meditation in Watercolor.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>S.Giuliano Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>*Class will not meet "
             '7/30*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/29</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=137073">Giuliano, Samantha</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$325.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066024" href="#EventID=3066024" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">17</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$325.00" eventid="3066024" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="17" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:50 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:50 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=308914',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="308914">\n'
             '<h2><a class="lnkCourseDetails" courseid="308914" href="#" '
             'onclick="return false;">Foundational Landscape '
             'Painting</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/284058f8-3b67-419e-8aff-9632bf794be0_McCollumRFoundationalLandscapePainting.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "ALL LEVELS</span></p><p><span style='line-height: 107%; "
             'letter-spacing: .15pt; background: white; font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>This class focuses on the foundational "
             'principles of landscape painting. Students will learn the three '
             'main components of the landscape. Also how to create depth using '
             'color and tonal values. Understanding and applying aerial '
             'perspective, seeing and depicting light and shadow on forms, how '
             'to use rules/tools of landscape composition and using different '
             'brush strokes to depict various textures in nature will be '
             'covered. Concepts from representational to impressionism and '
             'their use in the modern landscape will be discussed. There will '
             'be instructor demos, handouts and individual '
             'guidance.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Students ages 16 and up "
             "are welcome.</span></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/R.McCollum Supply Master List.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'font-size: 12px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>R.McCollum Supply "
             'List.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=127941">McCollum, Rick</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$645.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065905" href="#EventID=3065905" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$645.00" eventid="3065905" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:50 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:50 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=296090',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="296090">\n'
             '<h2><a class="lnkCourseDetails" courseid="296090" href="#" '
             'onclick="return false;">Foundational Painting I</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/3324551d-4710-489b-b039-b82f85eac00a_McCollumR_FoundationalPaintingI.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>LEVEL: "
             "BEGINNER</span></p><p><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>This class will concentrate on the fundamentals and "
             'processes of representational painting. Emphasis will be '
             'painting from the still life and photos. Students will learn how '
             'to analyze,  interpret and apply light to form and space. Class '
             'objectives are learning how to use the tools of painting: '
             'brushes, how to mix paint, learning value, (the lightness and '
             'darkness of an object), using edge control, (soft or hard edges '
             'when painting), the properties of color, painting multiple '
             'objects with a focal point or points, pictorial composition, '
             'painting highly reflective objects like glass and metal, '
             'painting a portrait, lighting and photographing the human head, '
             'and learning to mix flesh tones.  </span></p><p><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 14px; color: #000000'>There will be "
             'instructor demos and handouts along with individual student '
             "guidance. </span></p><p><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>No prior painting experience is necessary, but some "
             'drawing ability is needed.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/R.McCollum Supply Master '
             'List.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>R.McCollum Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet "
             '9/21*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/14</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=127941">McCollum, Rick</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$605.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065890" href="#EventID=3065890" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$605.00" eventid="3065890" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:50 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:50 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=308915',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="308915">\n'
             '<h2><a class="lnkCourseDetails" courseid="308915" href="#" '
             'onclick="return false;">Foundational Painting II</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/83e5ea46-1716-4ecf-af96-0c624b47a9b9_McCollumRFoundationalPaintingII.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "INTERMEDIATE</span></p><p><span style='line-height: 107%; "
             'letter-spacing: .15pt; background: white; font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>This class will expand on Foundational Painting "
             'I and the applications and principles of painting. The student '
             'will expand on their technical skills in paint application, '
             'value relationships, shape design, shape bridging and color and '
             'value simplification. The exploration and application of '
             'pictorial composition will be stressed. Class concentration will '
             'be on the finished total along with developing a personal '
             'artistic point of view. Students will be able to pick their own '
             'subject matter or point of interest. There will be instructor '
             'demos, hand outs and individual guidance. Students should have '
             'had Foundational Painting I (with Instructor Rick McCollum) or '
             'prior painting classes or knowledge.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/R.McCollum Supply Master '
             'List.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>R.McCollum Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet "
             '9/21*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/14</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=127941">McCollum, Rick</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$605.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066082" href="#EventID=3066082" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">9</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$605.00" eventid="3066082" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="9" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:50 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:50 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328466',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328466">\n'
             '<h2><a class="lnkCourseDetails" courseid="328466" href="#" '
             'onclick="return false;">Foundations in Clay: Handbuilding, Wheel '
             '&amp; Surface</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/6d422a96-e570-4765-9e1e-c612c9089fec_DunnZ_Foundations.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "BEGINNER-INTERMEDIATE</span></p><p><span style='line-height: "
             '115%; font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>In this beginner-friendly "
             'ceramics course, students will be introduced to a variety of '
             'approaches for creating both functional and sculptural work in '
             'clay. Through handbuilding techniques such as pinch, coil, and '
             'slab construction, students will build a strong foundation while '
             'exploring fresh projects and creative possibilities. Students '
             'will also be introduced to the potter’s wheel and learn the '
             'basics of forming functional vessels. A variety of surface '
             'decoration and glazing techniques will be explored, giving '
             'students the opportunity to develop their pieces from start to '
             'finish.</span></p><p class="MsoNormal"><span '
             "style='line-height: 115%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>This '
             'course is perfect for those beginning their clay journey, as '
             'well as students with some experience who would like to '
             'strengthen their handbuilding, sculptural, and foundational '
             'ceramics skills in a supportive studio '
             'environment.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             'checkout.</span></strong></p><p><span style="color: rgb(0, 0, '
             '0); font-family: Arial; font-size: 12px; letter-spacing: 0.2px; '
             'background-color: rgb(255, 255, 255)">A firing fee deposit is '
             'included in the price. Additional fees apply for students who '
             'exceed the deposit amount. Credits will be applied for students '
             'who do not meet the firing fee deposit total. Firing fees are '
             'not refundable regardless of the outcome of the piece of '
             'artwork.</span></p><p style="background-color: rgb(255, 255, '
             '255)"><span style=\'font-size: 12px; color: rgb(0, 0, 0); '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>List of Materials:\xa0</span><span "
             "style='line-height: 12.84px; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Tool Kits &amp; Clay are available for purchase in "
             "class</span></p><p><span style='letter-spacing: 0.15pt; "
             'font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif\'>Open Studio: </span><a '
             'href="files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'letter-spacing: '
             '0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>Open Studio '
             'Fall 2026 - Ceramics.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=89463">Dunn, Zach</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$780.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065900" href="#EventID=3065900" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$780.00" eventid="3065900" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-1" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:50 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:50 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=292746',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="292746">\n'
             '<h2><a class="lnkCourseDetails" courseid="292746" href="#" '
             'onclick="return false;">Fused Silver Dust Rings</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/09a12c08-d442-4ed0-9cfb-d08afe2abae4_Henriques.M_SilverDust.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>What "
             'kind of dust is the cool kind? Silver dust! We will create an '
             'organic textured ring shank by fusing silver dust, create a '
             'bezel for a stone, and combine the two for a truly spectacular '
             'one of a kind ring! Some of the techniques learned will be how '
             'to figure and calculate ring size, silver fusing, bezel '
             'creation, soldering, and stone setting. (stones will '
             'vary)</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='font-weight: 400; letter-spacing: 0.15pt; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>List of Materials: All materials are provided "
             'for this offering and included in the class price.\xa0'
             "</span><span style='font-weight: 400; background: white; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px; color: #000000'>Students are required to wear "
             'closed toe shoes, and long hair must be tied back.\xa0'
             '</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/10</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=103494">Henriques, Maureen</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$295.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065995" href="#EventID=3065995" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">5</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$295.00" eventid="3065995" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="5" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:50 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:51 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=326044',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="326044">\n'
             '<h2><a class="lnkCourseDetails" courseid="326044" href="#" '
             'onclick="return false;">Get Up and Shoot with your Smartphone '
             'Camera (a little technical)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/8e779d79-86fe-436a-bc63-4c3777bea19c_GlassP_GetUpShootSmartphoneCamera.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>This "
             'hands-on class gets students out of their seats and creating '
             'right away.</span><span style=\'font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>\xa0 </span><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>After covering basic photography principles and "
             'smartphone camera controls, the focus will shift to shooting in '
             'the real world. Students will learn how to spot compelling '
             'subjects in their surroundings, pose classmates in creative '
             'ways, and apply composition techniques that will elevate their '
             'images. And for those who want them, props supplied by the '
             'instructor can be used to add another layer of fun and '
             'creativity to their pictures. Once the photographs are taken, '
             'the class wraps up with a brief introduction to the editing '
             'process, with the students learning how images can be refined '
             'and even transformed into eye-catching works of art.</span><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 14px; color: #000000'>\xa0</span></p><p "
             'class="MsoNormal"><span style=\'font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>A very complete handout will be distributed on arrival. "
             'It contains lots of information and will greatly simplify the '
             "process of understanding what's being taught in class. You'll "
             'also find it quite useful for review after you get '
             'home.</span><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>\xa0 "
             '</span><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>Don't "
             "forget to bring your fully charged smartphone, the smartphone's "
             'charger, and any accessories you have.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new programs at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: Students should bring a "
             'smartphone, battery charger, paper and pen for taking '
             'notes.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/22</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=132646">Glass, Peter</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$185.00</td>\n'
             '<td class="">\n'
             '<a eventid="3006468" href="#EventID=3006468" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$185.00" eventid="3006468" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:51 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321476',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321476">\n'
             '<h2><a class="lnkCourseDetails" courseid="321476" href="#" '
             'onclick="return false;">HELLO KITTY-ish, even DOGGY-ish, or '
             'CRITTERy-ish: Mixed Media with Clay, Paint, Drawing (Ages: '
             '5-10)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/608be0a7-b542-4eee-9baa-69b67042c335_KotM_HelloKittyDoggyCritter.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Where '
             "painting and clay sculpting are included every week, mARTa's "
             'Summer Art Studio encourages open ended experimentation, '
             'creative expression, exploration, and appreciation, of art. '
             'While building friendships and learning about the properties of '
             'art materials, children are guided to engage with imagination, '
             'and to contribute meaning to artwork. They will be introduced to '
             'a variety of techniques while exploring play in art, and they '
             'will develop their creative abilities to self-express and see '
             'and experience the world in new ways. Each day will include a '
             'variety of materials, surprises, outdoor recess with games and '
             'stories about well-known artists. Art materials may include '
             'watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, '
             'things that shine, beads, paint markers, more. Gentle '
             'discussions about the artwork in progress and art history will '
             'be introduced.</span></p><p class="MsoNormal"><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Throughout the week "
             'children may work in the art studio, explore the lush Silvermine '
             'outdoor environment, and visit the Silvermine galleries &amp; '
             "exhibitions. mARTa's sensory rich studio environment is designed "
             "to make one's learning more complex while supporting imagination "
             "and play in a caring environment. It's a place where children "
             'will develop meaningful connections to self and their '
             'ever-changing surrounding environment. All materials will be '
             'supplied.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Please pack a peanut free "
             'snack and drink. Please bring a sturdy container or box, labeled '
             'with student’s first &amp; last name to transport clay objects '
             "home.</span></p><p><span style='font-size: 12px; color: #000000; "
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Camp forms are required at the time of registration, "
             'click </span><a href="files/read?file=files/SAC Summer Art '
             'Studios Forms 2026.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; color: #000000; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>Please review our Summer Art Studio withdrawal "
             '&amp; reimbursement policies </span></em></strong><a '
             'href="files/read?file=files/Summer Art Policies PDF-1-7-26.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/17</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2957698" href="#EventID=2957698" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2957698" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-11" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:51 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321477',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321477">\n'
             '<h2><a class="lnkCourseDetails" courseid="321477" href="#" '
             'onclick="return false;">How Artists Have Used Rainbows in '
             'Paintings: Painting, Drawing, Clay Exploration (Ages: '
             '5-10)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/0abb3f52-54c8-4984-9aa4-c20796809072_marta '
             'kot week 8 pm.jpeg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Where '
             "painting and clay sculpting are included every week, mARTa's "
             'Summer Art Studio encourages open ended experimentation, '
             'creative expression, exploration, and appreciation, of art. '
             'While building friendships and learning about the properties of '
             'art materials, children are guided to engage with imagination, '
             'and to contribute meaning to artwork. They will be introduced to '
             'a variety of techniques while exploring play in art, and they '
             'will develop their creative abilities to self-express and see '
             'and experience the world in new ways. Each day will include a '
             'variety of materials, surprises, outdoor recess with games and '
             'stories about well-known artists. Art materials may include '
             'watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, '
             'things that shine, beads, paint markers, more. Gentle '
             'discussions about the artwork in progress and art history will '
             'be introduced.</span></p><p class="MsoNormal"><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Throughout the week "
             'children may work in the art studio, explore the lush Silvermine '
             'outdoor environment, and visit the Silvermine galleries &amp; '
             "exhibitions. mARTa's sensory rich studio environment is designed "
             "to make one's learning more complex while supporting imagination "
             "and play in a caring environment. It's a place where children "
             'will develop meaningful connections to self and their '
             'ever-changing surrounding environment. All materials will be '
             'supplied.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Please pack a peanut free "
             'snack and drink. Please bring a sturdy container or box, labeled '
             'with student’s first &amp; last name to transport clay objects '
             "home.</span></p><p><span style='font-size: 12px; color: #000000; "
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Camp forms are required at the time of registration, "
             'click </span><a href="files/read?file=files/SAC Summer Art '
             'Studios Forms 2026.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; color: #000000; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>Please review our Summer Art Studio withdrawal "
             '&amp; reimbursement policies </span></em></strong><a '
             'href="files/read?file=files/Summer Art Policies PDF-1-7-26.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/3</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2957720" href="#EventID=2957720" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">6</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2957720" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="6" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:51 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=326046',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="326046">\n'
             '<h2><a class="lnkCourseDetails" courseid="326046" href="#" '
             'onclick="return false;">Impressionist Figure Painting Intensive: '
             'Then &amp; Now – Key Artists as Living Guides</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/ed6a45e3-7c2e-449a-8ed2-a5333e3200e0_WrightD '
             'Figure Intensive Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>This '
             'five-day intensive is an immersive exploration of Impressionist '
             'figure painting that connects historical tradition with '
             'contemporary practice. Guided each day by a master artist whose '
             'work reflects a distinct stage in the painter’s development, '
             'students will engage with these influences not as distant '
             'historical references, but as living companions in the act of '
             'seeing and painting. Rooted in the principle </span><em><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Lux Ante "
             "Formam</span></em><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>—light before form—the course begins not with detail, "
             'but with light, atmosphere, and presence.</span></p><p><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Over the course of the "
             'week, students will move through a thoughtful progression from '
             'looking and seeing to insight, vision, and inspired expression. '
             'As they work from structure to sensitivity, from design to '
             'light, participants will deepen their understanding of how light '
             'animates the figure and learn to translate observation into '
             'paintings that feel immediate, luminous, and fully alive in the '
             'spirit of Impressionist expression.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Curriculum Outline: "
             '</span><a '
             'href="files/read?file=files/WrightD_AdditionalInfo_CurriculumOutline.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'font-size: 12px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>D.Wright Curriculum "
             "Outline.pdf</span></a></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/D.Wright Impressionist Figure '
             'Painting Intensive Then and Now.pdf" style="color: blue '
             '!important; text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>D.Wright Supply List.pdf</span></a></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/17</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75734">Wright, Dmitri</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$560.00</td>\n'
             '<td class="">\n'
             '<a eventid="3006462" href="#EventID=3006462" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$560.00" eventid="3006462" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-1" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:51 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328467',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328467">\n'
             '<h2><a class="lnkCourseDetails" courseid="328467" href="#" '
             'onclick="return false;">Intaglio Printmaking: Etching and '
             'More</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/0387313a-1b2a-47ff-8382-5c93716a7925_MurdochA_IntaglioPrintmakingEtchingMore_2nd.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>LEVEL: ALL LEVELS</span></p><p><span "
             "style='line-height: 115%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Let\'s '
             'make etchings! We will be covering the basics of intaglio, a '
             'printmaking method in which lines/other textures are etched onto '
             'a copper plate. We will focus on black and white imagery using a '
             'variety of techniques. Students will create images able to be '
             'printed in multiple.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             "checkout.</span></strong></p><p><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>List of Materials: </span><a "
             'href="files/read?file=files/A.Murdoch Intaglio Printmaking '
             'Etching and More.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>A.Murdoch Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>*Class will not meet "
             '9/21*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/14</td>\n'
             '\n'
             '<td class="show-on-mobile">06:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=124040">Murdoch, Andrew</a></td>\n'
             '<td class="">18 - 99</td>\n'
             '<td class="">$445.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065897" href="#EventID=3065897" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$445.00" eventid="3065897" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">11/2</td>\n'
             '\n'
             '<td class="show-on-mobile">06:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=124040">Murdoch, Andrew</a></td>\n'
             '<td class="">18 - 99</td>\n'
             '<td class="">$445.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066028" href="#EventID=3066028" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$445.00" eventid="3066028" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:51 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=191684',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="191684">\n'
             '<h2><a class="lnkCourseDetails" courseid="191684" href="#" '
             'onclick="return false;">Intermediate &amp; Advanced '
             'Ceramics</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/8b9df581-8e8d-417b-b9f8-c553f12a88ff_Houston '
             'pot.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page" style="color: rgb(0, 0, 0); '
             'font-family: -webkit-standard; letter-spacing: normal" '
             'title="Page 13"><div class="layoutArea"><div class="column"><p '
             "style='color: rgb(0, 0, 0); font-size: medium; font-family: "
             '"Times New Roman", serif; letter-spacing: normal\'><span '
             'style="font-family: Arial; font-size: 14px">LEVEL: '
             "INTERMEDIATE-ADVANCED</span></p><p style='color: rgb(0, 0, 0); "
             'font-size: medium; font-family: "Times New Roman", serif; '
             'letter-spacing: normal\'><span style="font-family: Arial; '
             'font-size: 14px">Explore the process of intermediate to advanced '
             'throwing, hand building, construction and glazing techniques. '
             'Students will build on basic skills to learn how to make complex '
             'forms and interesting shapes using both hand building and wheel '
             'throwing techniques. Everyone will receive individual '
             'instruction in addition to class demos and will be encouraged to '
             'work independently on '
             'projects.</span></p></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style="color: rgb(0, 0, 0); font-family: Arial; font-size: 12px; '
             'letter-spacing: 0.2px; background-color: rgb(255, 255, 255)">A '
             'firing fee deposit is included in the price. Additional fees '
             'apply for students who exceed the deposit amount. Credits will '
             'be applied for students who do not meet the firing fee deposit '
             'total. Firing fees are not refundable regardless of the outcome '
             'of the piece of artwork.</span></p><p style="background-color: '
             'rgb(255, 255, 255)"><span style=\'font-size: 12px; color: rgb(0, '
             '0, 0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>List of Materials:\xa0</span><span "
             "style='line-height: 12.84px; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Tool Kits &amp; Clay are available for purchase in "
             "class</span></p><p><span style='letter-spacing: 0.15pt; "
             'font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif\'>Open Studio: </span><a '
             'href="files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'letter-spacing: '
             '0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>Open Studio '
             'Fall 2026 - Ceramics.pdf</span></a></p><p><strong><em><span '
             "style='letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>*Class will not meet "
             '11/25*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75693">Houston, Heather</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$740.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065920" href="#EventID=3065920" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">2</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$740.00" eventid="3065920" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="2" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:51 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=191866',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="191866">\n'
             '<h2><a class="lnkCourseDetails" courseid="191866" href="#" '
             'onclick="return false;">Intermediate Jewelry &amp; '
             'Silversmithing</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/164381433541496_capture.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page" style="color: rgb(0, 0, 0); '
             'font-family: -webkit-standard; letter-spacing: normal"><div '
             'class="layoutArea"><div class="column"><p><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>LEVEL: "
             "INTERMEDIATE-ADVANCED</span></p><p><b><i><span style='font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Requirements</span></i><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>: 2 or more "
             "</span><i><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Basic '
             'Jewelry classes or equivalent and/or approval from the '
             "instructor.\xa0</span></i></b><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>This intermediate jewelry class is designed to "
             'build on metalworking skills learned in the Basic Jewelry '
             'course, with the goal of refining proficiency and adding more '
             'advanced jewelry techniques and design abilities. Project '
             'choices are flexible focusing on student needs and enhancing the '
             'student’s skill set.</span></p></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><div><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials:\xa0</span><a "
             'href="files/read?file=files/G.Bradshaw Intermediate Jewelry  '
             'Silversmithing.pdf" style="color: blue !important" '
             'target="_blank"><u><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>G.Bradshaw Supply "
             "List.pdf</span></u></a></p></div><p><span style='letter-spacing: "
             '0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>Open Studio: '
             '</span><a '
             'href="files/read?file=files/OpenStudio_Jewelry_SP2026.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'letter-spacing: '
             '0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>Open Studio '
             'Spring 2026 - Jewelry.pdf</span></a></p><p><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000; font-size: 12px'>*Monday's class "
             'will not meet 9/21, '
             '10/12*</span></em></strong></p><p><strong><em><span '
             "style='letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>*Wednesday's classes will not meet "
             '11/25*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/14</td>\n'
             '\n'
             '<td class="show-on-mobile">06:30 PM – 09:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75667">Bradshaw, Gail</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$560.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066018" href="#EventID=3066018" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">4</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$560.00" eventid="3066018" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="4" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75667">Bradshaw, Gail</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$610.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066011" href="#EventID=3066011" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">2</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$610.00" eventid="3066011" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="2" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">01:30 PM – 04:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75667">Bradshaw, Gail</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$610.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066012" href="#EventID=3066012" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">2</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$610.00" eventid="3066012" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="2" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:51 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=322743',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="322743">\n'
             '<h2><a class="lnkCourseDetails" courseid="322743" href="#" '
             'onclick="return false;">Introduction to Blacksmithing (Ages: 16 '
             '&amp; Up)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/9db006d9-359c-4653-b8a9-b77c33f91e75_HusockL_IntroductionToBlackSmithing.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Learn '
             'the fundamentals of blacksmithing! Students will learn how to '
             'swing a hammer, forge a taper, bend and twist steel, and work '
             'with sheet metal. Time permitting we will forge a hook, a bottle '
             'opener, and a small bowl, but the primary goal of this class is '
             'to learn the basic skills of blacksmithing which can be applied '
             'to any number of projects. Students should wear closed toed '
             'shoes, long pants, and clothes made of natural fibers (cotton, '
             'wool, etc.)</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='margin-bottom: 0px !important; font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of materials: All materials are provided "
             'for this offering.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">11/7</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=129946">Husock, Leon</a></td>\n'
             '<td class="">16 &amp; up</td>\n'
             '<td class="">$450.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066037" href="#EventID=3066037" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">6</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$450.00" eventid="3066037" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="6" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:51 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:51 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=166009',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="166009">\n'
             '<h2><a class="lnkCourseDetails" courseid="166009" href="#" '
             'onclick="return false;">Introduction to Digital Photography '
             'I</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/164381784193304_capture.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style="background: white"><span style=\'line-height: '
             '107%; letter-spacing: .15pt; background: white; '
             'background-color: #ffffff; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             'BEGINNER</span></p><p style="background: white"><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; background-color: #ffffff; font-size: 14px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Students will learn the basics of the digital camera. "
             'Photographic principles such as aperture, shutter speed, and '
             'light sensitivity will be discussed as well as creativity and '
             'composition needed to make digital images. Some in-class '
             'shooting will be done. Assignments will be given and reviewed '
             'the following class. </span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='letter-spacing: normal; background-color: rgb(255, 255, "
             '255); font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials:\xa0"
             "</span><span style='letter-spacing: 0.2px; background-color: "
             'rgb(255, 255, 255); font-size: 12px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Students should bring their digital camera, manual, and "
             'flash drive to class.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/25</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=87648">Dunbar, Bruce</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$335.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065975" href="#EventID=3065975" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$335.00" eventid="3065975" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:51 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:52 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:52 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=209906',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="209906">\n'
             '<h2><a class="lnkCourseDetails" courseid="209906" href="#" '
             'onclick="return false;">Introduction to Encaustic Painting (Hot '
             'Wax)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/168910875379474_encausticpainting.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p style='color: rgb(0, 0, 0); font-size: medium; "
             'font-family: "Times New Roman", serif\'><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 14px'>Love how encaustic paintings look? "
             'Want to know more about it and try it out without a large '
             'investment of time or materials? In this workshop you will learn '
             'all the basics including, tools, techniques, and safety. After '
             'demonstrations, you will have time to work hands-on with this '
             'unique and historic medium that is gaining popularity among all '
             'types of artists. The school will supply all of the equipment. '
             'Please view the list of materials below for additional materials '
             'you should bring.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='color: rgb(32, 33, 36); letter-spacing: 0.2px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px'>List of Materials:\xa0</span><a "
             'href="files/read?file=media/N.Hyon%20Introduction%20to%20Encaustic%20Painting%20(Hot%20Wax)%20WORKSHOP.pdf"><u><span '
             "style='color: rgb(32, 33, 36); letter-spacing: 0.2px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px'>N.Hyon Supply "
             'List.pdf</span></u></a></p><div><p><span style="font-size: '
             '12px"><br/></span></p></div><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/19</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 03:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$205.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065960" href="#EventID=3065960" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$205.00" eventid="3065960" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:52 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:52 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=286345',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="286345">\n'
             '<h2><a class="lnkCourseDetails" courseid="286345" href="#" '
             'onclick="return false;">Introduction to Relief Printing: '
             'Woodcuts</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/11d0aa39-97f4-49ae-8045-0d43815e9eea_MurdochA_IntroReliefPrintmakingWoodcuts_2nd.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-family: Arial, "Helvetica Neue", '
             'Helvetica, sans-serif; color: #000000; font-size: '
             "14px'>Woodblock printing has been practiced, in one form or "
             'another, since 220 A.D. The process involves the removal of '
             'material (in this case, wood) allowing the raised areas to be '
             'inked and printed. During this workshop, students will develop '
             'images to be transferred to a wood block. This course will cover '
             'the use of basic carving tools and techniques to create an image '
             'that students will be able to print in small '
             'editions.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='background-color: rgb(255, 255, 255); letter-spacing: "
             '0.2px; color: #000000; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 12px'>List of Materials: "
             '</span><a href="files/read?file=files/A.Murdoch Intro to Relief '
             'Printing Woodcuts.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'background-color: rgb(255, 255, '
             '255); letter-spacing: 0.2px; color: #000000; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; font-size: '
             "12px'>A.Murdoch Supply List.pdf</span></a></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/24</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 01:30 PM</td>\n'
             '<td><a href="#FacultyDetail=124040">Murdoch, Andrew</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$255.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066015" href="#EventID=3066015" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$255.00" eventid="3066015" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:52 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:52 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=254820',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="254820">\n'
             '<h2><a class="lnkCourseDetails" courseid="254820" href="#" '
             'onclick="return false;">Introduction to Sogetsu Ikebana: The '
             'Japanese Art of Flower Arrangement</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/dd5c40ed-1067-44a6-9046-a0a8ab46b301_Shizue '
             '1.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "BEGINNER</span></p><p><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Sogetsu Ikebana is much more than “Japanese flower "
             'arranging,” it is a modern form of an ancient art of sculpture '
             'with living materials. Beginner\xa0students will be introduced '
             'to the traditional principles and aesthetic disciplines, '
             'combined with creative energies to capture, express and enhance '
             'natural beauty. </span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p '
             'style=\'font-family: "Open Sans", sans-serif; color: rgb(51, 51, '
             '51); line-height: 1.4em; background-color: rgb(255, 255, '
             "255)'><span style='letter-spacing: 0.2px; font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials:\xa0</span><span "
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Students should bring "
             'vessels, shears, pin-holders and plant materials or you can '
             'purchase some plant materials from the instructor for a nominal '
             'cost.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/19</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75715">Pleasanton, Shizue</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$295.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065961" href="#EventID=3065961" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">3</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$295.00" eventid="3065961" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="3" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:52 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:52 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=168499',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="168499">\n'
             '<h2><a class="lnkCourseDetails" courseid="168499" href="#" '
             'onclick="return false;">Introduction to the Art of '
             'Drawing</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/164434026728918_alex '
             'mcf.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page" style="color: rgb(0, 0, 0); '
             'font-family: -webkit-standard; letter-spacing: normal" '
             'title="Page 3"><div class="layoutArea"><div class="column"><p '
             "style='color: rgb(0, 0, 0); font-size: medium; font-family: "
             '"Times New Roman", serif; letter-spacing: normal\'><span '
             'style="font-family: Calibri, sans-serif"><span style="color: '
             'rgb(0, 0, 0); font-size: 14px; letter-spacing: normal; '
             'font-family: Arial">LEVEL: BEGINNER - '
             "INTERMEDIATE</span></span></p><p style='color: rgb(0, 0, 0); "
             'font-size: medium; font-family: "Times New Roman", serif; '
             'letter-spacing: normal\'><span style="font-family: Calibri, '
             'sans-serif"><span style="color: rgb(0, 0, 0); font-size: 14px; '
             'letter-spacing: normal; font-family: Arial">We begin by learning '
             'how to measure using our eye, how to create the proportions of '
             'our subject. When applying these methods of measurement and '
             'proportion, we give drama and expression to our drawings. Learn '
             'about shading, perspective and composition. Subjects include '
             'basic forms, the figure, portrait and landscapes. Every class '
             'will start with a demonstration and individual attention is '
             'given to each student. '
             '</span></span></p></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p '
             'style="background-color: rgb(255, 255, 255)"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: rgb(0, 0, 0)'>List of "
             'Materials:\xa0</span><a href="files/read?file=files/A.McFarlane '
             'Introduction to the Art of Drawing.pdf" style="color: blue '
             '!important" target="_blank"><u><span style=\'font-size: 12px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: rgb(0, 0, 0)'>A.McFarlane Supply "
             'List.pdf</span></u></a></p><p><strong><em><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: rgb(0, 0, 0)'>*Class will not meet "
             '9/21*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/14</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75707">McFarlane, Alex</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$635.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065891" href="#EventID=3065891" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">7</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$635.00" eventid="3065891" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="7" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:52 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:52 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328468',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328468">\n'
             '<h2><a class="lnkCourseDetails" courseid="328468" href="#" '
             'onclick="return false;">Learning from the Greats: Historical '
             'Study and Contemporary Studio Practice</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/66536e64-5eaf-45f1-903b-29ff7c21b6aa_McCollumM_LearningGreatsHistoricalStudyContemporaryStudioPractice.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>LEVEL: "
             "ALL LEVELS</span></p><p><span style='line-height: 115%; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>This course invites "
             'students of all experience levels and working mediums to study '
             'and recreate master paintings from artists and periods of their '
             'choosing Through direct observation, analysis, and reproduction, '
             'students will investigate the visual language and '
             'decision-making processes of historical and contemporary '
             'artists. Emphasis will be placed on understanding compositional '
             'design, color relationships, drawing structure, surface handling '
             'and artistic intent. Students will develop stronger technical '
             'skills while expanding their understanding of how artists '
             'communicate ideas through visual form.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             "checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/R.McCollum Supply Master List.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'font-size: 12px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>R.McCollum Supply "
             'List.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=127941">McCollum, Rick</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$645.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065901" href="#EventID=3065901" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$645.00" eventid="3065901" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:52 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:52 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328469',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328469">\n'
             '<h2><a class="lnkCourseDetails" courseid="328469" href="#" '
             'onclick="return false;">Learning Ways of Sketching and Drawing '
             'Objects in Nature (Ages: 5-10)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/d025874d-1946-48a6-a126-985d6794141b_KotM_LearingWaysSketchingDrawingObjectNature.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Learn about a variety of artist materials and "
             'explore the Silvermine grounds. Drawing can be with charcoal, '
             'natural found materials, liquid, with graphite, more. Complete a '
             'larger drawing using a variety of techniques and materials of '
             'your choice. Learn basic sketching and drawing '
             "techniques.</span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>\xa0 </span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Gentle group critiques for all ages.</span></p><p></p>\n"
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='line-height: "
             '115%; font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Please bring a peanut "
             'free snack. All materials will be provided.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/26</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 10</td>\n'
             '<td class="">$165.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065978" href="#EventID=3065978" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$165.00" eventid="3065978" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:52 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:52 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=220727',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="220727">\n'
             '<h2><a class="lnkCourseDetails" courseid="220727" href="#" '
             'onclick="return false;">Loosen Up!</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/22866063-2861-4c35-88c3-a5df3885c381_BoskiS_LoosenUp.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p><span style="font-family: Arial"><span '
             'style="font-size: 14px; font-family: Arial">Students will learn '
             'how to loosen up and apply their paint in a more gestural, '
             'painterly manner. Techniques and observations on what it will '
             'take to "loosen-up" your paintings. Nearly all of these tips '
             'have a common denominator - simplification. The more you '
             'simplify what you do, the more it frees your mind to concentrate '
             'on staying loose. Students will practice using bigger brushes, '
             'more paint and working faster. We will take color to new '
             'unexpected places, departing from '
             'realism.</span></span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             'Information:</h3><p><em><span style="font-family: Arial; '
             'font-size: 12px; color: rgb(0, 0, 0)">Please bring photo '
             'references</span></em></p><p><span style="font-family: Arial; '
             'font-size: 12px; color: rgb(0, 0, 0)">List of Materials:\xa0'
             '</span><a href="files/read?file=files/S.Boski Loosen Up.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style="font-size: 12px; '
             'font-family: Arial; color: rgb(0, 0, 0)">S.Boski Supply '
             'List.pdf.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/4</td>\n'
             '\n'
             '<td class="show-on-mobile">11:30 AM – 03:30 PM</td>\n'
             '<td><a href="#FacultyDetail=97510">Boski, Souby</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$165.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065992" href="#EventID=3065992" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">14</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$165.00" eventid="3065992" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="14" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:52 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:52 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=326048',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="326048">\n'
             '<h2><a class="lnkCourseDetails" courseid="326048" href="#" '
             'onclick="return false;">Luminous Layers - Foundations in '
             'Encaustic Painting</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/0b4e14e9-1def-4857-9ad2-2addeddde6ad_LevyH_LuminousLayersFoundationsEncausticPainting.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Discover the luminous art of painting with "
             'molten beeswax in this fun, hands-on workshop for beginners. '
             'Learn a bit about the fascinating history of encaustic art, '
             'explore essential safety tips, and learn how to prepare your '
             "painting surfaces. You'll experiment with layering, fusing, "
             "and</span><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>\xa0 '
             "</span><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>mixing '
             'colors to create both smooth and textured effects. Embrace '
             'intuition and flow as you work, allowing the wax to guide your '
             'creative process. Enjoy guided demonstrations and plenty of time '
             'to explore your own ideas.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new programs at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/H.Levy Luminous Layers Foundations '
             'in Encaustic Painting.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>H.Levy Supply List.pdf</span></a></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/26</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 03:00 PM</td>\n'
             '<td><a href="#FacultyDetail=139222">Levy, Holli</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$205.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065979" href="#EventID=3065979" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$205.00" eventid="3065979" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:52 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:52 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=319513',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="319513">\n'
             '<h2><a class="lnkCourseDetails" courseid="319513" href="#" '
             'onclick="return false;">Mixed Media and Monotype</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/b7fcc970-158b-4343-9751-5c5a26491d35_KarinskaiaN_MixedMediaMonotype.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>LEVEL: ADVANCED</span></p><p><span "
             "style='line-height: 107%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>In '
             'this advanced-level course, students work largely independently '
             'to expand their practice through monotype printmaking and mixed '
             'media experimentation. Participants will integrate drawing, '
             'painting, collage, and image transfer into their monotypes, '
             'exploring layering, texture, and surface in new '
             "ways.</span></p><p><span style='line-height: 107%; font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Students are encouraged to pursue "
             'individual artistic directions, asking the instructor to '
             'demonstrate techniques and processes that align with their '
             'goals. This course provides a collaborative, exploratory '
             'atmosphere for refining a unique visual language through mixed '
             'media.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/N.Karpinskaia Exploring '
             'Monotype  Mixed Media.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>N.Karpinskaia Supply List.pdf</span></a></p><p><span "
             "style='margin-bottom: 0px !important; color: rgb(0, 0, 0); "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px'>Open Studio: </span><a "
             'href="files/read?file=files/OpenStudio_Printmaking_Sp2026.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'margin-bottom: 0px '
             '!important; color: rgb(0, 0, 0); font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 12px\'>Open Studio '
             'Spring 2026 - Printmaking.pdf</span></a></p><p><strong><em><span '
             "style='margin-bottom: 0px !important; color: rgb(0, 0, 0); "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px'>*Class will not meet "
             '11/25*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">01:30 PM – 04:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75698">Karpinskaia, '
             'Natasha</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$620.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065929" href="#EventID=3065929" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">5</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$620.00" eventid="3065929" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="5" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:52 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:53 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:53 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=166024',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="166024">\n'
             '<h2><a class="lnkCourseDetails" courseid="166024" href="#" '
             'onclick="return false;">Monotype Printmaking</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/177013090494791_karpinskaian_monotypeprintmaking.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p style='color: rgb(0, 0, 0); font-size: medium; "
             'font-family: "Times New Roman", serif; letter-spacing: '
             "normal'><span style='color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: '
             "14px'>LEVELS: ALL LEVELS</span></p><p style='color: rgb(0, 0, "
             '0); font-size: medium; font-family: "Times New Roman", serif; '
             "letter-spacing: normal'><span style='color: #000000; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 14px'>Participants will learn all the basic "
             'techniques for creating monotypes: multiple plates, chine '
             'colle’, stencils and viscosity. It will focus on practicing, '
             'experimenting and letting the process lead you to new '
             'innovations. Discover endless possibilities as you print more. '
             'Emphasis is given to helping each student develop a personal '
             'knowledge of the process.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p '
             'style=\'font-family: "Open Sans", sans-serif; color: rgb(51, 51, '
             '51); line-height: 1.4em; font-size: 16px; background-color: '
             "rgb(255, 255, 255)'><span style='color: #000000; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: '
             "12px'>List of Materials:\xa0</span><a "
             'href="files/read?file=files/N.Karpinskaia Monotype '
             'Printmaking.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><u><span '
             'style=\'color: #000000; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 12px'>N.Karpinskaia Supply "
             'List.pdf</span></u></a></p><p style=\'font-family: "Open Sans", '
             'sans-serif; color: rgb(51, 51, 51); line-height: 1.4em; '
             "font-size: 16px; background-color: rgb(255, 255, 255)'><span "
             "style='margin-bottom: 0px !important; color: rgb(0, 0, 0); "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px'>Open Studio: </span><a "
             'href="files/read?file=files/OpenStudio_Printmaking_Sp2026.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'margin-bottom: 0px '
             '!important; color: rgb(0, 0, 0); font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 12px\'>Open Studio '
             'Spring 2026 - Printmaking.pdf</span></a></p><p><strong><em><span '
             "style='margin-bottom: 0px !important; color: rgb(0, 0, 0); "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px'>*Class will not meet "
             '11/26*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">7/23</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75698">Karpinskaia, '
             'Natasha</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$360.00</td>\n'
             '<td class="">\n'
             '<a eventid="3006441" href="#EventID=3006441" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">4</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$360.00" eventid="3006441" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="4" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75698">Karpinskaia, '
             'Natasha</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$620.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065936" href="#EventID=3065936" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">2</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$620.00" eventid="3065936" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="2" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75698">Karpinskaia, '
             'Natasha</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$620.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065942" href="#EventID=3065942" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">7</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$620.00" eventid="3065942" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="7" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:53 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:53 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321417',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321417">\n'
             '<h2><a class="lnkCourseDetails" courseid="321417" href="#" '
             'onclick="return false;">Monster Mash Up (Ages: 4-7)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/6960eff5-fe5b-45a0-8eb4-fb510e313491_BloomL_MonsterMashUp.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #080808\'>Get '
             'ready to roar, stomp, and create your way through the '
             'afternoons! Let’s make our very own monsters and explore a world '
             'of goofy, colorful fun. This camp is all about embracing '
             'creativity, fun, and fantastical creatures! Slime Time '
             'Friday!</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Parents: Please pack a "
             'water bottle as well as a peanut free snack.</span></p><p><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Camp forms are '
             'required at the time of registration, click </span><a '
             'href="files/read?file=files/SAC Summer Art Studios Forms '
             '2026.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>here</span></a><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'> to '
             "access.</span></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "background-color: #ffffff; font-size: 13px'>Please review our "
             'Summer Art Studio withdrawal &amp; reimbursement policies '
             '</span></em></strong><a href="files/read?file=files/Summer Art '
             'Policies PDF-1-7-26.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><strong><em><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             'background-color: #ffffff; font-size: '
             "13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/10</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=113806">Bloom, Lori</a></td>\n'
             '<td class="">4 - 8</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2956980" href="#EventID=2956980" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2956980" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="0" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:53 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:53 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321501',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321501">\n'
             '<h2><a class="lnkCourseDetails" courseid="321501" href="#" '
             'onclick="return false;">Nature in Art: Plants &amp; Animals- '
             'Sculpture, Painting, Exploration with Clay (Ages: '
             '5-10)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/9607195d-5e61-4e35-9321-dd9a6c982b5a_KotM_NatureinArtPlantsAnimals.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Where '
             "painting and clay sculpting are included every week, mARTa's "
             'Summer Art Studio encourages open ended experimentation, '
             'creative expression, exploration, and appreciation, of art. '
             'While building friendships and learning about the properties of '
             'art materials, children are guided to engage with imagination, '
             'and to contribute meaning to artwork. They will be introduced to '
             'a variety of techniques while exploring play in art, and they '
             'will develop their creative abilities to self-express and see '
             'and experience the world in new ways. Each day will include a '
             'variety of materials, surprises, outdoor recess with games and '
             'stories about well-known artists. Art materials may include '
             'watercolors, wood, clay, paint, ink, metal, fabric, oil pastels, '
             'things that shine, beads, paint markers, more. Gentle '
             'discussions about the artwork in progress and art history will '
             'be introduced.</span></p><p class="MsoNormal"><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Throughout the week "
             'children may work in the art studio, explore the lush Silvermine '
             'outdoor environment, and visit the Silvermine galleries &amp; '
             "exhibitions. mARTa's sensory rich studio environment is designed "
             "to make one's learning more complex while supporting imagination "
             "and play in a caring environment. It's a place where children "
             'will develop meaningful connections to self and their '
             'ever-changing surrounding environment. All materials will be '
             'supplied.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Please pack a peanut free "
             'snack and drink. Please bring a sturdy container or box, labeled '
             'with student’s first &amp; last name to transport clay objects '
             "home.</span></p><p><span style='font-size: 12px; color: #000000; "
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Camp forms are required at the time of registration, "
             'click </span><a href="files/read?file=files/SAC Summer Art '
             'Studios Forms 2026.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; color: #000000; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>Please review our Summer Art Studio withdrawal "
             '&amp; reimbursement policies </span></em></strong><a '
             'href="files/read?file=files/Summer Art Policies PDF-1-7-26.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/10</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2957839" href="#EventID=2957839" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2957839" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-4" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:53 [scrapy.extensions.logstats] INFO: Crawled 1 pages (at 1 pages/min), scraped 100 items (at 100 items/min)
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:53 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:53 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=253975',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="253975">\n'
             '<h2><a class="lnkCourseDetails" courseid="253975" href="#" '
             'onclick="return false;">On &amp; Off the Potter\'s Wheel for All '
             'Levels</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/57ddabab-74f2-4f20-8645-cca9b3352d57_Puzzuoli '
             'J_OnOff PottersWheel.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style="background: white"><span style=\'font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>LEVEL: ALL LEVELS</span></p><p "
             'style="background: white"><span style=\'letter-spacing: 0.15pt; '
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Whether you’ve never "
             'touched clay or have been at it for years, this class will '
             'accommodate your needs. The initial focus of the class will be '
             'on the potter’s wheel and will then transition to exploration of '
             'handbuilding techniques, with an emphasis on slab work. '
             'Beginners will be taught foundational wheel skills, general '
             'pottery techniques and gain an understanding of the complete '
             'ceramic process. For those who have more experience, the class '
             'will focus on complex forms, various surface treatments and '
             'advanced glazing methods. Class demos as well as individual '
             'instruction will be provided.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p '
             'style="background-color: rgb(255, 255, 255)"><span style="color: '
             'rgb(0, 0, 0); font-family: Arial; font-size: 12px; '
             'letter-spacing: 0.2px; background-color: rgb(255, 255, 255)">A '
             'firing fee deposit is included in the price. Additional fees '
             'apply for students who exceed the deposit amount. Credits will '
             'be applied for students who do not meet the firing fee deposit '
             'total. Firing fees are not refundable regardless of the outcome '
             'of the piece of artwork.</span></p><p style="background-color: '
             'rgb(255, 255, 255)"><span style=\'font-size: 12px; color: rgb(0, '
             '0, 0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>List of Materials:\xa0</span><span "
             "style='line-height: 12.84px; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Tool Kits &amp; Clay are available for purchase in "
             "class</span></p><p><span style='letter-spacing: 0.15pt; "
             'font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif\'>Open Studio: </span><a '
             'href="files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'letter-spacing: '
             '0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>Open Studio '
             'Fall 2026 - Ceramics.pdf</span></a></p><p><strong><em><span '
             "style='letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>*Class will not meet "
             '9/21*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/14</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$740.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066083" href="#EventID=3066083" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$740.00" eventid="3066083" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-8" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:53 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:53 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=322620',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="322620">\n'
             '<h2><a class="lnkCourseDetails" courseid="322620" href="#" '
             'onclick="return false;">One Day Darkroom (Ages: 16 &amp; '
             'Up)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/14d65061-8201-440e-9c24-b8bca7fca30e_DunbarB_OnDayDarkroom.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Come '
             'and explore film photography and the darkroom process. Make '
             'prints the old-fashioned way. Use old negatives or make new '
             'ones. Learn to make cameraless photo prints. Or work on a '
             'current project. No experience necessary.</span></p><p></p>\n'
             '<p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/3</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=87648">Dunbar, Bruce</a></td>\n'
             '<td class="">16 &amp; up</td>\n'
             '<td class="">$240.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065989" href="#EventID=3065989" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$240.00" eventid="3065989" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:53 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:53 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328470',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328470">\n'
             '<h2><a class="lnkCourseDetails" courseid="328470" href="#" '
             'onclick="return false;">One Night Stand: Decoupage Holiday '
             'Ornaments</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/f235b586-1166-41fe-b566-b6121c5d9a62_HyonN_DecoupageHolidayOrnament.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>During "
             'this two-hour workshop you will create several holiday themed '
             'ornaments using decoupage on wood. Related to collage, decoupage '
             'uses cut paper and glue to add designs to various surfaces. No '
             'experience needed and all materials will be '
             'supplied.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='letter-spacing: 0.2px; background-color: rgb(255, 255, "
             '255); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>List of Materials: "
             'All materials are provided for this offering.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">12/16</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066068" href="#EventID=3066068" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066068" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:53 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:53 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=195838',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="195838">\n'
             '<h2><a class="lnkCourseDetails" courseid="195838" href="#" '
             'onclick="return false;">One Night Stand: Fluid Acrylic '
             'Pours</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/168313522519429_pours.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p style='color: rgb(0, 0, 0); font-size: medium; "
             'font-family: "Times New Roman", serif\'><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000; font-size: 14px'>No painting "
             'experience required to create two beautiful 12 x 12 unique '
             'abstract paintings. Many of you have tried this technique '
             'already so we will be offering two different techniques. Part of '
             'the fun is that each technique creates its own pattern and '
             'surprises. The painting go home wet so please bring suitable '
             'boxes for transport -pizza boxes work well. All other supplies '
             'are included.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: Please "
             'come dressed for mess. Bring two pizza boxes that fit two 12 x '
             '12 canvases to take home wet artwork.\xa0'
             '<br/></span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/18</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065956" href="#EventID=3065956" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3065956" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">10/16</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066003" href="#EventID=3066003" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066003" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">11/13</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066043" href="#EventID=3066043" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066043" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:53 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:53 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=242326',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="242326">\n'
             '<h2><a class="lnkCourseDetails" courseid="242326" href="#" '
             'onclick="return false;">One Night Stand: Gel Plate '
             'Printing</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/168305755004047_capture.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>No "
             'experience needed! In this new, fun two hour workshop we will '
             'experience the magic of printing in multiple colors, design, '
             'textures and transfers using the gel plate. With water based '
             'paints multiple layers will be created by printing the same '
             'paper over and over. When these dry, the prints may be used for '
             'collage, cards, gift wrap or framed as finished artwork. You '
             'will be amazed at what you can make during the two hours of this '
             'workshop.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='letter-spacing: 0.2px; background-color: rgb(255, 255, "
             '255); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>List of Materials: "
             'All materials are provided for this offering</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/14</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3006458" href="#EventID=3006458" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3006458" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/25</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065977" href="#EventID=3065977" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3065977" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">10/23</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066013" href="#EventID=3066013" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066013" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">11/20</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066048" href="#EventID=3066048" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066048" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:53 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:53 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328471',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328471">\n'
             '<h2><a class="lnkCourseDetails" courseid="328471" href="#" '
             'onclick="return false;">One Night Stand: Gel Plate Printing for '
             'Holiday Cards &amp; Gift Wrap</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/980ba1a6-4bc9-41f0-b08c-7dfc71e0d8b7_HyonN_GalPlatePrintingHolidayCardsGiftWrap.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Gel plate printing is fun, quick and easy to "
             'master. In the workshop we will create holiday themed cards and '
             'gift wrap.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='letter-spacing: 0.2px; background-color: rgb(255, 255, "
             '255); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>List of Materials: "
             'All materials are provided for this offering</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">12/14</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066067" href="#EventID=3066067" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066067" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:53 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:54 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:54 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:54 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=166016',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="166016">\n'
             '<h2><a class="lnkCourseDetails" courseid="166016" href="#" '
             'onclick="return false;">One Night Stand: On the Potter\'s '
             'Wheel</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/168305722522322_capture.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Join '
             'us for a fun evening out with friends or family! The evening '
             'will start with a wheel throwing demonstration followed by an '
             'opportunity for you to learn how to throw on the potter’s wheel. '
             "You'll create your very own bowl(s) which we will glaze and fire "
             "for you to pick up at a later date. We promise you'll have a "
             'blast and it will be a different experience for you. Bring a '
             'friend, family member or a date, and enjoy the '
             "evening.</span></p><p><em><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>The pieces will take four to six weeks to fire, "
             'and the school office will notify you when pieces are ready to '
             'be picked up.</span></em></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>List of Materials: "
             'All materials are provided for this offering</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/14</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=138154">Casner, Kate</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3006459" href="#EventID=3006459" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3006459" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="0" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">8/21</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=138154">Casner, Kate</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3006465" href="#EventID=3006465" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">5</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3006465" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="5" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/18</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065957" href="#EventID=3065957" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">9</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3065957" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="9" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">10/2</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065985" href="#EventID=3065985" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3065985" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">10/16</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066004" href="#EventID=3066004" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066004" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">10/30</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066026" href="#EventID=3066026" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066026" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">11/13</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066044" href="#EventID=3066044" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066044" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">12/4</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066058" href="#EventID=3066058" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066058" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:54 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:54 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:54 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:54 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=235057',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="235057">\n'
             '<h2><a class="lnkCourseDetails" courseid="235057" href="#" '
             'onclick="return false;">One Night Stand: Painting the '
             'Masters</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/3ba3236e-0d93-4deb-bfec-5101d6c8f58a_ONS_Matisse '
             'Still Life.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='background: white; color: #000000; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif'>Learn to work with acrylic paints by "
             "painting your own version of a famous artist's painting. Art "
             'students have been doing this for generations and we will show '
             'you how to transfer the image along with basic acrylic painting '
             "techniques. You don't need to know how to draw! In the past we "
             "have done paintings by Van Gogh and Cezanne and Georgia O'Keefe. "
             'Have fun and create your own masterpiece! Materials are '
             'included.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='letter-spacing: 0.2px; background-color: rgb(255, 255, "
             '255); font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: All "
             'materials are provided for this offering</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/21</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3006466" href="#EventID=3006466" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3006466" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">10/2</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065986" href="#EventID=3065986" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3065986" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:54 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:54 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:54 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:54 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328472',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328472">\n'
             '<h2><a class="lnkCourseDetails" courseid="328472" href="#" '
             'onclick="return false;">One Night Stand: Paper Flowers for the '
             'Holidays</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/59573315-5ffe-40ba-9fed-a18a9eb70e26_HyonN_PaperFlowersHolidays.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><a><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Paper '
             'flowers are fun to create and can be used for many different '
             'types of decorations. this workshop will focus on two different '
             'types of flowers that can be used for table tops and /or tree '
             'decorations.</span></a></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='letter-spacing: 0.2px; background-color: rgb(255, 255, "
             '255); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>List of Materials: "
             'All materials are provided for this offering</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">12/18</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066069" href="#EventID=3066069" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066069" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:54 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:54 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:54 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:54 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=166008',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="166008">\n'
             '<h2><a class="lnkCourseDetails" courseid="166008" href="#" '
             'onclick="return false;">Painting 101: Foundation '
             'Painting</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/144203_thumbnail_wings.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page" style="color: rgb(0, 0, 0); '
             'font-family: -webkit-standard; letter-spacing: normal"><div '
             'class="layoutArea"><div class="column"><p style=\'color: rgb(0, '
             '0, 0); font-size: medium; font-family: "Times New Roman", '
             'serif\'><span style="font-family: Calibri, sans-serif"><span '
             'style="font-size: 14px; font-family: Arial">LEVEL: BEGINNER - '
             "INTERMEDIATE</span></span></p><div><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>This course is '
             'for beginning and intermediate students who want to learn the '
             'techniques and procedures necessary for painting in oils or '
             'acrylics. Basic skills in drawing, composition, mixing and '
             'applying paint will be demonstrated. Subject matter will include '
             'still life, figure, portrait and landscape. You will be guided '
             'through the foundation steps towards a satisfying work of '
             'art.</span><br/></div></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional '
             'Information:</h3><div><div><p><span style="font-size: 12px; '
             'font-family: Arial; color: rgb(0, 0, 0)">List of Materials:\xa0'
             '</span><a href="files/read?file=files/A.McFarlane Painting 101 '
             'Foundation Painting.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style="font-size: 12px; font-family: '
             'Arial; color: rgb(0, 0, 0)">A.McFarlane Supply '
             'List.pdf</span></a></p><p><strong><em><span style="font-size: '
             '12px; font-family: Arial; color: rgb(0, 0, 0)">*Class will not '
             'meet 11/25*</span></em></strong></p></div></div><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75707">McFarlane, Alex</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$645.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065919" href="#EventID=3065919" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$645.00" eventid="3065919" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:54 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:54 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:54 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:54 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=253486',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="253486">\n'
             '<h2><a class="lnkCourseDetails" courseid="253486" href="#" '
             'onclick="return false;">Painting Creatively from '
             'Photographs</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/0bb4fe4d-f47c-49ce-8ff6-a606c690f984_BoskiS_PaintingCreativelyPhotographs.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p><span style="color: rgb(25, 28, 31); font-family: '
             'Arial; font-size: 14px">Most artists use source photos in some '
             'capacity when they work, whether to jog their memory of a '
             'particular place and time or to record specific visual details '
             'to incorporate in later pieces.\xa0</span><span style="color: '
             'rgb(55, 55, 55); font-family: Arial; font-size: 14px">In this '
             'workshop students will learn to paint in a creative, personal, '
             'and expressive way using reference photographs - freeing them '
             'from copying.\xa0</span><span style="color: rgb(25, 28, 31); '
             'font-family: Arial; font-size: 14px">Learn to dismiss the sense '
             'of obligation to show exactly what is depicted in the photo and '
             'feel free and inspired to manipulate the composition, assuring '
             'vitality and making the painting your personal creation.\xa0'
             '</span><span style="color: rgb(25, 28, 31); font-family: Arial; '
             'font-size: 14px">Bring several canvases and reference photos. A '
             'suggested materials list will be provided upon '
             'registration</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style="font-family: Arial; font-size: 12px; color: rgb(0, 0, '
             '0)">List of Materials:\xa0</span><a '
             'href="files/read?file=files/S.Boski Workshops.pdf" style="color: '
             'blue !important; text-decoration: underline blue !important" '
             'target="_blank"><span style="font-size: 12px; font-family: '
             'Arial; color: rgb(0, 0, 0)">S.Boski Supply '
             'List.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/9</td>\n'
             '\n'
             '<td class="show-on-mobile">11:30 AM – 03:30 PM</td>\n'
             '<td><a href="#FacultyDetail=97510">Boski, Souby</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$165.00</td>\n'
             '<td class="">\n'
             '<a eventid="3006457" href="#EventID=3006457" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">6</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$165.00" eventid="3006457" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="6" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">12/6</td>\n'
             '\n'
             '<td class="show-on-mobile">11:30 AM – 03:30 PM</td>\n'
             '<td><a href="#FacultyDetail=97510">Boski, Souby</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$165.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066061" href="#EventID=3066061" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$165.00" eventid="3066061" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:54 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:54 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:54 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:54 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=190843',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="190843">\n'
             '<h2><a class="lnkCourseDetails" courseid="190843" href="#" '
             'onclick="return false;">Painting with Encaustics</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/167822532392219_nash '
             'encaustic.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page" style="color: rgb(0, 0, 0); '
             'font-family: -webkit-standard; letter-spacing: normal"><div '
             'class="layoutArea"><div class="column"><p style=\'color: rgb(0, '
             '0, 0); font-size: medium; font-family: "Times New Roman", '
             'serif\'><span style=\'font-size: 10.5pt; font-family: "Arial", '
             "sans-serif; color: #000000'>LEVEL: INTERMEDIATE TO "
             "ADVANCED</span></p><p style='color: rgb(0, 0, 0); font-size: "
             'medium; font-family: "Times New Roman", serif\'><span '
             'style=\'font-size: 10.5pt; font-family: "Arial", sans-serif; '
             "color: #000000'>This class is for students with encaustic "
             'experience who want to continue their practice with this medium. '
             'Qualifying experience includes having taken the mini-course '
             'Encaustic Painting for Beginners. Consideration will also be '
             'given to students who have attended the workshop, Introduction '
             "to Encaustic Painting, </span><b><span style='font-size: 10.5pt; "
             'font-family: "Arial", sans-serif; color: #000000\'>or '
             "</span></b><span style='font-size: 10.5pt; font-family: "
             '"Arial", sans-serif; color: #000000\'>a 2 hour private session '
             'with Nash or with another encaustic instructor, this is not a '
             'class for beginners. During class we will focus on each students '
             'skills going beyond the basics, content driven series and '
             'professional development.</span></p></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><div><p><span style='letter-spacing: 0.2px; "
             'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials:\xa0"
             '</span><a href="files/read?file=files/N.Hyon Painting with '
             'Encaustics UPDATED.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>N.Hyon Supply List.pdf</span></a></p></div><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75696">Hyon, Nash</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$505.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065926" href="#EventID=3065926" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">4</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$505.00" eventid="3065926" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="4" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:54 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:54 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:54 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:54 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=326049',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="326049">\n'
             '<h2><a class="lnkCourseDetails" courseid="326049" href="#" '
             'onclick="return false;">Painting with Paper - Encaustic '
             'Style</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/315b0163-8728-4148-b719-fe45310c5b47_LevyH_PaintingwithPaperEncausticStyle.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Encaustic paint made from beeswax, damar resin, "
             'and pigment is a wonderfully versatile medium that can be '
             "applied in many creative ways. In this class, you'll explore a "
             'playful technique using tissue paper soaked with encaustic paint '
             'to build a rich, layered artwork. You will learn how to prepare '
             'your birch panel substrate, create colorful encaustic-soaked '
             'tissue papers, and then use those papers to “paint” your image. '
             'Whether you choose a landscape or an abstract composition, your '
             'textured piece can be further enhanced with pigment sticks for '
             'added depth and detail. No prior experience is necessary. Both '
             'artists who are completely new to encaustic and those with '
             'experience in the medium are warmly welcome.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new programs at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/H.Levy Painting with Paper Encaustic '
             'Style.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>H.Levy Supply "
             'List.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/15</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 03:00 PM</td>\n'
             '<td><a href="#FacultyDetail=139222">Levy, Holli</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$235.00</td>\n'
             '<td class="">\n'
             '<a eventid="3006461" href="#EventID=3006461" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">4</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$235.00" eventid="3006461" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="4" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:54 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:55 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=176918',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="176918">\n'
             '<h2><a class="lnkCourseDetails" courseid="176918" href="#" '
             'onclick="return false;">Pastel Painting</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/317c0f34-d33a-4fc2-b951-1068d56c4b38_SilvermanN_PastelPainting '
             'Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>LEVEL: "
             "ALL LEVELS</span></p><p><span style='line-height: 107%; "
             'letter-spacing: .15pt; background: white; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>Explore the radiant colors of pastels while "
             'experimenting with papers and techniques. This course will offer '
             'a comprehensive foundation for both beginners and those who wish '
             'to enhance their skills. Explore color, value, composition, and '
             'concept as well as different drawing finishes and materials. '
             'Working individually with the instructor, students will move '
             'beyond drawing to render objects accurately and will come to '
             'view drawing as a challenging vehicle of both form and '
             'narrative.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/N.Silverman Pastel '
             'Painting.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>N.Silverman Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet 10/29, "
             '11/26*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75727">Silverman, Nomi</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$555.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065943" href="#EventID=3065943" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">9</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$555.00" eventid="3065943" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="9" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:55 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321627',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321627">\n'
             '<h2><a class="lnkCourseDetails" courseid="321627" href="#" '
             'onclick="return false;">Play with Clay: Handbuilt Games (Ages: '
             '10-13)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/a69119c8-96f6-42f2-ab87-75ac53c29d9b_CasnerK_PlaywithClay '
             'Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Let your imagination soar as you craft "
             'functional ceramic games! Sculpt your own tic-tac-toe, memory '
             'matching, mancala, and more—or invent your own interactive game. '
             'No experience needed, just bring your imagination and be ready '
             'to get a little messy!</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Parents: Please pack a "
             'water bottle as well as a peanut free snack.</span></p><p><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Camp forms are '
             'required at the time of registration, click </span><a '
             'href="files/read?file=files/SAC Summer Art Studios Forms '
             '2026.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>here</span></a><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'> to '
             "access.</span></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "background-color: #ffffff; font-size: 13px'>Please review our "
             'Summer Art Studio withdrawal &amp; reimbursement policies '
             '</span></em></strong><a href="files/read?file=files/Summer Art '
             'Policies PDF-1-7-26.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><strong><em><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             'background-color: #ffffff; font-size: '
             "13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/3</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=138154">Casner, Kate</a></td>\n'
             '<td class="">10 - 14</td>\n'
             '<td class="">$515.00</td>\n'
             '<td class="">\n'
             '<a eventid="2959772" href="#EventID=2959772" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">4</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$515.00" eventid="2959772" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="4" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:55 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=299865',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="299865">\n'
             '<h2><a class="lnkCourseDetails" courseid="299865" href="#" '
             'onclick="return false;">Portraiture: The Basics</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/2d343175-0912-431e-ba7c-285729ea50a0_LyallDPortraiture.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "BEGINNER</span></p><p><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Learn how to draw and paint the face and head. Explore "
             'how to compose a portrait and build your work</span><span '
             "style='letter-spacing: -.05pt; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'> </span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>with</span><span style='letter-spacing: -.2pt; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'> </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>light,</span><span "
             "style='letter-spacing: -.05pt; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'> </span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>color,</span><span style='letter-spacing: -.05pt; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'> </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>tone,</span><span "
             "style='letter-spacing: -.05pt; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'> </span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>shadow</span><span style='letter-spacing: -.2pt; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'> </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>and</span><span "
             "style='letter-spacing: -.2pt; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'> </span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>volume.</span><span style='letter-spacing: -.05pt; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'> </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>You</span><span "
             "style='letter-spacing: -.2pt; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'> </span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>will</span><span style='letter-spacing: -.2pt; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'> </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>also</span><span "
             "style='letter-spacing: -.2pt; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'> </span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>learn</span><span style='letter-spacing: -.2pt; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'> </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>how to</span><span "
             "style='letter-spacing: -.2pt; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'> </span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>best</span><span style='letter-spacing: -.05pt; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'> </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>use</span><span "
             "style='letter-spacing: -.2pt; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'> </span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>your</span><span style='letter-spacing: -.1pt; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'> </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>paints</span><span "
             "style='letter-spacing: -.1pt; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'> </span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>and materials, and mistakes to "
             'avoid.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/D.Lyall Portraiture The '
             'Basics.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>D.Lyall Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet "
             '11/7*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/19</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=128883">Lyall, Dennis</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$555.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065962" href="#EventID=3065962" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">15</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$555.00" eventid="3065962" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="15" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:55 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=166017',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="166017">\n'
             '<h2><a class="lnkCourseDetails" courseid="166017" href="#" '
             'onclick="return false;">Potter\'s Wheel for All Levels</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/c69b526d-1215-4e0b-a46b-ba3500b8ef18_Puzzuoli '
             'J_PottersWheelAllLevels.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style="background: white"><span style=\'color: rgb(32, '
             '33, 36); letter-spacing: 0.15pt; font-size: 14px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>LEVEL: ALL '
             'LEVELS</span></p><p style="background: white"><span '
             "style='color: rgb(32, 33, 36); letter-spacing: 0.15pt; "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif'>Whether you are new to the potter’s wheel "
             'or wish to build upon your existing skills, this class will fill '
             'your needs. Beginners will be taught the important skills needed '
             'to create a vessel on the wheel. For those who have more '
             'experience, the class will focus on more complex shapes, various '
             'surface textures and alternative glazing methods. Class demos as '
             'well as individual instruction will be '
             'provided.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style="color: rgb(0, 0, 0); font-family: Arial; font-size: 12px; '
             'letter-spacing: 0.2px; background-color: rgb(255, 255, 255)">A '
             'firing fee deposit is included in the price. Additional fees '
             'apply for students who exceed the deposit amount. Credits will '
             'be applied for students who do not meet the firing fee deposit '
             'total. Firing fees are not refundable regardless of the outcome '
             'of the piece of artwork.</span></p><p style="background-color: '
             'rgb(255, 255, 255)"><span style=\'font-size: 12px; color: rgb(0, '
             '0, 0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>List of Materials:\xa0</span><span "
             "style='line-height: 12.84px; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Tool Kits &amp; Clay are available for purchase in "
             "class</span></p><p><span style='letter-spacing: 0.15pt; "
             'font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif\'>Open Studio: </span><a '
             'href="files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'letter-spacing: '
             '0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>Open Studio '
             'Fall 2026 - Ceramics.pdf</span></a></p><p><strong><em><span '
             "style='letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>*Thursday's class will not meet "
             '11/26*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 10:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$780.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065914" href="#EventID=3065914" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$780.00" eventid="3065914" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-3" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 10:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$740.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065946" href="#EventID=3065946" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$740.00" eventid="3065946" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-3" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:55 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=191681',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="191681">\n'
             '<h2><a class="lnkCourseDetails" courseid="191681" href="#" '
             'onclick="return false;">Pottery &amp; Vessel Sculpture: '
             'Intermediate to Advanced</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/cb025bcd-feec-4061-acfa-3384813af7c7_K.Ashida_2.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "INTERMEDIATE - ADVANCED</span></p><p><span style='font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Intermediate and advanced students "
             'will explore alternative methods. A variety of wheel throwing, '
             'hand building, and surfacing, and glazing techniques will be '
             'covered. The emphasis is on using skills to build vessel '
             'sculptures on and off the wheel. Personal creativity will be '
             'encouraged.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='color: rgb(0, 0, 0); letter-spacing: 0.2px; "
             'background-color: rgb(255, 255, 255); font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px\'>A '
             'firing fee deposit is included in the price. Additional fees '
             'apply for students who exceed the deposit amount. Credits will '
             'be applied for students who do not meet the firing fee deposit '
             'total. Firing fees are not refundable regardless of the outcome '
             'of the piece of artwork.</span></p><p style="background-color: '
             'rgb(255, 255, 255)"><span style=\'font-size: 12px; color: rgb(0, '
             '0, 0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>List of Materials:\xa0</span><span "
             "style='line-height: 12.84px; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Tool Kits &amp; Clay are available for purchase in "
             "class</span></p><p><span style='letter-spacing: 0.15pt; "
             'font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif\'>Open Studio: </span><a '
             'href="files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'letter-spacing: '
             '0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>Open Studio '
             'Fall 2026 - Ceramics.pdf</span></a></p><p><strong><em><span '
             "style='letter-spacing: 0.15pt; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>*Class will not meet Thursday "
             '11/26*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75665">Ashida, Keiko</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$740.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065938" href="#EventID=3065938" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">2</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$740.00" eventid="3065938" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="2" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/19</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75665">Ashida, Keiko</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$780.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065963" href="#EventID=3065963" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">5</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$780.00" eventid="3065963" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="5" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:55 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328473',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328473">\n'
             '<h2><a class="lnkCourseDetails" courseid="328473" href="#" '
             'onclick="return false;">Practical Color Theory</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: none;">\n'
             '<a href="#"><img alt="{imageAltText}" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" src="" style="display: '
             'none;"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>By taking a pragmatic approach to color, the student "
             'can have consistent mixes. Color will be broken down into its '
             'three components and the students will do exercises to '
             'understand their complexity. The class will apply the theories '
             'of Hawthorne and Munsell. Specialized palettes for landscape and '
             'figure will also be addressed.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: Students should bring "
             "</span><span style='line-height: 115%; font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>a variety of personal painting supplies, palette "
             'paper, palette knife, paper towels, (2) 16x20 '
             'surfaces</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">11/5</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75733">Wiest, Justin</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$145.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066032" href="#EventID=3066032" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$145.00" eventid="3066032" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:55 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328474',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328474">\n'
             '<h2><a class="lnkCourseDetails" courseid="328474" href="#" '
             'onclick="return false;">Pressed Leaf Clay Creations (Ages: '
             '6-9)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/94da12fb-719f-4852-a332-18b00abe9e8f_Long_Pressed_Leaf_Creations.jpeg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Get into the Autumn spirit with this "
             'nature-inspired ceramic workshop! Students will have the '
             'opportunity to celebrate the changing environment by creating '
             'leaf-shaped fall decorations using real leaves for texture, '
             'adding carved details, and underglazing with the colors of the '
             'season. Student’s unique autumn keepsakes will be finished with '
             'glaze and kiln-fired.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>List of Materials: All materials are provided "
             "for this offering.</span></p><p><span style='line-height: 115%; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px; color: #000000'>All artwork will be available "
             'two to three weeks after the program has occurred and the School '
             'Office will contact participants via email with pick up '
             'instructions.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">11/8</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td>Long, Charlotte</td>\n'
             '<td class="">6 - 10</td>\n'
             '<td class="">$165.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066038" href="#EventID=3066038" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$165.00" eventid="3066038" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:55 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328447',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328447">\n'
             '<h2><a class="lnkCourseDetails" courseid="328447" href="#" '
             'onclick="return false;">Quick Sketch with Santa! Drawing From a '
             'Model</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/ffbfa88b-dc61-4aa3-b346-cf19790f0823_DeLocaJ_QuickSketchSantaDrawingFromModel.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Get into the holiday spirit while sharpening "
             'your drawing skills in this fun and fast-paced figure drawing '
             'workshop featuring a live costumed Santa Claus model. Designed '
             'for artists of all levels, this one-night session introduces the '
             'core principles of Quick Sketch drawing through a series of '
             'lively poses, instructor demonstrations, and guided '
             "exercises.</span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>\xa0</span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Students will learn the fundamentals of gesture "
             'drawing, comparative measurement, core forms, rhythm lines, and '
             'simple construction techniques used to quickly organize and '
             'simplify the human figure. The workshop will also touch on '
             'silhouette design, proportion, shadow mapping, and strategies '
             "for creating more dynamic and confident drawings. Whether you're "
             'completely new to figure drawing or looking to loosen up your '
             'approach, this festive workshop offers a fun introduction to the '
             'techniques taught in the Quick Sketch program while providing a '
             'unique opportunity to draw from a live Santa '
             'model.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/J.DeLoca Quick Sketch Gesture '
             'Drawing.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>J.DeLoca Supply "
             'List.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">12/11</td>\n'
             '\n'
             '<td class="show-on-mobile">06:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=135676">DeLoca, Jonathan</a></td>\n'
             '<td class="">18 - 99</td>\n'
             '<td class="">$200.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066065" href="#EventID=3066065" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$200.00" eventid="3066065" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:55 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328448',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328448">\n'
             '<h2><a class="lnkCourseDetails" courseid="328448" href="#" '
             'onclick="return false;">Quick Sketch: Drawing From a '
             'Model</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/a6362cf5-fe7b-4fa1-b95e-1da96a460482_DeLocaJ_QuickSketchDrawingFromModel_Workshop.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>A one-night intensive focused on gesture, "
             'structure, and confidence in figure drawing. Through quick '
             'sketch exercises, live demos, and short poses, students will '
             'learn a simplified Frank Reilly-inspired approach to drawing the '
             'figure with energy and clarity. Perfect for artists looking to '
             'loosen up, simplify the figure, and strengthen their drawing '
             'foundations. All levels welcome.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/J.DeLoca Quick Sketch '
             'Gesture Drawing.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>J.DeLoca Supply List.pdf</span></a></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/25</td>\n'
             '\n'
             '<td class="show-on-mobile">06:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=135676">DeLoca, Jonathan</a></td>\n'
             '<td class="">18 - 99</td>\n'
             '<td class="">$170.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065976" href="#EventID=3065976" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$170.00" eventid="3065976" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:55 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:55 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=196510',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="196510">\n'
             '<h2><a class="lnkCourseDetails" courseid="196510" href="#" '
             'onclick="return false;">Raku Workshop</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/164391528181292_raku.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px'>LEVEL: INTERMEDIATE - "
             "ADVANCED</span></p><p><span style='color: rgb(32, 33, 36); "
             'background: white; letter-spacing: 0.15pt; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; font-size: '
             "14px'>Students bring their bisque pieces and spend the day "
             'glazing and firing in the raku kiln. We will do a combination of '
             'firings: traditional raku, and fuming techniques using horsehair '
             'and feathers. Students should use white stoneware clay, which '
             'may be purchased in advance. Pieces can be bisque fired in '
             'Silvermine’s kiln two weeks prior to the date of the workshop. '
             'We will accommodate as many firings as the day allows. Expect to '
             'get at least 5 medium size (approximately 8 x 8 x 8 inches would '
             'be considered medium size) pieces fired. Pieces should be based '
             'on cylindrical forms, not flat, or over 10 lbs. '
             '</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style="font-size: 12px"><span style="color: rgb(32, 33, 36); '
             'font-size: 12px; letter-spacing: 0.2px; background-color: '
             'rgb(255, 255, 255)"><em><span style="font-family: Arial">To '
             'withdraw, students must notify the school office two weeks prior '
             'to the workshop date to receive a refund or credit. Rain date '
             'will be decided at a later date. Please review our policies on '
             'cancelation prior to '
             'enrollment.</span></em></span></span></p><p><span '
             'style="font-family: Arial; font-size: 12px"><u><span '
             'style="color: rgb(32, 33, 36); background: white; '
             'letter-spacing: 0.15pt">Students Must Wear:</span></u><span '
             'style="color: rgb(32, 33, 36); background: white; '
             'letter-spacing: 0.15pt">\xa0</span></span><span '
             'style="font-family: Arial; font-size: 12px">Hair up and covered '
             'in a hat or bandana, a</span><span style="font-family: Arial; '
             'font-size: 12px">ll cotton clothes, n</span><span '
             'style="font-family: Arial; font-size: 12px">o fringe on any '
             'article of clothing, l</span><span style="font-family: Arial; '
             'font-size: 12px">ong pants and long sleeves, c</span><span '
             'style="font-family: Arial; font-size: 12px">losed toe shoes, '
             'l</span><span style="font-family: Arial; font-size: 12px">ong '
             'socks, f</span><span style="font-family: Arial; font-size: '
             '12px">ace mask is suggested but not mandatory\xa0'
             '</span></p><p><span style="font-family: Arial; font-size: '
             '12px"><span style="color: rgb(0, 0, 0)">If any students arrive '
             'to the workshop not dressed in line with the guidelines above, '
             'they will be asked to leave the workshop\xa0'
             '</span></span><strong><span style="color: rgb(0, 0, 0); '
             'font-family: Arial; font-size: 12px">and no reimbursements will '
             'be available.</span></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/4</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 05:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75718">Puzzuoli, Jon</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$335.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065991" href="#EventID=3065991" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$335.00" eventid="3065991" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-6" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:55 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:56 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:56 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=302827',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="302827">\n'
             '<h2><a class="lnkCourseDetails" courseid="302827" href="#" '
             'onclick="return false;">Relief Printmaking</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/798aa7bf-049f-4e06-a01a-23fb7efcd214_HarveyE_ReliefPrintmaking.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>LEVEL: "
             "ALL LEVELS</span></p><p><span style='line-height: 115%; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 14px; color: #000000'>In this 5 week program design, "
             'carve, and print your own image with linoleum! Relief '
             'printmaking is the process of strategically removing the '
             'printable surface to create a fixed design that can be printed '
             'many times over. Develop your own design considering positive '
             'and negative space, transfer and carve the design, and print. In '
             'addition, this course reviews one and two color printing. One on '
             'one feedback is given, and group discussion is '
             'encouraged.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/E.Harvey Relief '
             'Printmaking.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>E.Harvey Supply "
             "List.pdf</span></a></p><p><span style='margin-bottom: 0px "
             '!important; color: rgb(0, 0, 0); font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 12px\'>Open Studio: '
             '</span><a '
             'href="files/read?file=files/OpenStudio_Printmaking_Sp2026.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'margin-bottom: 0px '
             '!important; color: rgb(0, 0, 0); font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 12px\'>Open Studio '
             'Spring 2026 - Printmaking.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/13</td>\n'
             '\n'
             '<td class="show-on-mobile">06:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=125261">Harvey, Evelyn</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$455.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066000" href="#EventID=3066000" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$455.00" eventid="3066000" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:56 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:56 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328475',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328475">\n'
             '<h2><a class="lnkCourseDetails" courseid="328475" href="#" '
             'onclick="return false;">Relief Printmaking for All '
             'Levels</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/43d31a22-66c4-4870-9dc8-8e59332830a9_HarveyE_ReliefPrintmaking.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>LEVEL: ALL LEVELS</span></p><p><span "
             'style=\'line-height: 115%; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>In this "
             '4 week course, design, carve, and print your own 9x12 image. '
             'Working on one design, this 4 week program keeps in mind all '
             'printer levels from those just getting started, to advanced, and '
             'those looking to refine or get back into printmaking. Develop '
             'your own design using positive and negative space, review the '
             'reduction process of carving your linoleum block, and print '
             'using the printing press. One on one feedback is given, and '
             'group discussion is encouraged.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             "checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/E.Harvey Relief Printmaking for All '
             'Levels.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>E.Harvey Supply "
             'List.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=125261">Harvey, Evelyn</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$285.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065906" href="#EventID=3065906" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$285.00" eventid="3065906" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:56 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:56 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328483',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328483">\n'
             '<h2><a class="lnkCourseDetails" courseid="328483" href="#" '
             'onclick="return false;">Resin 101: Create Your Own '
             'Tray</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/05131ca6-bec1-48ec-b55b-9c61ccd8a0d2_MadisonJ_TheResinArtExperience.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='background: white; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>This Resin 101 workshop offers an exciting "
             'introduction to the captivating world of resin art, perfect for '
             'anyone eager to explore creative techniques and craft stunning '
             'pieces. Participants will learn foundational resin skills while '
             'creating a dazzling tray.\xa0The workshop begins with a '
             'comprehensive overview of basic resin art methods, including '
             'mixing, pouring, and curing resin safely and effectively. '
             'Attendees will discover how to manipulate colors and\xa0'
             'textures. Layering techniques will add depth unique '
             'accents.</span></p><p class="MsoNormal" style="line-height: '
             'normal"><span style=\'background: white; font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>A supplemental project will include the creation "
             'of unique holiday decorations. By the end of the workshop, '
             'attendees will have developed essential resin art capabilities '
             'and completed beautiful, artworks. The workshop is suitable for '
             'beginners and creative hobbyists alike.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/J.Madison Resin 101 Create Your Own '
             'Tray.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>J.Madison Supply "
             'List.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">11/28</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td>Madison, Jules</td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$235.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066057" href="#EventID=3066057" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$235.00" eventid="3066057" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:56 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:56 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321534',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321534">\n'
             '<h2><a class="lnkCourseDetails" courseid="321534" href="#" '
             'onclick="return false;">Robots &amp; Building Lab! (Ages: '
             '6-9)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/c06e5793-53ff-4e41-8bec-368e6f8151d6_WatersN_RobotsBuildingLab.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Think big, build bold, and bring your wildest "
             "ideas to life!</span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>\xa0 </span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>In this inventive weeklong camp, young makers will "
             'design and construct both small-scale and life-sized creations '
             'using cardboard, boxes, recyclables, and found materials. From '
             'robots to buildings, campers will explore how everyday scraps '
             'can become extraordinary sculptures.</span><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>\xa0</span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Each day introduces new "
             'creative challenges—engineering balance and structure, '
             'decorating with paint and collage, and teaming up to build large '
             'collaborative works. Campers will learn to problem-solve, plan, '
             'and play as they transform simple materials into complex '
             'creations full of character and color.</span><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>\xa0 </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>By the end of the week, "
             'the studio will be filled with small-scale and life size robots, '
             'towers, and imaginative worlds ready for display in a joyful '
             'end-of-week art show and then take their creations '
             'home!</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Parents: Please pack a "
             'water bottle as well as a peanut free snack.</span></p><p><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Camp forms are '
             'required at the time of registration, click </span><a '
             'href="files/read?file=files/SAC Summer Art Studios Forms '
             '2026.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>here</span></a><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'> to '
             "access.</span></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "background-color: #ffffff; font-size: 13px'>Please review our "
             'Summer Art Studio withdrawal &amp; reimbursement policies '
             '</span></em></strong><a href="files/read?file=files/Summer Art '
             'Policies PDF-1-7-26.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><strong><em><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             'background-color: #ffffff; font-size: '
             "13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/17</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=132562">Waters, Nell</a></td>\n'
             '<td class="">6 - 10</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2958055" href="#EventID=2958055" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2958055" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-1" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:56 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:56 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=269900',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="269900">\n'
             '<h2><a class="lnkCourseDetails" courseid="269900" href="#" '
             'onclick="return false;">Sandcast Stick &amp; Stone '
             'Pendant</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/54882939-4ffc-466e-919d-6bbb7cac4980_Henriques.M_StickandStoneSilverPendant.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style="background: white"><span style=\'background: '
             'white; color: #000000; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px'>This workshop offers an "
             'opportunity to learn the age-old art of sandcasting metal. Using '
             'real twigs and natural elements, students will learn the basics '
             'of making a mold in sand, melting metal and casting.</span><span '
             'style=\'color: #000000; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px'> </span><span "
             "style='background: white; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px\'>We '
             'will then sand, file, solder, add patina, polish and bezel set a '
             'small stone to create a one-of-a-kind pendant that mother nature '
             'would surely envy!</span></p><p style="background: white"><span '
             "style='background: white; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px\'>\xa0'
             "</span><span style='color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: '
             "14px'><br/></span><span style='background: white; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 14px'>You will also learn about studio "
             'safety and safety guidelines for all types of techniques used '
             'within the Jewelry studio. At the end of the workshop, you will '
             'walk away with a stronger understanding of Jewelry making, a new '
             'set of skills to use to grow as a maker, and a beautiful pendant '
             'that you can take home to finish as you like. Experience is '
             'encouraged, but not required.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p '
             'style="background: white"><span style=\'font-weight: 400; '
             'letter-spacing: 0.15pt; color: #000000; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px\'>List '
             'of Materials: All materials are provided for this offering and '
             "included in the class price.\xa0</span><span style='font-weight: "
             '400; background: white; color: #000000; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; font-size: '
             "12px'>Students are required to wear closed toe shoes, and long "
             'hair must be tied back.\xa0</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/19</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 03:00 PM</td>\n'
             '<td><a href="#FacultyDetail=103494">Henriques, Maureen</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$385.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065964" href="#EventID=3065964" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">5</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$385.00" eventid="3065964" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="5" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:56 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:56 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=283378',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="283378">\n'
             '<h2><a class="lnkCourseDetails" courseid="283378" href="#" '
             'onclick="return false;">School Break Studio Art Jams (Ages: '
             '5-10)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/20d6ca2b-2fbe-4aba-881b-c627ab7d6a23_Kot_SchoolBreakStudioArtJams.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Children will discover the beauty and magic of "
             'expression while exploring a variety of materials in each studio '
             'session. Skills and techniques will be developed while painting, '
             'drawing, sculpting and making friends. Materials may include '
             'charcoal, fabric, paint, clay, watercolors, oil pastels, wood, '
             'foam, beads and glitter dust, more. View individual class '
             'offerings for a full description of the '
             "theme!</span></p><p><span style='line-height: 115%; font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>9/21 – Sketching Outdoors, Painting "
             "a Still Life with Apples</span></p><p><span style='line-height: "
             '115%; font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>10/12 – Exploring October "
             'Colors and Light in the Changing Landscape</span></p><p '
             'class="MsoNormal"><span style=\'line-height: 115%; font-size: '
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>11/3 – The Imaginative Life Cycle in "
             'Autumn: Fallen Leaves, Slugs, Fireflies, Glowing '
             'Larvae</span></p><p class="MsoNormal"><span style=\'line-height: '
             '115%; font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>11/11 – Creating a "
             'Seasonal Clay Critter: Raccoon, Skunk, Opossum, Squirrel, '
             'Chipmunk, more</span></p><p class="MsoNormal"><span '
             "style='line-height: 115%; font-size: 12px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>11/23 '
             "– </span><span style='line-height: 115%; font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>SCULPTURE with Wood, Metal, Paint, Feathers, "
             'Fur: Turkeys, Bears, Rabbits, Red Fox, Skunks &amp; '
             "More</span></p><p><span style='line-height: 115%; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>11/24 - </span><span style='line-height: 115%; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px; color: #000000'>Mixed Media PAINTING on Artist "
             'Board: Turkeys, Bears, Rabbits, Red Fox, Skunks, '
             'more</span></p><p class="MsoNormal"><span style=\'line-height: '
             '115%; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>12/21\xa0- Mixed "
             'Media SCULPTURE: Winter/Holiday House</span></p><p '
             'class="MsoNormal"><span style=\'line-height: 115%; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>12/22\xa0- Mixed Media PAINTING on Artist Board: "
             'Winter/Holiday House</span></p><p class="MsoNormal"><span '
             'style=\'line-height: 115%; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 12px; color: #000000'>12/28 – "
             'Remembering Special Momemnts in 2026 – Mixed Media '
             'Painting</span></p><p class="MsoNormal"><span '
             'style=\'line-height: 115%; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 12px; color: #000000'>12/29 – "
             'Creating a Self-Portrait in Clay</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p '
             'style="background: white"><span style=\'font-size: 12px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: All materials are provided "
             'for this offering. Students will\xa0</span><span '
             "style='background: white; font-size: 12px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>have '
             'an outdoor break time for free play and exploration.\xa0Please '
             'bring a nut-free snack, beverage and comfortable shoes for '
             "exploring.\xa0</span></p><p><span style='line-height: 115%; "
             'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>*For Clay and Wood "
             'projects, please bring a sturdy container to transport '
             "sculptures home. </span><span style='line-height: 115%; "
             'background: white; font-size: 12px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>*Those '
             'attending workshop on 12/28/2026 should come prepared with '
             "</span><span style='line-height: 115%; font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>color copies  of favorite photos from "
             'home.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/21</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$195.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065967" href="#EventID=3065967" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">15</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$195.00" eventid="3065967" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="15" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">10/12</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$195.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065999" href="#EventID=3065999" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">13</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$195.00" eventid="3065999" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="13" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">11/3</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$195.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066029" href="#EventID=3066029" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">15</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$195.00" eventid="3066029" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="15" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">11/11</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$195.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066040" href="#EventID=3066040" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">15</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$195.00" eventid="3066040" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="15" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">11/23</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$195.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066053" href="#EventID=3066053" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">15</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$195.00" eventid="3066053" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="15" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">11/24</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$195.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066055" href="#EventID=3066055" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">15</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$195.00" eventid="3066055" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="15" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">12/21</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$195.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066071" href="#EventID=3066071" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">15</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$195.00" eventid="3066071" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="15" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">12/22</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$195.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066072" href="#EventID=3066072" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">15</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$195.00" eventid="3066072" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="15" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">12/28</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 01:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$195.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066073" href="#EventID=3066073" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">15</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$195.00" eventid="3066073" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="15" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">12/29</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 02:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75699">Kot, Marta Violette</a></td>\n'
             '<td class="">5 - 11</td>\n'
             '<td class="">$215.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066074" href="#EventID=3066074" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">15</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$215.00" eventid="3066074" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="15" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:56 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:56 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328476',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328476">\n'
             '<h2><a class="lnkCourseDetails" courseid="328476" href="#" '
             'onclick="return false;">Sculpting an Autumn Bas Relief</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/51078825-c26d-4597-b463-43206f269740_MurphyJ_AutumnBasRelief.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "font-size: 14px'>LEVEL: ALL LEVELS</span></p><p><span "
             'style=\'line-height: 115%; font-family: Arial, "Helvetica Neue", '
             'Helvetica, sans-serif; color: #000000; font-size: '
             "14px'>Celebrate Fall with sculpture! In this course, students "
             'will learn the fascinating art of sculpting a bas relief in '
             'clay; no experience is necessary to begin working in this '
             'accessible sculptural style. The class will be particularly '
             'helpful for students with drawing and painting experience who '
             'would like to explore clay, as well as those who would like to '
             'continue working on their piece at home between classes. '
             'Students will learn sculpting and drawing techniques to model '
             'the illusion of depth and form, creating a beautiful seasonal '
             "still life to hang on the wall.</span><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "font-size: 14px'>\xa0 </span><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "font-size: 14px'>Work may be fired in a kiln to make a lasting "
             'work of art to keep, and is also a perfect beginner mold making '
             'project to cast copies for gift giving. This course will give '
             'students the foundational skills to confidently approach complex '
             'subjects such as the portrait or figure, and is an excellent '
             'complement to Figure Sculpture Revisited. Water-based ceramic '
             'clay is available for purchase through Silvermine with the '
             'option to fire finished work for an additional '
             'fee.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             "checkout.</span></strong></p><p><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>List of Materials: </span><a "
             'href="files/read?file=files/J.Murphy Figure Sculpture '
             'Updated.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>J.Murphy Supply "
             'List.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/22</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=117109">Murphy, Julia</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$350.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065969" href="#EventID=3065969" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">7</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$350.00" eventid="3065969" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="7" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:56 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:56 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=190837',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="190837">\n'
             '<h2><a class="lnkCourseDetails" courseid="190837" href="#" '
             'onclick="return false;">Sculptural Figure &amp; Portrait '
             'Painting in Oil or Pastel</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/b93d1933-83ba-494e-8662-de2244879cba_FisherD_SculpturalFigurePainting.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: '
             "14px'>LEVEL: ALL LEVELS</span></p><p><span style='background: "
             'white; letter-spacing: 0.15pt; color: #000000; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: '
             "14px'>Be prepared to squint, step back and use your big brushes! "
             'In this course, through the use of painting and drawing live '
             'models, you will learn fundamental approaches to capturing '
             'correct proportions, convincing gestures and realistic effects '
             'of light and shadow through the use of gaining an understanding '
             'of tone and color temperature. Another focus will be using oil, '
             'acrylic or pastels in a sculptural way, using these mediums to '
             'impart greater solidity and expressive potential using impasto '
             'and accentuated planes changes in the form. We will focus on '
             'these key principles to see how they are all interconnected and '
             'play vital roles in breathing life into our work. '
             '</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials:\xa0"
             '</span><a '
             'href="files/read?file=files/D.Fisher%20Sculptural%20Figure%20Painting.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'font-size: 12px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>D.Fisher Supply "
             "List.pdf</span></a></p><p><strong><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>*Class will not meet "
             '11/25*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/30</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75684">Fisher, Dean</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$625.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065983" href="#EventID=3065983" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$625.00" eventid="3065983" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:56 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:56 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328477',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328477">\n'
             '<h2><a class="lnkCourseDetails" courseid="328477" href="#" '
             'onclick="return false;">Select-Your-Sculpt: Personal Projects '
             'with Guided Support</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/91e5b0f9-9d35-4d39-a272-a20b9d8e49d4_MurphyJ_SelectYourSculptPersonalProjectsGuidedSupport.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>LEVEL: ALL LEVELS</span></p><p><span "
             "style='line-height: 115%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>In '
             'this fun and flexible class, students of all levels will have '
             'the freedom to pursue the sculptural project of their choice in '
             'clay. Pieces can be of any subject, figural or abstract, with '
             'the option to use water or oil-based clay in any format, from '
             'freestanding figure to wall-hung bas relief. Whether working '
             'from imagination or photos, each student will receive '
             'instruction tailored to their specific project, learning tips '
             'and tricks to plan and realize their personal vision. Though '
             'Free Sculpt will not feature a model, this class is a perfect '
             'companion to Figure Sculpture Revisited, allowing students more '
             'guided studio time for refinement of work done from '
             'life.</span></p><p class="MsoNormal"><span style=\'line-height: '
             '115%; font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Water-based ceramic clay "
             'is available for purchase through Silvermine with the option to '
             'fire finished work for an additional fee. Students wishing to '
             'work in oil-based plasticene will be responsible for purchasing '
             'their own NON-SULFUR clay and setup as per the workshop supply '
             'list. Please note that oil clay work cannot be fired, so '
             'students will need to cast their work in a permanent medium when '
             'they are finished (private lessons are available for bronze '
             'casting and more).</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             "checkout.</span></strong></p><p><span style='line-height: 115%; "
             'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>IMPORTANT: An armature or "
             'relief board is required to begin new projects, and any student '
             'without one will be unable to begin. Armatures may be ordered '
             'on-demand directly from the instructor prior to workshop start. '
             'To request an armature, please contact the school office by '
             'phone at (203) 966-9700 x 2 or by email at</span><span '
             "style='line-height: 115%; background: white; font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'> </span><span style='line-height: 115%; "
             'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             'Helvetica, sans-serif; color: '
             "#000000'>Kelly@Silvermineart.org.</span></p><p><span "
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/J.Murphy Figure Sculpture '
             'Updated.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>J.Murphy Supply "
             'List.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">11/10</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=117109">Murphy, Julia</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$310.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066039" href="#EventID=3066039" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">7</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$310.00" eventid="3066039" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="7" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:56 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:57 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:57 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=302895',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="302895">\n'
             '<h2><a class="lnkCourseDetails" courseid="302895" href="#" '
             'onclick="return false;">Silvermine Saturday: Botanical Printing '
             '- Journal Covers</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/6e55f9de-9e65-4954-99c5-ac1dd96dd6e2_PecquexB_EcoPrintJournal.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p class="BodyA"><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>Botanical printing, also known as eco-printing, is an "
             'artistic technique that involves using plant materials to create '
             'unique and intricate patterns on fabric or paper. It is a '
             'natural and sustainable way to incorporate the beauty of nature '
             'into visual art. By carefully arranging leaves, flowers, and '
             'other plant parts on the surface of the material and applying '
             'pressure and heat, the pigments and tannins present in the '
             'plants are transferred, resulting in stunning, one-of-a-kind '
             'designs. This eco-friendly form of printing provides a '
             'connection to the natural world and allows for endless creative '
             'possibilities.</span></p><p class="BodyA"><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 14px; color: #000000'>Come and learn this "
             'magical process and you will be forever ‘hooked’! There will be '
             'a brief lecture about the technique, and then each person will '
             'get an opportunity to print a piece of wool that can be used to '
             'cover a journal/sketchbook (provided in the class) to bring home '
             'with them.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>All materials are "
             'included the in program fee.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/17</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 03:00 PM</td>\n'
             '<td><a href="#FacultyDetail=128327">Pecquex, Bonnee</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066007" href="#EventID=3066007" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066007" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">11/28</td>\n'
             '\n'
             '<td class="show-on-mobile">10:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=128327">Pecquex, Bonnee</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066056" href="#EventID=3066056" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066056" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:57 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:57 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=302897',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="302897">\n'
             '<h2><a class="lnkCourseDetails" courseid="302897" href="#" '
             'onclick="return false;">Silvermine Saturday: Botanical Printing '
             '- Silk Scarves</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/fa28e1f3-215b-4ff8-80d3-3eeac001eb78_PecquexB_EcoPrintJournal_SilkScarfYellow.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p class="BodyA"><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>Botanical printing, also known as eco-printing, is an "
             'artistic technique that involves using plant materials to create '
             'unique and intricate patterns on fabric or paper. It is a '
             'natural and sustainable way to incorporate the beauty of nature '
             'into visual art. By carefully arranging leaves, flowers, and '
             'other plant parts on the surface of the material and applying '
             'pressure and heat, the pigments and tannins present in the '
             'plants are transferred, resulting in stunning, one-of-a-kind '
             'designs. This eco-friendly form of printing provides a '
             'connection to the natural world and allows for endless creative '
             'possibilities.</span></p><p class="BodyA"><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 14px; color: #000000'>Come and learn this "
             'magical process and you will be forever ‘hooked’! There will be '
             'a brief lecture about the technique, and then each person will '
             'get an opportunity to make a silk scarf to take home with '
             'them.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>All Materials are "
             'included in the program fee.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/10</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 03:00 PM</td>\n'
             '<td><a href="#FacultyDetail=128327">Pecquex, Bonnee</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065996" href="#EventID=3065996" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3065996" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">10/31</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 03:00 PM</td>\n'
             '<td><a href="#FacultyDetail=128327">Pecquex, Bonnee</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066027" href="#EventID=3066027" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066027" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">11/21</td>\n'
             '\n'
             '<td class="show-on-mobile">10:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=128327">Pecquex, Bonnee</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066050" href="#EventID=3066050" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066050" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">12/5</td>\n'
             '\n'
             '<td class="show-on-mobile">10:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=128327">Pecquex, Bonnee</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$75.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066059" href="#EventID=3066059" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$75.00" eventid="3066059" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:57 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:57 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328478',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328478">\n'
             '<h2><a class="lnkCourseDetails" courseid="328478" href="#" '
             'onclick="return false;">Snow Frosted Clay Houses (Ages: '
             '10-13)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/db8f2b10-8260-4d73-8749-c6ddc7c462ea_Long_Snow_Frosted_Clay_Houses.jpeg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>In this ceramics hand-building workshop, "
             'students will use slab-building techniques to construct their '
             'own winter or holiday-themed house. Whether they decide to '
             'create a cozy cottage, festive village shop, or gingerbread '
             'house, each student will add their own imaginative touch through '
             'details, textures, and seasonal decorations. Using underglaze, '
             'students will colorfully finish their keepsake creations to be '
             "glazed and kiln-fired.</span><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>\xa0</span></p><p></p>\n"
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>List of Materials: All materials are provided "
             "for this offering.</span></p><p><span style='line-height: 115%; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px; color: #000000'>All artwork will be available "
             'two to three weeks after the program has occurred and the School '
             'Office will contact participants via email with pick up '
             'instructions.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">12/6</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td>Long, Charlotte</td>\n'
             '<td class="">10 - 14</td>\n'
             '<td class="">$165.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066062" href="#EventID=3066062" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$165.00" eventid="3066062" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:57 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:57 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=166028',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="166028">\n'
             '<h2><a class="lnkCourseDetails" courseid="166028" href="#" '
             'onclick="return false;">Sogetsu Ikebana: The Japanese Art of '
             'Flower Arrangement</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/f52d2e23-6bcb-4025-a9a2-549e467e04d0_shizueikebana2.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style="color: rgb(0, 0, 0); font-family: '
             '-webkit-standard"><span style=\'font-size: 14px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>LEVEL: INTERMEDIATE - ADVANCED</span></p><div><p><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Sogetsu Ikebana is much "
             'more than “Japanese flower arranging,” it is a modern form of an '
             'ancient art of sculpture with living materials. Students will '
             'learn the traditional principles and aesthetic disciplines, '
             'combined with creative energies to capture, express and enhance '
             'natural beauty.<br/></span></p></div><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p '
             'style=\'font-family: "Open Sans", sans-serif; color: rgb(51, 51, '
             '51); line-height: 1.4em; font-size: 16px; background-color: '
             "rgb(255, 255, 255)'><span style='letter-spacing: 0.2px; "
             'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials:\xa0"
             'Students should bring vessels, shears, pin-holders and plant '
             'materials or you can purchase some plant materials from the '
             'instructor for a nominal cost.</span></p><p><strong><em><span '
             "style='letter-spacing: 0.2px; font-size: 12px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>*Class will not meet "
             '11/25*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75715">Pleasanton, Shizue</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$455.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065921" href="#EventID=3065921" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$455.00" eventid="3065921" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:57 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:57 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321643',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321643">\n'
             '<h2><a class="lnkCourseDetails" courseid="321643" href="#" '
             'onclick="return false;">Stamped &amp; Soldered: Charm Bracelet '
             '&amp; Pendant Sets (Ages: 10-14)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/85ad30a5-5519-451d-a7cc-07476baf77b0_HenriquesM_StampedandSoldered.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Young '
             'artists will dive into the art of metal stamping and soldering '
             'as they create a personalized charm bracelet and pendant set. '
             'Students will learn to safely use jewelry tools and torches '
             "while they:</span></p><ul><li><p><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Stamp words, initials, and decorative designs "
             "into metal charms</span></p></li><li><p><span style='font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Solder jump rings and simple "
             "connections</span></p></li><li><p><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Assemble their finished bracelet and pendant "
             'with their own creative flair</span></p></li></ul><p><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>With a focus on safety, "
             'creativity, and craftsmanship, this workshop introduces kids to '
             'real metalsmithing techniques in a fun and encouraging '
             'environment. Each student will leave with a unique, wearable '
             'piece of jewelry they designed and built '
             "themselves.</span></p><p><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>All tools, materials, and safety gear are "
             'provided. No prior experience needed—just '
             'imagination!</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><em><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Required "
             "Attire:</span></em></p><ul><li><p><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Close toed shoes (no "
             "sandals)</span></em></p></li><li><p><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Tee shirts (no tank tops) \xa0"
             "</span></em></p></li><li><p><em><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Pants (no "
             "shorts)</span></em></p></li><li><p><em><span style='font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Long hair must be tied "
             "back</span></em></p></li></ul><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Parents: Please pack a water bottle as well as a "
             "peanut free snack.</span></p><p><span style='font-size: 12px; "
             'color: #000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Camp forms are required at the time of registration, "
             'click </span><a href="files/read?file=files/SAC Summer Art '
             'Studios Forms 2026.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; color: #000000; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>Please review our Summer Art Studio withdrawal "
             '&amp; reimbursement policies </span></em></strong><a '
             'href="files/read?file=files/Summer Art Policies PDF-1-7-26.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/10</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=103494">Henriques, Maureen</a></td>\n'
             '<td class="">10 - 15</td>\n'
             '<td class="">$570.00</td>\n'
             '<td class="">\n'
             '<a eventid="2960291" href="#EventID=2960291" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$570.00" eventid="2960291" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="0" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:57 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:57 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328479',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328479">\n'
             '<h2><a class="lnkCourseDetails" courseid="328479" href="#" '
             'onclick="return false;">Sterling Silver Sandcast Ring</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/42c4032e-731d-46d8-b8a1-cb9e0c44067e_HenriquesM_SterlingSilverSandcastRing.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Learn the age old art of sand casting! Using 3D "
             'printed ring blanks in various shapes, students will learn the '
             'basics of making a mold in specialty sand, using a crucible to '
             'melt silver, and cast their own ring shank. Techniques such as '
             'sanding, filing, soldering, bezel creation and setting a stone '
             'will be explored to fashion a one of a kind ring. Beginners are '
             'welcome, but previous jewelry studio experience is strongly '
             'encouraged.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             'at checkout.</span></strong></p><p><span style="font-family: '
             'Arial, sans-serif; font-weight: 400; color: black; font-size: '
             '9pt; letter-spacing: 0.15pt">List of Materials: All materials '
             'are provided for this offering and included in the class '
             'price.\xa0</span><span style="font-family: Arial, sans-serif; '
             'font-weight: 400; color: black; background: white; font-size: '
             '9pt">Students are required to wear closed toe shoes, and long '
             'hair must be tied back.\xa0</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/3</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=103494">Henriques, Maureen</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$200.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065990" href="#EventID=3065990" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">3</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$200.00" eventid="3065990" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="3" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:57 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:57 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=248774',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="248774">\n'
             '<h2><a class="lnkCourseDetails" courseid="248774" href="#" '
             'onclick="return false;">Sterling Silver Spinner Rings</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/161979138576988_maureen_spinner '
             'ring.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Spinner rings are just as fun to make as they are to "
             'wear! Using sterling silver sheet and wire, we will focus on '
             'simple ring construction, sizing, metal texturing, soldering, '
             'patina and polish.\xa0Experience is encouraged, but not '
             'necessary for this fidgety fun class. </span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             'Information:</h3><div><p><span style="font-family: Arial, '
             'sans-serif; font-weight: 400; color: black; font-size: 9pt; '
             'letter-spacing: 0.15pt">List of Materials: All materials are '
             'provided for this offering and included in the class price.\xa0'
             '</span><span style="font-family: Arial, sans-serif; font-weight: '
             '400; color: black; background: white; font-size: 9pt">Students '
             'are required to wear closed toe shoes, and long hair must be '
             'tied back.\xa0</span></p><p><span style="color: rgb(0, 0, 0); '
             'letter-spacing: 0.2px"><br/></span></p></div><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/24</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=103494">Henriques, Maureen</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$265.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066016" href="#EventID=3066016" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">6</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$265.00" eventid="3066016" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="6" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:57 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:57 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328480',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328480">\n'
             '<h2><a class="lnkCourseDetails" courseid="328480" href="#" '
             'onclick="return false;">Sterling Silver Splash Ring</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/2b9f0604-d75f-40ac-b58a-de0828f89bb6_HenriquesM_SterlingSilverSpalshRing.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Jump in and let's create a sterling silver ring "
             'inspired by organic forms and natural textures. In this hands-on '
             'workshop, students will learn how to fabricate a sculptural '
             'multi-band ring featuring a stone set in an artistic water '
             'splash design. Students will learn and refine techniques such '
             'as, ring sizing and shaping; soldering multiple bands together; '
             'creating decorative wire elements; stone setting techniques; '
             'finishing and polishing silver jewelry.</span><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>\xa0 </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>This project is perfect "
             'for adventurous beginners with some basic metalsmithing '
             'experience, as well as intermediate students looking to expand '
             'their stone-setting and design skills. Stones will '
             'vary.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             'at checkout.</span></strong></p><p><span style="font-family: '
             'Arial, sans-serif; font-weight: 400; color: black; font-size: '
             '9pt; letter-spacing: 0.15pt">List of Materials: All materials '
             'are provided for this offering and included in the class '
             'price.\xa0</span><span style="font-family: Arial, sans-serif; '
             'font-weight: 400; color: black; background: white; font-size: '
             '9pt">Students are required to wear closed toe shoes, and long '
             'hair must be tied back.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/17</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 03:00 PM</td>\n'
             '<td><a href="#FacultyDetail=103494">Henriques, Maureen</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$345.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066006" href="#EventID=3066006" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">4</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$345.00" eventid="3066006" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="4" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:57 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:57 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=294641',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="294641">\n'
             '<h2><a class="lnkCourseDetails" courseid="294641" href="#" '
             'onclick="return false;">Summer Studio on the Potter\'s Wheel '
             '(Ages: 10-13)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/a8e8482e-c2cc-4622-abb7-f469867e4fd3_Dunn.Z_TeenWheel.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Take a spin on the Potter’s Wheel!</span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>\xa0</span><span "
             "style='line-height: 107%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Students will learn the basics of throwing on the "
             'potter’s wheel, from centering to trimming and glazing. '
             "</span><span style='line-height: 107%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>In addition to mastering the basics, various "
             'decorating, altering, and finishing techniques will be utilized. '
             'Cups, mugs, bowls, and other basic forms will be explored. '
             'Finished pieces will be glazed and ready for use. Class '
             'demonstrations as well as individual instruction will be '
             'provided. No prior experience is required.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='background: white; font-size: 12px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>Clay '
             'pieces take three to four weeks to be fired from the end-date of '
             'the program. The school office will notify parents by email when '
             'pieces are ready to be picked up.\xa0Storage is limited and we '
             'kindly ask that prompt pick up is completed.</span></p><p><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Camp forms are '
             'required at the time of registration, click </span><a '
             'href="files/read?file=files/SAC Summer Art Studios Forms '
             '2026.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>here</span></a><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'> to '
             "access.</span></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "background-color: #ffffff; font-size: 13px'>Please review our "
             'Summer Art Studio withdrawal &amp; reimbursement policies '
             '</span></em></strong><a href="files/read?file=files/Summer Art '
             'Policies PDF-1-7-26.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><strong><em><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             'background-color: #ffffff; font-size: '
             "13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/3</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=89463">Dunn, Zach</a></td>\n'
             '<td class="">10 - 14</td>\n'
             '<td class="">$535.00</td>\n'
             '<td class="">\n'
             '<a eventid="2955164" href="#EventID=2955164" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$535.00" eventid="2955164" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-2" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">8/10</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=89463">Dunn, Zach</a></td>\n'
             '<td class="">10 - 14</td>\n'
             '<td class="">$535.00</td>\n'
             '<td class="">\n'
             '<a eventid="2955189" href="#EventID=2955189" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$535.00" eventid="2955189" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-9" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:57 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:57 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=316545',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="316545">\n'
             '<h2><a class="lnkCourseDetails" courseid="316545" href="#" '
             'onclick="return false;">Take Great Photos with Your '
             'Smartphone</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/36a85062-3e30-4b8d-a401-db50af67ea45_Take '
             'Great Photos with Your Smartphone.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>The '
             'quality of smartphone cameras is improving rapidly. In many '
             'situations, they work quite well as stand-ins for 35mm cameras. '
             'Therefore, dragging around a heavy camera, hoping not to miss '
             'that great picture opportunity, is no longer necessary. A '
             'good-quality smartphone camera may work almost as '
             "well.</span></p><p><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>This class is for those interested in producing "
             'high-quality images with their smartphone cameras. That means '
             'learning and understanding the camera controls, as well as when '
             'and how to use them. Doing so will put the photographer in '
             'better control of their camera—leading to significantly improved '
             "photographs.</span></p><p><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Everything necessary for taking great smartphone "
             'pictures will be addressed, including:</span></p><p '
             'style="margin-left: .5in; text-indent: -.25in"><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>·</span><span "
             'style=\'font: 7.0pt "Times New Roman"; font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Learning how to use the "
             'camera controls on your specific smartphone</span></p><p '
             'style="margin-left: .5in; text-indent: -.25in"><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>·</span><span "
             'style=\'font: 7.0pt "Times New Roman"; font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Basic photographic "
             'theory</span></p><p style="margin-left: .5in; text-indent: '
             '-.25in"><span style=\'font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             '#000000\'>·</span><span style=\'font: 7.0pt "Times New Roman"; '
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             'Helvetica, sans-serif; color: '
             "#000000'>\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Discussing and, if "
             'desired, installing other smartphone camera apps</span></p><p '
             'style="margin-left: .5in; text-indent: -.25in"><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>·</span><span "
             'style=\'font: 7.0pt "Times New Roman"; font-size: 14px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Suggestions for "
             'hand-holding your camera</span></p><p style="margin-left: .5in; '
             'text-indent: -.25in"><span style=\'font-size: 14px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             '#000000\'>·</span><span style=\'font: 7.0pt "Times New Roman"; '
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             'Helvetica, sans-serif; color: '
             "#000000'>\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Specific steps to follow "
             'when taking a picture</span></p><p style="margin-left: .5in; '
             'text-indent: -.25in"><span style=\'font-size: 14px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             '#000000\'>·</span><span style=\'font: 7.0pt "Times New Roman"; '
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             'Helvetica, sans-serif; color: '
             "#000000'>\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Useful accessories for "
             'your smartphone camera</span></p><p style="margin-left: .5in; '
             'text-indent: -.25in"><span style=\'font-size: 14px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             '#000000\'>·</span><span style=\'font: 7.0pt "Times New Roman"; '
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             'Helvetica, sans-serif; color: '
             "#000000'>\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>How to compose your "
             'photographs to produce truly wonderful '
             "results</span></p><p><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>A very complete handout will be distributed on arrival. "
             'It contains lots of information and will greatly simplify the '
             'process of understanding what’s being taught in class. You’ll '
             'also find it quite useful for review after the class '
             'ends.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>Please note:</span></strong><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'> This class will </span><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; font-size: 12px; color: '
             "#000000'>not</span></em><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'> cover the taking of "
             "selfies.</span></p><p><strong><span style='font-weight: normal; "
             'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: Don’t "
             'forget to bring your fully charged smartphone, the smartphone’s '
             'charger, and any accessories you '
             'have.</span></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">11/21</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=132646">Glass, Peter</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$185.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066051" href="#EventID=3066051" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$185.00" eventid="3066051" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:57 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:58 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:58 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=190847',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="190847">\n'
             '<h2><a class="lnkCourseDetails" courseid="190847" href="#" '
             'onclick="return false;">Talking Heads: Portrait '
             'Painting</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/a7bc3570-c153-4c07-828f-3f4dba443be9_Kraig '
             'Binkowski (Best).jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='background-color: rgb(255, 255, 255); "
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>LEVEL: ALL "
             "LEVELS</span></p><p><span style='background: white; font-size: "
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>This course focuses on producing a "
             'more intimate view of a portrait. There will be individual '
             'attention as students work from a model in two five-week poses. '
             'Throughout the course, there will be short demonstrations and '
             "examples of different artist's work. Each session will focus on "
             'one pictorial objective, such as tone, composition and color, as '
             'well as a focus on individual facial features. It welcomes both '
             'beginners and experienced artists.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             'Information:</h3><div><p><span style="color: black; font-size: '
             '12px; font-family: Arial">List of Materials:\xa0</span><a '
             'href="files/read?file=files/H.Harrington Talking Heads Portrait '
             'Painting.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span style="color: '
             'black; font-size: 12px; font-family: Arial">H.Harrington Supply '
             'List.pdf</span></a></p><p><strong><em><span style="color: black; '
             'font-size: 12px; font-family: Arial">*Class will not meet '
             '11/26*</span></em></strong></p></div><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/24</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75692">Harrington, Heidi</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$690.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065972" href="#EventID=3065972" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">9</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$690.00" eventid="3065972" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="9" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:58 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:58 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=321612',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="321612">\n'
             '<h2><a class="lnkCourseDetails" courseid="321612" href="#" '
             'onclick="return false;">Teen Painting Studio (Ages: '
             '14-17)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/115dca81-099c-412f-87f6-9dea499f443e_Waters.N_PCSummerLandscape.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Explore atmosphere, emotion, and place through "
             "observation and</span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>\xa0 </span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>painting.</span><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>\xa0</span><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>This weeklong intensive invites teen artists to "
             'deepen their understanding of landscape painting while '
             'developing their individual artistic voice. Campers will study '
             'advanced techniques in composition, color theory, and '
             'perspective, exploring how artists across time have expressed '
             'mood, light, and movement through the natural world. Working '
             'both outdoors and in the studio, teens will paint from life and '
             'imagination using watercolor, acrylic, and mixed media. Daily '
             'demonstrations and critiques will encourage experimentation and '
             'personal growth, while sketchbook work will help refine ideas '
             'and strengthen drawing skills. By week’s end, each artist will '
             'have a small collection of finished works ready for '
             'exhibition—capturing their unique vision of the landscapes that '
             "inspire them.</span><span style='font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             '#000000\'>\xa0</span></p><p class="MsoNormal"><span '
             "style='line-height: 106%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Highlights:</span></p><ul><li><p "
             'class="MsoNormal"><span style=\'line-height: 106%; font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Painting from life (“plein air”) on "
             'our picturesque campus and from sketches</span></p></li><li><p '
             'class="MsoNormal"><span style=\'line-height: 106%; font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Advanced color mixing, layering, and "
             'glazing techniques</span></p></li><li><p class="MsoNormal"><span '
             "style='line-height: 106%; font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Lessons in light, atmosphere, and mood </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             'Helvetica, sans-serif; color: '
             "#000000'>\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0</span></p></li><li><p "
             'class="MsoNormal"><span style=\'line-height: 106%; font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>Study of historical and contemporary "
             "landscape masters </span><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>\xa0</span></p></li><li><p "
             'class="MsoNormal"><span style=\'line-height: 106%; font-size: '
             '14px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>End-of-week teen art "
             'showcase</span></p></li></ul><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Parents: Please pack a "
             'water bottle as well as a peanut free snack.</span></p><p><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>Camp forms are '
             'required at the time of registration, click </span><a '
             'href="files/read?file=files/SAC Summer Art Studios Forms '
             '2026.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>here</span></a><span '
             "style='font-size: 12px; color: #000000; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'> to '
             "access.</span></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "background-color: #ffffff; font-size: 13px'>Please review our "
             'Summer Art Studio withdrawal &amp; reimbursement policies '
             '</span></em></strong><a href="files/read?file=files/Summer Art '
             'Policies PDF-1-7-26.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><strong><em><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             'background-color: #ffffff; font-size: '
             "13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/3</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=132562">Waters, Nell</a></td>\n'
             '<td class="">14 - 18</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2959428" href="#EventID=2959428" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">3</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2959428" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="3" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:58 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:58 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328481',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328481">\n'
             '<h2><a class="lnkCourseDetails" courseid="328481" href="#" '
             'onclick="return false;">The Art &amp; Craft of Abstract '
             'Photography</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/3228b9c1-be00-49ee-9f14-55ea314a8b8c_ArtandCraftAbstractPhoto1.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>The "
             'course is geared to photographers and designed to give '
             'participants the skills they need to enter, explore and excel in '
             'the realm of abstract photography, and see beyond the reality '
             'that lies in front of the lens. The class will:</span></p><ul '
             'style="margin-top: 0in"><li class="MsoNormal" '
             'style="margin-bottom: 0in; line-height: normal"><p><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 14px; color: #000000'>Look at the history "
             'of abstraction in art and photography;</span></p></li><li '
             'class="MsoNormal" style="margin-bottom: 0in; line-height: '
             'normal"><p><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>Explore "
             'the role the elements and principles of design play in '
             'abstraction, examining how concepts like color, line, shape and '
             'texture function to create compelling '
             'imagery;</span></p></li><li class="MsoNormal" '
             'style="margin-bottom: 0in; line-height: normal"><p><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 14px; color: #000000'>Discover how "
             'Gestalt psychology influences the way we perceive '
             'compositions;\xa0</span></p></li><li class="MsoNormal" '
             'style="margin-bottom: 0in; line-height: normal"><p><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 14px; color: #000000'>Learn how "
             'abstraction challenges photographers to think differently and go '
             'beyond traditional ways of making images; and</span></p></li><li '
             'class="MsoNormal" style="margin-bottom: 0in; line-height: '
             'normal"><p><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>Become "
             'familiar with specialized techniques, including intentional '
             'camera motion, in-camera multiple exposure, and elementalism, as '
             'well as select post-processing programs, as a means to creating '
             'unique abstract images.</span></p></li></ul><p style="margin: '
             '0in"><b><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>WEEK "
             '1:</span></b><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'> "
             '</span><span style=\'font-family: Arial, "Helvetica Neue", '
             'Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>\xa0\xa0\xa0\xa0\xa0 </span><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 14px; '
             "color: #000000'>Abstraction in Art &amp; Photography\xa0"
             '</span><span style=\'font-family: Arial, "Helvetica Neue", '
             'Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0"
             '</span></p><p style="margin: 0in"><b><span style=\'font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 14px; '
             "color: #000000'>WEEK 2:</span></b><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 14px; '
             "color: #000000'> </span><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>\xa0\xa0\xa0\xa0\xa0 </span><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 14px; '
             "color: #000000'>Elementalism (minimalism, color, "
             'etc)</span></p><p style="margin: 0in"><b><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 14px; color: #000000'>WEEK 3: "
             '</span></b><span style=\'font-family: Arial, "Helvetica Neue", '
             'Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>\xa0\xa0\xa0\xa0\xa0 </span><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 14px; '
             "color: #000000'>In-Camera Multiple Exposure</span></p><p "
             'style="margin: 0in"><b><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>WEEK 4:</span></b><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             '#000000\'> </span><span style=\'font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>\xa0\xa0\xa0\xa0\xa0 </span><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 14px; '
             "color: #000000'>Intentional Camera Motion (ICM)</span></p><p "
             'style="margin: 0in"><b><span style=\'font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>WEEK 5:</span></b><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             '#000000\'> </span><span style=\'font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>\xa0\xa0\xa0\xa0\xa0 </span><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 14px; '
             "color: #000000'>Abstraction After the Fact</span></p><p></p>\n"
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             "checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: Students should bring a "
             'camera (traditional, mirrorless or iPhone) for each '
             "class.</span></p><p><span style='line-height: 115%; font-size: "
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>For those using an iPhone, "
             'communication regarding necessary applications will be shared in '
             'advanced of the program start '
             "date.</span></p><p><strong><em><span style='line-height: 115%; "
             'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>*Class will not meet "
             '10/13*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=139278">Loeb Bohren, '
             'Deborah</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$350.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065907" href="#EventID=3065907" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$350.00" eventid="3065907" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">11/3</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=139278">Loeb Bohren, '
             'Deborah</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$350.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066030" href="#EventID=3066030" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$350.00" eventid="3066030" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:58 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:58 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=273940',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="273940">\n'
             '<h2><a class="lnkCourseDetails" courseid="273940" href="#" '
             'onclick="return false;">The Art of Still Life Painting</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/165790475907353_wiestjstilllife.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style="background: white"><span '
             "style='letter-spacing: 0.15pt; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>LEVEL: INTERMEDIATE-ADVANCED</span></p><p "
             'style="background: white"><span style=\'letter-spacing: 0.15pt; '
             'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>The class will "
             'investigate various styles of still life painting such as Dutch, '
             'French, and Impressionist. Each student will have their own '
             'setup which the instructor will help light and compose. '
             'Discussions of shape, color, and edges will start off each '
             'class. Still life is a great way to engage with the many topics '
             'that arise with oil, acrylic, and watercolor. The instructor '
             'will give technical demonstrations throughout the semester. '
             'Drawing experience is helpful. </span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p '
             'style="color: rgb(21, 42, 74); margin: 0px 0px 8px; padding: '
             '0px; font-size: 14px; font-family: Arial"><span style=\'color: '
             'rgb(0, 0, 0); font-size: 12px; font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif\'>List of Materials:\xa0</span><a '
             'href="files/read?file=media/J.Wiest%20The%20Art%20of%20Still%20Life.pdf"><u><span '
             "style='color: rgb(0, 0, 0); font-size: 12px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif\'>J.Wiest Supply '
             'List.pdf</span></u></a><br/></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75733">Wiest, Justin</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$645.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065909" href="#EventID=3065909" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">9</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$645.00" eventid="3065909" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="9" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:58 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:58 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=215027',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="215027">\n'
             '<h2><a class="lnkCourseDetails" courseid="215027" href="#" '
             'onclick="return false;">The Art of Stone Sculpture</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/168305555195037_im000393.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p style='color: rgb(0, 0, 0); font-size: medium; "
             'font-family: "Times New Roman", serif\'><span '
             'style="font-family: Arial; font-size: 14px">LEVEL: ALL '
             "LEVELS</span></p><p style='color: rgb(0, 0, 0); font-size: "
             'medium; font-family: "Times New Roman", serif\'><span '
             'style="font-family: Arial; font-size: 14px">Students will learn, '
             'through hands-on experience and demonstrations, this timeless '
             'art of sculpting stone and working with various types of stone. '
             'Experience hand and power tools while executing a stone piece. '
             'You will be taken through the entire process from stone '
             'selection to carving and polishing.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'letter-spacing: 0.2px; font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>List of Materials: All materials are provided for this "
             "offering</span></p><p><strong><em><span style='letter-spacing: "
             '0.2px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>*Class will not "
             'meet 11/26*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 02:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75677">Davis, Andrew</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$740.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065939" href="#EventID=3065939" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">4</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$740.00" eventid="3065939" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="4" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/17</td>\n'
             '\n'
             '<td class="show-on-mobile">07:00 PM – 10:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75677">Davis, Andrew</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$590.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065947" href="#EventID=3065947" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">5</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$590.00" eventid="3065947" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="5" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:58 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:58 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=316465',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="316465">\n'
             '<h2><a class="lnkCourseDetails" courseid="316465" href="#" '
             'onclick="return false;">The Blacksmith\'s Bench: Forging a '
             'Bottle Opener</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/40957ddd-d61a-4acc-9bb1-6d6e44f20a12_Husock_BottleOpener.png"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>Be the life of the party with your own hand-forged iron "
             'bottle opener! Class will start with a demonstration on how to '
             'use a forge, anvil, and blacksmith’s hammer, after which '
             'students will learn how to forge a decorative bottle opener that '
             'they will finish and take home that same night. Students should '
             'wear cotton clothing, long pants, and closed-toed '
             'shoes.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='margin-bottom: 0px !important; font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of materials: All materials are provided "
             'for this offering.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/19</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 05:00 PM</td>\n'
             '<td><a href="#FacultyDetail=129946">Husock, Leon</a></td>\n'
             '<td class="">14 &amp; up</td>\n'
             '<td class="">$225.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065965" href="#EventID=3065965" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">6</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$225.00" eventid="3065965" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="6" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 500 145
2026-08-05 01:31:58 [silver_mine_art] ERROR: API error 500: 
<!doctype html>
<html lang="en">
<head>
  <title>Server Error (500)</title>
</head>
<body>
  <h1>Server Error (500)</h1><p></p>
</body>
</html>

2026-08-05 01:31:58 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=316467',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="316467">\n'
             '<h2><a class="lnkCourseDetails" courseid="316467" href="#" '
             'onclick="return false;">The Blacksmith\'s Bench: Forging a '
             'Hook</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/0f3bd522-ef07-4f0d-80cc-caca33fb2996_Husock_Hook.png"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "font-size: 14px'>An evening of fire and fun! Students will "
             'explore the ancient art of blacksmithing, heating and forging '
             'steel with a hammer and anvil to create a decorative wall hook. '
             'The class will begin with a demonstration on how to use a forge '
             'and anvil, after which you will forge and finish a hook to take '
             'home that same night. Students should wear cotton clothing, long '
             'pants, and closed-toed shoes.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><table '
             'class="list alt-body-headers no-body-borders no-top-padding '
             'less-v-padding no-tt ng-star-inserted" style="border-spacing: '
             '0px; font-size: 0.875rem; font-weight: 400; width: 610.5px; '
             'margin-bottom: 0px !important; color: rgb(49, 59, 72); '
             'font-family: Nunito, sans-serif; font-style: normal; '
             'letter-spacing: normal; orphans: 2; text-align: start; '
             'text-transform: none; widows: 2; word-spacing: 0px; white-space: '
             'normal; background-color: rgb(255, 255, 255)"><tbody '
             'style="margin-bottom: 0px !important"><tr '
             'class="ng-star-inserted"><td class="v-padding ng-star-inserted" '
             'style="padding: 4px 0px; border-bottom: none; text-align: left; '
             'color: rgb(32, 49, 82); margin-bottom: 0px !important"><div '
             'class="editor asap-editor show-div" style="display: inline; '
             'min-height: 100px; min-width: 30px; width: 335.781px"><p '
             'style="font-size: 0.8125rem; font-weight: 400; margin-top: 0px; '
             'margin-right: 0px; margin-bottom: 0px !important; margin-left: '
             '0px"><span style=\'margin-bottom: 0px !important; font-size: '
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>List of materials: All materials are "
             'provided for this '
             'offering.</span></p></div></td></tr></tbody></table><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/10</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 05:00 PM</td>\n'
             '<td><a href="#FacultyDetail=129946">Husock, Leon</a></td>\n'
             '<td class="">14 &amp; up</td>\n'
             '<td class="">$225.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065997" href="#EventID=3065997" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">6</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$225.00" eventid="3065997" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="6" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:58 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:58 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=326055',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="326055">\n'
             '<h2><a class="lnkCourseDetails" courseid="326055" href="#" '
             'onclick="return false;">The Digital Portrait: Drawing &amp; '
             'Painting the Head on the iPad</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/6b84eddb-e338-4820-a01e-66cdea5adc6a_DeLoca_DigitalPortraitDrawingPaintingHeadiPad.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='font-size: 14px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; color: #000000\'>LEVEL: '
             "ALL LEVELS</span></p><p><span style='font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Learn how to draw and paint the face and head on "
             'the iPad using Procreate. Explore how to compose a portrait and '
             'build your work with light, color, value, and form. You’ll also '
             'learn how to use layers, brushes, and digital tools effectively '
             'and avoid common mistakes. We’ll make pixels feel like '
             'traditional media - and have fun doing it.</span><span '
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>\xa0 </span><span "
             'style=\'font-size: 14px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>A love of drawing and "
             'curiosity about digital tools are all you need. Students may '
             'bring their own iPad and stylus or use classroom Wacom tablets '
             'and computers provided.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>List of Materials: "
             'Students should bring an iPad and Apple Pencil with '
             'Procreate.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/30</td>\n'
             '\n'
             '<td class="show-on-mobile">06:00 PM – 09:00 PM</td>\n'
             '<td><a href="#FacultyDetail=135676">DeLoca, Jonathan</a></td>\n'
             '<td class="">16 &amp; up</td>\n'
             '<td class="">$145.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066025" href="#EventID=3066025" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$145.00" eventid="3066025" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:58 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:58 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=176894',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="176894">\n'
             '<h2><a class="lnkCourseDetails" courseid="176894" href="#" '
             'onclick="return false;">The Fine Art of Black &amp; White '
             'Photography and Darkroom</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/d95ee511-5502-4245-aa55-824e5f5634c1_DunbarB_TheFineArtBlackWhitePhotographyDarkroom.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style="background: white"><span style=\'font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 14px; '
             "color: #000000'>LEVEL: ALL LEVELS</span></p><p><span "
             'style="background: white; font-size: 10.5pt; font-family: Arial, '
             'sans-serif; letter-spacing: 0.15pt; color: #000000">This is an '
             'all level course for those wishing to learn or refine their '
             'techniques and ideas. Emphasis is placed on the printing process '
             'and presentation of images. Demonstrations, critiques, and slide '
             'lecture presentations will be given as a means to investigate '
             'creativity, as well as to gain insight into creating ideas and '
             'understanding concepts of b/w photographs. Some assignments will '
             'be given. Students are encouraged to make their own assignments '
             'and do work outside of class.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: The "
             'instructor will share details regarding the class supplies '
             'during the first class meeting.</span></p><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>Open Studio: </span><a "
             'href="files/read?file=files/OpenStudio_Photography_SP2026_REVISED.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'font-size: 12px; '
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>Open Studio Spring 2026 - "
             'Photography.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=87648">Dunbar, Bruce</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$810.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065902" href="#EventID=3065902" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">0</td>\n'
             '<td class="">\n'
             '<a class="button small center menu" data-recurring="" '
             'defaultfeesum="$810.00" eventid="3065902" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="-2" registertype="waitlist" '
             'scheduledeventfeeassnid="0">Add to Waitlist</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:58 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:59 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:59 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=319354',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="319354">\n'
             '<h2><a class="lnkCourseDetails" courseid="319354" href="#" '
             'onclick="return false;">The Language of Paint (Ages: '
             '12-15)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/6bb0b517-f3d7-415b-9a0f-5622f3b929df_WatersN_TheLanguageofPaint1 '
             'Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>This class is designed for teens interested in "
             'building their painting skills and developing their own artistic '
             'style. Students will work with a range of painting '
             'materials—such as acrylic, watercolor, and gouache—while '
             'exploring color theory, composition, layering, blending, and '
             'brush techniques. Through guided projects and individual '
             'exploration, teens will create original works inspired by '
             'observation, imagination, and influential artists from both past '
             'and present. Ideal for both beginners and those looking to '
             'expand their skills, this class encourages experimentation, '
             'personal expression, and creative growth.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: All "
             'materials are provided for this '
             "offering</span></p><p><strong><em><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>*Class will not meet 11/6, "
             '11/27*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/18</td>\n'
             '\n'
             '<td class="show-on-mobile">04:00 PM – 06:00 PM</td>\n'
             '<td><a href="#FacultyDetail=132562">Waters, Nell</a></td>\n'
             '<td class="">12 - 16</td>\n'
             '<td class="">$490.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065954" href="#EventID=3065954" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$490.00" eventid="3065954" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:59 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:59 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=283509',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="283509">\n'
             '<h2><a class="lnkCourseDetails" courseid="283509" href="#" '
             'onclick="return false;">The Portrait in Five Colors</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/e2d919c9-992d-4e0f-8a8a-49f0abaec568_WiestJ_PortraitFiveColors '
             'Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>Portrait in Five Colors Capture the portrait with "
             'clarity and economy. We will identify and mark spots of color. '
             'By modulating tones we will arrive at a likeness. The limited '
             'palette gives the student an opportunity to become more '
             'sensitized to chromatic thresholds. We will discuss the right '
             'ways in which the palette can be expanded.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px; color: #000000'>List of "
             'Materials:\xa0</span><a href="files/read?file=files/J.Wiest The '
             'Portrait in Five Colors.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-family: Arial, "Helvetica '
             'Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>J.Wiest Supply List.pdf</span></a></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/15</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75733">Wiest, Justin</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$245.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066002" href="#EventID=3066002" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$245.00" eventid="3066002" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:59 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:59 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=319357',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="319357">\n'
             '<h2><a class="lnkCourseDetails" courseid="319357" href="#" '
             'onclick="return false;">The Young Painter\'s Studio (Ages: '
             '7-10)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/1f39b9ed-31eb-4a75-92a8-22bac86068f9_WatersN_TheYoungPaintersStudio.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 106%; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>In this creative and skill-building painting class, "
             'young artists will explore a range of techniques while '
             'developing their confidence with color, composition, and '
             'brushwork. Students will work with materials such as watercolor, '
             'tempera, and acrylics as they learn about layering, blending, '
             'color mixing, and using different tools and textures. Lessons '
             'will be inspired by nature, imagination, and both classic and '
             'contemporary artists. Each project encourages creative thinking '
             'while building a strong foundation in painting skills. Perfect '
             'for kids who love to experiment and express themselves through '
             'art!</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: All "
             'materials are provided for this '
             "offering</span></p><p><strong><em><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>*Class will not meet "
             '11/25*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">04:30 PM – 06:30 PM</td>\n'
             '<td><a href="#FacultyDetail=132562">Waters, Nell</a></td>\n'
             '<td class="">7 - 11</td>\n'
             '<td class="">$530.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065932" href="#EventID=3065932" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$530.00" eventid="3065932" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:59 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:59 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=308415',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="308415">\n'
             '<h2><a class="lnkCourseDetails" courseid="308415" href="#" '
             'onclick="return false;">Topics in Oil Paint (Ages: '
             '12-15)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/0e6eec4c-ad81-45c2-adb2-5d72e6933965_WiestJ_TopicsInOil '
             'Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 107%; letter-spacing: .15pt; "
             'background: white; font-size: 14px; font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Whether you are new to oil painting or have experience, "
             'this class will show the wide applications of this medium. Terms '
             'such as alla prima and underpainting will become familiar to the '
             'students and utilized early in the week. We will learn other '
             'advanced techniques the second half of the week and incorporate '
             'these into the subjects of still life, landscape, and portrait. '
             'With this sampling the student can get an idea of what subject '
             'is most interesting to them. Daily critiques and demonstrations '
             'accompany individual attention given to students. Some drawing '
             'experience is helpful.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             "style='line-height: 107%; letter-spacing: .15pt; background: "
             'white; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000; font-size: 12px'>Oil paint can stain "
             '- Students should wear appropriate clothes that can be stained '
             'permanently and/or bring an apron. </span><span '
             'style=\'line-height: 107%; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000; font-size: 12px'>Please "
             "pack </span><b><u><span style='line-height: 107%; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: #000000; '
             "font-size: 12px'>peanut-free</span></u></b><span "
             'style=\'line-height: 107%; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000; font-size: 12px'> snack "
             "and water bottle.</span></p><p><span style='font-size: 12px; "
             'color: #000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Camp forms are required at the time of registration, "
             'click </span><a href="files/read?file=files/SAC Summer Art '
             'Studios Forms 2026.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; color: #000000; '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>here</span></a><span style='font-size: 12px; color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'> to access.</span></p><p><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>Please review our Summer Art Studio withdrawal "
             '&amp; reimbursement policies </span></em></strong><a '
             'href="files/read?file=files/Summer Art Policies PDF-1-7-26.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><strong><em><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>here</span></em></strong></a><strong><em><span "
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; color: #000000; background-color: #ffffff; '
             "font-size: 13px'>.</span></em></strong></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">8/17</td>\n'
             '\n'
             '<td class="show-on-mobile">09:00 AM – 12:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75733">Wiest, Justin</a></td>\n'
             '<td class="">12 - 16</td>\n'
             '<td class="">$465.00</td>\n'
             '<td class="">\n'
             '<a eventid="2956844" href="#EventID=2956844" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">5</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$465.00" eventid="2956844" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="5" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:59 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:59 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=190840',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="190840">\n'
             '<h2><a class="lnkCourseDetails" courseid="190840" href="#" '
             'onclick="return false;">Watercolor Landscapes</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/168305584124069_maccordy-sail-away.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><div class="page" style="color: rgb(0, 0, 0); '
             'font-family: -webkit-standard; letter-spacing: normal" '
             'title="Page 5"><div class="layoutArea"><div class="column"><p '
             "style='color: rgb(0, 0, 0); font-size: medium; font-family: "
             '"Times New Roman", serif; letter-spacing: normal\'><span '
             'style="font-family: Arial; font-size: 14px">LEVEL: ALL '
             "LEVELS</span></p><p style='color: rgb(0, 0, 0); font-size: "
             'medium; font-family: "Times New Roman", serif; letter-spacing: '
             'normal\'><span style="font-family: Arial; font-size: 14px">The '
             'fundamentals of watercolor will be taught and the emphasis will '
             'be on becoming comfortable with the spontaneous nature of the '
             'medium. We will focus on how to capture light filled landscape '
             'paintings by using the white of the watercolor paper. '
             'Demonstrations will be given at the beginning of each class. '
             'Bring your own landscape photographs as a '
             'reference.</span></p></div></div></div><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials:\xa0"
             '</span><a href="files/read?file=files/W.MacCordy Watercolor '
             'Landscapes.pdf" target="_blank"><u><span style=\'font-size: '
             '12px; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; color: #000000'>W.MacCordy Supply "
             'List.pdf</span></u></a></p><p><strong><em><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>*Class will not meet "
             '9/22, 10/13*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">09:30 AM – 12:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75703">MacCordy, Wendy</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$555.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065903" href="#EventID=3065903" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$555.00" eventid="3065903" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:59 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:59 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328484',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328484">\n'
             '<h2><a class="lnkCourseDetails" courseid="328484" href="#" '
             'onclick="return false;">Wax + Surface: Texture in '
             'Encaustics</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/717674f6-ee2e-43af-affc-327caf23b1cb_LevyH_WaxSurfaceTextureEncaustic.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>This hands-on workshop explores how to build "
             'rich surface texture with encaustic paint. Participants will '
             'learn how layering, scraping, mark-making, and heat can create '
             'depth, movement, and dimensional effects in their paintings. The '
             'class is suitable for artists who want to expand their encaustic '
             'practice and experiment with expressive surfaces, tactile '
             'finishes, and new ways of thinking about '
             'form.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-size: 12px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>List of Materials: </span><a "
             'href="files/read?file=files/H.Levy Wax and Surface Texture in '
             'Encaustics.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>H.Levy Supply "
             'List.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">11/14</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=139222">Levy, Holli</a></td>\n'
             '<td class="">18 - 99</td>\n'
             '<td class="">$165.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066045" href="#EventID=3066045" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">8</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$165.00" eventid="3066045" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="8" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:59 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:59 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=319313',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="319313">\n'
             '<h2><a class="lnkCourseDetails" courseid="319313" href="#" '
             'onclick="return false;">Wearable Art: 2D Felting on '
             'Denim</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/cbb537c1-a2d5-4062-a982-ade12f6356ee_Giuliano2DFelting '
             'Smaller.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><a><span style='line-height: 106%; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>Add colorful, textured detail to your well loved denim "
             'clothing in this fun felting workshop. We’ll create illustrative '
             'designs and carefully lay them into our clothing pieces. This '
             "two-day workshop is </span></a><span style='line-height: 106%; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 14px; color: #000000'>perfect for anyone who loves "
             'creativity, sustainability, and a pop of personality in their '
             'wardrobe!</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: "
             '</span><a href="files/read?file=files/S.Giuliano Wearable Art 2D '
             'Felting on Denim.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'font-size: 12px; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>S.Giuliano Supply List.pdf</span></a></p><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">10/2</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=137073">Giuliano, Samantha</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$205.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065984" href="#EventID=3065984" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">18</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$205.00" eventid="3065984" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="18" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:59 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:59 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=209835',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="209835">\n'
             '<h2><a class="lnkCourseDetails" courseid="209835" href="#" '
             'onclick="return false;">Wheel Throwing for Beginners</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/992a8a78-4ae0-4858-9fc8-15acc3219558_IMG_8422.JPG"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p style='color: rgb(0, 0, 0); font-size: medium; "
             'font-family: "Times New Roman", serif\'><span '
             "style='background-color: white; font-size: 14px; font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; color: '
             "#000000'>Ever wanted to spend a day learning the basics of the "
             'pottery wheel? If so, this class is for you. Come spend the day '
             'with fellow beginners as they learn to create on the wheel. We '
             'will make plates, bowls and cylinders. All pieces will be bisque '
             'fired in the studio kiln and glaze fired as well. Clay and '
             'firing costs are included in the cost of the '
             'workshop.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'font-size: 12px; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; color: #000000'>List of Materials: All "
             'materials are provided for this offering</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/12</td>\n'
             '\n'
             '<td class="show-on-mobile">10:00 AM – 04:00 PM</td>\n'
             '<td><a href="#FacultyDetail=75694">Hower, Wendy</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$285.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066078" href="#EventID=3066078" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$285.00" eventid="3066078" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:59 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:59 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328485',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328485">\n'
             '<h2><a class="lnkCourseDetails" courseid="328485" href="#" '
             'onclick="return false;">Wheel Works: Throwing, Altering &amp; '
             'Assembling</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/5e19fa22-a6e2-4e57-8afd-2ab35b4c0387_DunnZ_WheelWorks.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>LEVEL: INTERMEDIATE-ADVANCED</span></p><p><span "
             'style=\'line-height: 115%; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>Designed "
             'for intermediate to advanced wheel throwers, this course invites '
             'students to expand their technical skills while beginning to '
             'develop a more personal style and creative voice in clay. '
             'Students will explore thrown and altered forms, assembled '
             'vessels, and alternative approaches to working on the wheel, '
             'with opportunities to experiment, problem-solve, and push their '
             'work in new directions. Advanced techniques, individual '
             'guidance, and personalized support will be emphasized, making '
             'this a dynamic class for students ready to refine their practice '
             'and have fun exploring what’s possible beyond the '
             'basics.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             'checkout.</span></strong></p><p><span style="color: rgb(0, 0, '
             '0); font-family: Arial; font-size: 12px; letter-spacing: 0.2px; '
             'background-color: rgb(255, 255, 255)">A firing fee deposit is '
             'included in the price. Additional fees apply for students who '
             'exceed the deposit amount. Credits will be applied for students '
             'who do not meet the firing fee deposit total. Firing fees are '
             'not refundable regardless of the outcome of the piece of '
             'artwork.</span></p><p style="background-color: rgb(255, 255, '
             '255)"><span style=\'font-size: 12px; color: rgb(0, 0, 0); '
             'font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>List of Materials:\xa0</span><span "
             "style='line-height: 12.84px; font-size: 12px; color: rgb(0, 0, "
             '0); font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif'>Tool Kits &amp; Clay are available for purchase in "
             "class</span></p><p><span style='letter-spacing: 0.15pt; "
             'font-size: 12px; color: rgb(0, 0, 0); font-family: Arial, '
             '"Helvetica Neue", Helvetica, sans-serif\'>Open Studio: </span><a '
             'href="files/read?file=files/OpenStudio_Ceramics_FALL2026.pdf" '
             'style="color: blue !important; text-decoration: underline blue '
             '!important" target="_blank"><span style=\'letter-spacing: '
             '0.15pt; font-size: 12px; color: rgb(0, 0, 0); font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif\'>Open Studio '
             'Fall 2026 - Ceramics.pdf</span></a></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">12:30 PM – 03:30 PM</td>\n'
             '<td><a href="#FacultyDetail=89463">Dunn, Zach</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$780.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065904" href="#EventID=3065904" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">3</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$780.00" eventid="3065904" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="3" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:31:59 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:31:59 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328486',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328486">\n'
             '<h2><a class="lnkCourseDetails" courseid="328486" href="#" '
             'onclick="return false;">Winter Holiday Clay Ornaments (Ages: '
             '6-9)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/0935f2b5-06ae-431f-aab5-4ebf03ad1a01_Long_Winter_Ornaments.jpeg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#000000'>Create exciting holiday-themed ceramic ornaments to "
             'kick off December! Inspired by winter celebrations and motifs, '
             'students will use carved texture, stamps, and colorful '
             'underglaze to decorate ornaments they cut out from clay slabs. '
             'These creations will be the perfect hanging decorations for the '
             'home, or to give as gifts! Student’s work will be glazed and '
             'kiln-fired.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new workshops at 15% off! Discount applied "
             "at checkout.</span></strong></p><p><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>List of Materials: All materials are provided "
             "for this offering.</span></p><p><span style='line-height: 115%; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "font-size: 12px; color: #000000'>All artwork will be available "
             'two to three weeks after the program has occurred and the School '
             'Office will contact participants via email with pick up '
             'instructions.</span></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">12/5</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 04:00 PM</td>\n'
             '<td>Long, Charlotte</td>\n'
             '<td class="">6 - 10</td>\n'
             '<td class="">$165.00</td>\n'
             '<td class="">\n'
             '<a eventid="3066060" href="#EventID=3066060" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$165.00" eventid="3066060" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:31:59 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:32:00 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:32:00 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:32:00 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=288987',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="288987">\n'
             '<h2><a class="lnkCourseDetails" courseid="288987" href="#" '
             'onclick="return false;">WOW! The Many Facets of Pen, Ink &amp; '
             'Watercolor</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/c989882f-8624-46ff-a159-7f12e34050a9_N.Mctague-Stock_PenInk1.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p style="background: white"><span style="font-size: '
             '10.5pt; font-family: Arial, sans-serif; letter-spacing: 0.15pt; '
             'color: #000000">LEVEL: ALL LEVELS</span></p><p '
             'style="background: white"><span style="font-size: 10.5pt; '
             'font-family: Arial, sans-serif; letter-spacing: 0.15pt; color: '
             '#000000">This course introduces you to the many possibilities '
             'inherent in using pen and ink along with watercolor! The focus '
             'will be on teaching you not only the basic techniques of each '
             'medium, but also to assist each student in creating work that is '
             'truly their own voice, not the voice of the instructor or anyone '
             'else! From landscape to floral to portraiture to abstraction, to '
             'illustrated writing/journaling, all genres of interest are '
             'welcome. My passion lies in bringing out the artist in YOU! '
             'Artists, dabblers, writers are all welcome to explore the '
             'virtues of pen and ink and watercolor, both separately and '
             'together, all while learning, sharing and having FUN!!! No '
             'experience required...just your energy and '
             'interest!</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><p><span '
             'style=\'color: #000000; font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 12px'>List of Materials:\xa0"
             '</span><a href="files/read?file=files/N.McTague-Stock Wow Facets '
             'of Pen Ink  Watercolor.pdf" style="color: blue !important; '
             'text-decoration: underline blue !important" '
             'target="_blank"><span style=\'color: #000000; font-family: '
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: '
             "12px'>N.McTague-Stock Supply "
             "List.pdf</span></a></p><p><strong><em><span style='color: "
             '#000000; font-family: Arial, "Helvetica Neue", Helvetica, '
             "sans-serif; font-size: 12px'>*Class will not meet "
             '11/25*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/16</td>\n'
             '\n'
             '<td class="show-on-mobile">01:00 PM – 02:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75708">McTague-Stock, '
             'Nancy</a></td>\n'
             '<td class="">18 &amp; up</td>\n'
             '<td class="">$635.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065928" href="#EventID=3065928" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">10</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$635.00" eventid="3065928" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="10" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:32:00 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:32:00 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:32:00 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:32:00 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=328487',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="328487">\n'
             '<h2><a class="lnkCourseDetails" courseid="328487" href="#" '
             'onclick="return false;">Youth Ceramics: Clay Handbuilding Studio '
             '(Ages: 7-9)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/db7d3425-af06-4c74-b3bb-fc9eefcb270f_Long_Youth_Ceramics.jpeg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             "<p></p><p><span style='line-height: 115%; font-size: 14px; "
             'font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; '
             "color: #000000'>In this beginner-friendly course, students will "
             'engage their creativity through various 3-D clay projects, both '
             'sculptural and functional! Each class will explore the basics of '
             'different building techniques, including slabs, pinch pots, and '
             'coils. Students will have the opportunity to utilize texture and '
             'colorful underglazes to decorate their pieces. All projects will '
             'be glazed and kiln-fired, ready to enjoy! Materials and tools '
             'will be provided by the school.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional '
             "Information:</h3><p><strong><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 14px; color: '
             "#46860F'>Explore our new courses at 10% off! Discount applied at "
             "checkout.</span></strong></p><p><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>List of Materials: All materials are provided for this "
             "offering.</span></p><p><strong><em><span style='font-family: "
             'Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 12px; '
             "color: #000000'>*Class will not meet "
             '11/7*</span></em></strong></p><p></p>\n'
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/15</td>\n'
             '\n'
             '<td class="show-on-mobile">04:30 PM – 06:30 PM</td>\n'
             '<td>Long, Charlotte</td>\n'
             '<td class="">7 - 10</td>\n'
             '<td class="">$365.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065912" href="#EventID=3065912" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">11</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$365.00" eventid="3065912" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="11" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr><tr>\n'
             '<td class="show-on-mobile">9/19</td>\n'
             '\n'
             '<td class="show-on-mobile">02:00 PM – 04:00 PM</td>\n'
             '<td>Long, Charlotte</td>\n'
             '<td class="">7 - 10</td>\n'
             '<td class="">$365.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065966" href="#EventID=3065966" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$365.00" eventid="3065966" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:32:00 [urllib3.connectionpool] DEBUG: Starting new HTTPS connection (1): norwalklist.org:443
2026-08-05 01:32:00 [urllib3.connectionpool] DEBUG: https://norwalklist.org:443 "POST /api/v1/raw-events/ HTTP/1.1" 400 68
2026-08-05 01:32:00 [silver_mine_art] ERROR: API error 400: {"event_url":["Raw Event Data with this event url already exists."]}
2026-08-05 01:32:00 [scrapy.core.scraper] DEBUG: Scraped from <200 https://silvermineart.asapconnected.com/>
{'event_url': 'https://silvermineart.asapconnected.com/#CourseID=166010',
 'platform': 'Silver mine Art',
 'platform_hash': 'd7bc61ce9deed4684a390e0213c452ef',
 'raw_body': '<article id="166010">\n'
             '<h2><a class="lnkCourseDetails" courseid="166010" href="#" '
             'onclick="return false;">Youth Oil Painting (Ages: '
             '13-17)</a></h2>\n'
             '<div></div>\n'
             '<div class="thumbnail" style="display: block;">\n'
             '<a href="#"><img alt="" class="lnkCourseDetails" '
             'onerror="this.style.display=\'none\';" '
             'src="files/read?file=/images/course/161402802438859_youth '
             'oil.jpg"/></a>\n'
             '</div>\n'
             '<div class="description">\n'
             '<p></p><p><span style=\'font-family: Arial, "Helvetica Neue", '
             "Helvetica, sans-serif; font-size: 14px; color: #000000'>Students "
             'will learn about the beautiful and unique qualities of painting '
             'in oil. We will learn about setting up a palette, color mixing, '
             'mediums and glazing, layering and care of materials. Working '
             'both in the studio and plein air to create a still-life and '
             'landscape, the areas of sighting, linear and aerial perspective '
             'will be covered, allowing students to accurately paint what they '
             'see.</span></p><p></p>\n'
             '<p></p><h3 class="black">Additional Information:</h3><div '
             'style=\'font-family: "Open Sans", sans-serif; color: rgb(51, 51, '
             '51); font-size: 16px; background-color: rgb(255, 255, '
             "255)'><p><span style='letter-spacing: 0.2px; font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>List of Materials: All materials are provided for this "
             "offering.</span></p><p><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'>Forms are required at the time of registration, click "
             '</span><a href="files/read?file=files/School Year Youth Program '
             'Forms.pdf" style="color: blue !important; text-decoration: '
             'underline blue !important" target="_blank"><span '
             'style=\'font-family: Arial, "Helvetica Neue", Helvetica, '
             'sans-serif; font-size: 12px; color: '
             "#000000'>here</span></a><span style='font-family: Arial, "
             '"Helvetica Neue", Helvetica, sans-serif; font-size: 12px; color: '
             "#000000'> to access.</span></p></div><p></p>\n"
             '</div>\n'
             '<table class="course-details">\n'
             '<thead>\n'
             '<tr>\n'
             '<th class="dates show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Dates</a></th>\n'
             '<th class="days show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Days</a></th>\n'
             '<th class="times show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Times</a></th>\n'
             '<th class="instructor" scope="col"><a href="#" onclick="return '
             'false;">Instructor</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Ages</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Fees</a></th>\n'
             '<th class="" scope="col"><a href="#" onclick="return '
             'false;">Details</a></th>\n'
             '<th class="show-on-mobile" scope="col"><a href="#" '
             'onclick="return false;">Open</a></th>\n'
             '<th scope="col"></th>\n'
             '</tr>\n'
             '</thead>\n'
             '<tbody>\n'
             '<tr>\n'
             '<td class="show-on-mobile">9/24</td>\n'
             '\n'
             '<td class="show-on-mobile">04:30 PM – 06:30 PM</td>\n'
             '<td><a href="#FacultyDetail=75691">Guerin, C.J.</a></td>\n'
             '<td class="">13 - 18</td>\n'
             '<td class="">$340.00</td>\n'
             '<td class="">\n'
             '<a eventid="3065974" href="#EventID=3065974" '
             'id="lnkViewDetails">View</a>\n'
             '</td>\n'
             '<td class="show-on-mobile">12</td>\n'
             '<td class="">\n'
             '<a class="button small check-2" data-recurring="" '
             'defaultfeesum="$340.00" eventid="3065974" '
             'hasflexibleschedule="false" hasrecurringfees="false" href="#" '
             'id="lnkAddToShopCart" isdetail="false" ispickaday="false" '
             'itemtype="event" maxdays="0" onclick="return false;" '
             'openslots="12" registertype="register" '
             'scheduledeventfeeassnid="0">Register Now</a>\n'
             '</td>\n'
             '</tr>\n'
             '</tbody>\n'
             '</table>\n'
             '</article>'}
2026-08-05 01:32:00 [scrapy.core.engine] INFO: Closing spider (finished)
2026-08-05 01:32:00 [scrapy.extensions.feedexport] INFO: Stored csv feed (164 items) in: output/2026/08/05/silver_mine_art.csv
2026-08-05 01:32:00 [scrapy.statscollectors] INFO: Dumping Scrapy stats:
{'downloader/request_bytes': 236,
 'downloader/request_count': 1,
 'downloader/request_method_count/GET': 1,
 'downloader/response_bytes': 64487,
 'downloader/response_count': 1,
 'downloader/response_status_count/200': 1,
 'elapsed_time_seconds': 630.72086,
 'feedexport/success_count/FileFeedStorage': 1,
 'finish_reason': 'finished',
 'finish_time': datetime.datetime(2026, 8, 4, 23, 32, 0, 362479, tzinfo=datetime.timezone.utc),
 'httpcompression/response_bytes': 355880,
 'httpcompression/response_count': 1,
 'item_scraped_count': 164,
 'items_per_minute': 15.619047619047619,
 'log_count/DEBUG': 7291,
 'log_count/ERROR': 163,
 'log_count/INFO': 4,
 'memusage/max': 114835456,
 'memusage/startup': 99237888,
 'response_received_count': 1,
 'responses_per_minute': 0.09523809523809523,
 'scheduler/dequeued': 1,
 'scheduler/dequeued/memory': 1,
 'scheduler/enqueued': 1,
 'scheduler/enqueued/memory': 1,
 'start_time': datetime.datetime(2026, 8, 4, 23, 21, 29, 641619, tzinfo=datetime.timezone.utc)}
2026-08-05 01:32:00 [scrapy.core.engine] INFO: Spider closed (finished)

PROJECT (event_scrapers), SPIDER (silver_mine_art)