Python と Selenium を使用するのは初めてです。どうぞご容赦ください。ウェブサイトのテスト自動化への取り組みの一環として、ヘルパー クラスを使用して、新規顧客登録時に使用される Captcha を表示しました (うまくいきます)。その値を読み取ってメモリ (文字列) に保存し、保存した値を正しいページ要素に入力しようとしています。これは私たちにとってまったく新しいことであり、途方に暮れています。これがこれまでの成果です。
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()
誰かがこれを簡単に知っていると確信しているので、どんな支援も大歓迎です。