this is the HTML code:
</template>
</el-table-column>
<el-table-column prop="announcementTitle" label="公告标题">
<template slot-scope="scope">
<span class="ahover">
<a v-html="scope.row.announcementTitle" target="_blank" :href="linkLastPage(scope.row)"></a>
<span v-show="checkDocType(scope.row.adjunctType)" class="icon-f"><i class="iconfont" :class="[checkDocType(scope.row.adjunctType)]"></i></span>
</span>
</template>
If I want to get the content of annoncementTitle with Python + selenium and css_selector, how should I write the code?