Selenium for Python 2.7 の新機能
with class create をターゲットにしてクリックさせるにはどうすればよいですか?
<a href="#" class="create"></a>
私がやろうとしていること:
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
import unittest, time, re
self.driver.find_element_by_link_text("create").click()