<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Reading Chrome cookie value in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Reading-Chrome-cookie-value/m-p/120130#M53130</link>
    <description>&lt;P&gt;Pretty straightforward - is there any easy way to get the cookie values from a current chrome session?&amp;nbsp; &amp;nbsp;I could do it with Javascript, but hoping there is an 'in the box' way of doing it.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks-&lt;/P&gt;&lt;P&gt;-RJ&lt;/P&gt;</description>
    <pubDate>Wed, 30 Apr 2025 15:27:57 GMT</pubDate>
    <dc:creator>rj.latherow</dc:creator>
    <dc:date>2025-04-30T15:27:57Z</dc:date>
    <item>
      <title>Reading Chrome cookie value</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Reading-Chrome-cookie-value/m-p/120130#M53130</link>
      <description>&lt;P&gt;Pretty straightforward - is there any easy way to get the cookie values from a current chrome session?&amp;nbsp; &amp;nbsp;I could do it with Javascript, but hoping there is an 'in the box' way of doing it.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks-&lt;/P&gt;&lt;P&gt;-RJ&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 15:27:57 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Reading-Chrome-cookie-value/m-p/120130#M53130</guid>
      <dc:creator>rj.latherow</dc:creator>
      <dc:date>2025-04-30T15:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Chrome cookie value</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Reading-Chrome-cookie-value/m-p/120163#M53145</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/47587"&gt;@rj.latherow&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Blue Prism doesn't appear to have a built-in method for extracting cookie values directly from a Chrome session. However, I came across an interesting tool on GitHub that might be useful for this scenario:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/barnardb/cookies" target="_blank"&gt;GitHub - barnardb/cookies: Command-line tool for extracting cookies from the user's web browser&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Sayeed Bin Abdullah&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 09:28:47 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Reading-Chrome-cookie-value/m-p/120163#M53145</guid>
      <dc:creator>SayeedBinAbdullah</dc:creator>
      <dc:date>2025-05-05T09:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Chrome cookie value</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Reading-Chrome-cookie-value/m-p/120664#M53262</link>
      <description>&lt;P&gt;To close this out-&amp;nbsp;&lt;SPAN&gt;Sayeed Bin Abdullah's tip led me down a few rabbit holes.&amp;nbsp; In the end, I was able to accomplish what I wanted using the Selenium driver in the BP Automate Root folder to get the entire cookie collection as a string to use in HTTP requests.&amp;nbsp; It is currently working perfectly for all cookies, for now.&amp;nbsp; I think that is the only 'easy' way.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 May 2025 19:22:57 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Reading-Chrome-cookie-value/m-p/120664#M53262</guid>
      <dc:creator>rj.latherow</dc:creator>
      <dc:date>2025-05-29T19:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Chrome cookie value</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Reading-Chrome-cookie-value/m-p/123675#M54100</link>
      <description>&lt;P&gt;Initial i built the object flow to extract cookies from network tab and later we written the selenium code to fetch the cookies.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;Can you please share your solution or code here , want to know how you are fetching the cookies&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;i am using below code to fetch&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Dim options As New ChromeOptions()
options.DebuggerAddress = "127.0.0.1:9222"

Dim service As ChromeDriverService = ChromeDriverService.CreateDefaultService()
service.HideCommandPromptWindow = True
Dim cookiesString As String = ""

Dim driver As IWebDriver = New ChromeDriver(service, options)

Dim cookies As IReadOnlyCollection(Of OpenQA.Selenium.Cookie) = driver.Manage().Cookies.AllCookies

' Iterate through the cookies and print their details
For Each cookie As OpenQA.Selenium.Cookie In cookies
    cookiesString &amp;amp;= cookie.Name &amp;amp; "=" &amp;amp; cookie.Value &amp;amp; ";"
Next

driver.Quit()&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Nov 2025 17:25:37 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Reading-Chrome-cookie-value/m-p/123675#M54100</guid>
      <dc:creator>naveed_raza</dc:creator>
      <dc:date>2025-11-30T17:25:37Z</dc:date>
    </item>
  </channel>
</rss>

