我想按一下InvokeMember(“click”)代码在网站上的按钮。基本上网站的HTML代码就是这个:
function A = warmUpExercise()
%WARMUPEXERCISE Example function in octave
% A = WARMUPEXERCISE() is an example function that returns the 5x5 identity matrix
% ============= YOUR CODE HERE ==============
% Instructions: Return the 5x5 identity matrix
% In octave, we return values by defining which variables
% represent the return values (at the top of the file)
% and then set them accordingly.
A = eye(5);
我尝试使用找到的答案vignette,但它似乎不起作用。你知道为什么吗?我做错了什么?我也用过
<em class='coins'>
<span class="click"></span>
但它似乎也没有帮助。 以下是我在Visual Studio中的Windows窗体应用程序中的代码:
If elem.InnerText = "Login" Then
很抱歉,如果此问题重复,则与我制作的其他问题不同
答案 0 :(得分:1)
我认为你必须使用(className)和(.Equals()两个字符串),如下代码: -
If elem.GetAttribute("className").Equals("free-coins-click") Then
elem.InvokeMember("click")
End If
End If