我正在为验证码使用这个代码:
这是我在登录操作中的user_controller.php代码:
public function login() {
if (!empty($this->data)
&& !empty($this->Auth->data['User']['username'])
&& !empty($this->Auth->data['User']['password'])) {
我使用PHP来创建验证码图像。它显示了加载时的验证码。加载完成后,在Chrome中不会显示验证码图像。在其他浏览器中,它工作得很好。为什么?
<?php
// Create an image from button.png
$image = imagecreatefrompng('button.png');
// Set the font colour
$colour = imagecolorallocate($image, 255, 120, 4);
// Set the font
$font = '../fonts/Anorexia.ttf';
我在我的联系我们页面中使用了简单的验证码。我想使用javascript / jQuery添加一个刷新函数。生成验证码图像的函数位于一个单独的文件中。当页面加载时,验证码工作得很好,但是我无法进行刷新。我的代码是:
<head>
...
$(document).ready(function(){
$('#reload').click(function(){
$("#captcha").load("functions/captcha.php"); // function that creat
这是我的实际脚本,它在验证码出现之前工作得很好。 driver.get("https://www.tppcrpg.net/battle_trainer.php")
# identify Enter Trainer Name/Number
driver.find_element_by_name("Trainer").send_keys(Trainer_Battle_ID)
driver.find_element_by_class_name("submit").click()
for x in range(100):
driver.find