2011-10-04 66 views
0

這是我的html代碼,我需要選擇字體大小,bgcolor在非腳本中。如何使用硒選擇字體大小bgcolor

<iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe> 

    <!-- RECOMMENDED if your web app will not function without JavaScript enabled --> 
    <noscript> 
     <div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif"> 
     Your web browser must have JavaScript enabled 
     in order for this application to display correctly. 
     </div> 
    </noscript> 

可以任何budy幫助這一點。

我使用python作爲我的scriptin語言。

+0

可以在任何哥們解決我的概率please.past1周我想要這個。 – Sirga

回答

0

你只想抓取文本?你可以看看像美麗的湯(這我不熟悉),或使用簡單的regex

import re 
m = re.compile(r'background-color: (\w+);',re.I) 
result = m.search(text) 
if result: 
    bgc = result.group(1) 
+0

Thx爲您的重播。 – Sirga

相關問題