-2

我们对使用 Python 和 Selenium 还是很陌生。所以请多多包涵。作为我们网站测试自动化工作的一部分,我们使用了一个帮助类来显示在新客户注册期间使用的验证码(效果很好)。我们现在尝试读取该值,将其保存到内存(字符串),然后将该保存的值输入到正确的页面元素中。这对我们来说是全新的,我们不知所措。这是我们到目前为止所拥有的。

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
import urllib, urllib2

class NewAccountTests(unittest.TestCase):

    def setUp(self):
        self.driver = webdriver.Firefox()
        self.driver.implicitly_wait(5)
        self.base_url = "http://www.test.com/"
        self.verificationErrors = []
        self.accept_next_alert = True
        response = urllib.urlopen("http://www.test.com/")
        htmlSource = sock.read(id = "captcha")
        var.captcha = "htmlSource"
        sock.close()

#SIGN UP NEW USER

    def test_00_sign_up(self):
        driver = self.driver
        driver.get(self.base_url + "/")
        driver.find_element_by_id("name").send_keys("Foo")
        driver.find_element_by_id("email").send_keys("test@me.com")
        driver.find_element_by_id("screenname").send_keys("1234")
        driver.find_element_by_id("password").send_keys("xxx")
        driver.find_element_by_id("password2").send_keys("xxx")
        driver.find_element_by_id("option1").click()
        driver.find_element_by_id("option2").click()
        driver.find_element_by_id("captcha").click()
        >> I don't how to send the var string to the element "captcha"
        driver.find_element_by_id("registration_button").click()

我确信有人很容易知道这一点,所以任何帮助都将不胜感激。

4

1 回答 1

1
于 2013-08-22T17:37:37.183 回答