gpt4 book ai didi

java - 网站上的自动化请求

转载 作者:太空宇宙 更新时间:2023-11-04 13:53:02 24 4
gpt4 key购买 nike

我基本上需要在 this site 上向类里面的所有 friend 发送证明请求。 .这是页面的样子(登录后):

enter image description here

我需要在文本框中一个接一个地输入卷号,我想通过脚本自动执行,可能是通过在所有卷号上运行一个循环。卷号的形式为 10/CSE/XX,其中 XX 在范围 (1, 92) 内。我该怎么做?
这是来自 html 源的特定部分。

<div class="row">
<div class="span9">
<h2>Request New Testimonial</h2>
<form name="request" action="requesttestimonial.php" method="POST">
<input type="text" name="requestroll" placeholder="Roll number of the person you want to request a testimonial" />
<input type="submit" value="Send Request" name="submitrequest" />
</form>
</div>
</div>

登录页面:

        <form class="navbar-form pull-right" method="POST" action="login.php">
<input class="span2" name="rollnumber" type="text" placeholder="Roll Number">
<input class="span2" name="password" type="password" placeholder="Password">
<button type="submit" class="btn" name="signin">Sign in</button>
</form>

任何语言都可以。

最佳答案

您可以使用 Java 的 Selenium 包。它很简单并且支持各种各样的 HTML 控件,除非你正在寻找特定于 python 的东西,在这种情况下请忽略我的回答

编辑:

package org.openqa.selenium.example;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.htmlunit.HtmlUnitDriver;

public class Example {
public static void main(String[] args) {
// Create a new instance of the html unit driver
// Notice that the remainder of the code relies on the interface,
// not the implementation.
WebDriver driver = new HtmlUnitDriver();

// And now use this to visit Google
driver.get("http://www.google.com");

// Find the text input element by its name
WebElement element = driver.findElement(By.name("q"));

// Enter something to search for
element.sendKeys("Cheese!");

// Now submit the form. WebDriver will find the form for us from the element
element.submit();

// Check the title of the page
System.out.println("Page title is: " + driver.getTitle());

driver.quit();
}
}

示例取自 http://code.google.com/p/selenium/wiki/GettingStarted , 这足以满足您的需求

关于java - 网站上的自动化请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22747235/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com