The problem is there is certain part in a website that can not be directly crawled through scrapy.Therefore, I need to use selenium to get the pagesource rendered so that I could get access to that certain contents.
I tried this:
from selenium import webdriver
driver = webdriver.Chrome()
driver.get(url)
print(driver.page_source)
I did not found that certain content in the result pagesource,
though I could get the contents through driver.find_element_by_css_selector()
Why is this happen? and how to use selenium along with scrapy for crawling that certain website, one example is this: http://tieba.baidu.com/p/5513911529,
The part I have difficulties is in the picture below, within the red circle, I need the text content within it
Thank for your help, or at least point me a documentation to read.

screenshot of HTML or code or error is a bad idea. Consider updating the Question with formatted text based HTML and code trials.