文字列の配列を渡すことにより、ページで JavaScript 関数を実行する必要があります。何度も電話するのは避けたいbrowser.execute_script
。
list_of_strings = ['a','b','c']
#js code runs through all the strings
result = browser.execute_script("function findTexts(textList){//code here}", list_of_strings)
文字列の配列を渡すことにより、ページで JavaScript 関数を実行する必要があります。何度も電話するのは避けたいbrowser.execute_script
。
list_of_strings = ['a','b','c']
#js code runs through all the strings
result = browser.execute_script("function findTexts(textList){//code here}", list_of_strings)