gpt4 book ai didi

php - 如何使用 phpunit-selenium 设置元素属性

转载 作者:可可西里 更新时间:2023-10-31 22:42:47 26 4
gpt4 key购买 nike

我想做这样的事情:

// pseudocode
$this->byCssSelector('p')->setAttribute('attributename', 'attributevalue');

如何在 phpunit-selenium 中做到这一点?

最佳答案

您需要使用 execute()执行 javascript 并使用 setAttribute() 设置属性:

$this->execute(array(
'script' => "document.getElementById('my_id').setAttribute('name', 'value');",
'args' => array()
));

关于php - 如何使用 phpunit-selenium 设置元素属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27623186/

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