New to Selenium for Python 2.7
How does one target an with class create and get it to click?
<a href="#" class="create"></a>
What I’m trying to do:
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()
Use XPath or CSS Selectors to find the target elements: